blob: 927278e262c4eeb50a44c31ecd13280157fc6246 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This file was auto-generated by the vanadium vdl tool.
// Source: types.vdl
package nosql
import (
// VDL system imports
"v.io/v23/vdl"
// VDL user imports
"v.io/v23/security/access"
"v.io/v23/services/syncbase/nosql"
)
// databaseData represents the persistent state of a Database.
type databaseData struct {
Name string
Version uint64 // covers the Perms field below
Perms access.Permissions
SchemaMetadata *nosql.SchemaMetadata
}
func (databaseData) __VDLReflect(struct {
Name string `vdl:"v.io/x/ref/services/syncbase/server/nosql.databaseData"`
}) {
}
// tableData represents the persistent state of a Table.
type tableData struct {
Name string
Perms access.Permissions
}
func (tableData) __VDLReflect(struct {
Name string `vdl:"v.io/x/ref/services/syncbase/server/nosql.tableData"`
}) {
}
func init() {
vdl.Register((*databaseData)(nil))
vdl.Register((*tableData)(nil))
}