update vendor
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
19a32db84d
commit
94d1cfbfbf
10501 changed files with 2307943 additions and 29279 deletions
1241
vendor/google.golang.org/genproto/googleapis/datastore/admin/v1/datastore_admin.pb.go
generated
vendored
Normal file
1241
vendor/google.golang.org/genproto/googleapis/datastore/admin/v1/datastore_admin.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
334
vendor/google.golang.org/genproto/googleapis/datastore/admin/v1/index.pb.go
generated
vendored
Normal file
334
vendor/google.golang.org/genproto/googleapis/datastore/admin/v1/index.pb.go
generated
vendored
Normal file
|
@ -0,0 +1,334 @@
|
|||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/datastore/admin/v1/index.proto
|
||||
|
||||
package admin
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
_ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
math "math"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
// For an ordered index, specifies whether each of the entity's ancestors
|
||||
// will be included.
|
||||
type Index_AncestorMode int32
|
||||
|
||||
const (
|
||||
// The ancestor mode is unspecified.
|
||||
Index_ANCESTOR_MODE_UNSPECIFIED Index_AncestorMode = 0
|
||||
// Do not include the entity's ancestors in the index.
|
||||
Index_NONE Index_AncestorMode = 1
|
||||
// Include all the entity's ancestors in the index.
|
||||
Index_ALL_ANCESTORS Index_AncestorMode = 2
|
||||
)
|
||||
|
||||
var Index_AncestorMode_name = map[int32]string{
|
||||
0: "ANCESTOR_MODE_UNSPECIFIED",
|
||||
1: "NONE",
|
||||
2: "ALL_ANCESTORS",
|
||||
}
|
||||
|
||||
var Index_AncestorMode_value = map[string]int32{
|
||||
"ANCESTOR_MODE_UNSPECIFIED": 0,
|
||||
"NONE": 1,
|
||||
"ALL_ANCESTORS": 2,
|
||||
}
|
||||
|
||||
func (x Index_AncestorMode) String() string {
|
||||
return proto.EnumName(Index_AncestorMode_name, int32(x))
|
||||
}
|
||||
|
||||
func (Index_AncestorMode) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_809cc5775e1cdeb3, []int{0, 0}
|
||||
}
|
||||
|
||||
// The direction determines how a property is indexed.
|
||||
type Index_Direction int32
|
||||
|
||||
const (
|
||||
// The direction is unspecified.
|
||||
Index_DIRECTION_UNSPECIFIED Index_Direction = 0
|
||||
// The property's values are indexed so as to support sequencing in
|
||||
// ascending order and also query by <, >, <=, >=, and =.
|
||||
Index_ASCENDING Index_Direction = 1
|
||||
// The property's values are indexed so as to support sequencing in
|
||||
// descending order and also query by <, >, <=, >=, and =.
|
||||
Index_DESCENDING Index_Direction = 2
|
||||
)
|
||||
|
||||
var Index_Direction_name = map[int32]string{
|
||||
0: "DIRECTION_UNSPECIFIED",
|
||||
1: "ASCENDING",
|
||||
2: "DESCENDING",
|
||||
}
|
||||
|
||||
var Index_Direction_value = map[string]int32{
|
||||
"DIRECTION_UNSPECIFIED": 0,
|
||||
"ASCENDING": 1,
|
||||
"DESCENDING": 2,
|
||||
}
|
||||
|
||||
func (x Index_Direction) String() string {
|
||||
return proto.EnumName(Index_Direction_name, int32(x))
|
||||
}
|
||||
|
||||
func (Index_Direction) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_809cc5775e1cdeb3, []int{0, 1}
|
||||
}
|
||||
|
||||
// The possible set of states of an index.
|
||||
type Index_State int32
|
||||
|
||||
const (
|
||||
// The state is unspecified.
|
||||
Index_STATE_UNSPECIFIED Index_State = 0
|
||||
// The index is being created, and cannot be used by queries.
|
||||
// There is an active long-running operation for the index.
|
||||
// The index is updated when writing an entity.
|
||||
// Some index data may exist.
|
||||
Index_CREATING Index_State = 1
|
||||
// The index is ready to be used.
|
||||
// The index is updated when writing an entity.
|
||||
// The index is fully populated from all stored entities it applies to.
|
||||
Index_READY Index_State = 2
|
||||
// The index is being deleted, and cannot be used by queries.
|
||||
// There is an active long-running operation for the index.
|
||||
// The index is not updated when writing an entity.
|
||||
// Some index data may exist.
|
||||
Index_DELETING Index_State = 3
|
||||
// The index was being created or deleted, but something went wrong.
|
||||
// The index cannot by used by queries.
|
||||
// There is no active long-running operation for the index,
|
||||
// and the most recently finished long-running operation failed.
|
||||
// The index is not updated when writing an entity.
|
||||
// Some index data may exist.
|
||||
Index_ERROR Index_State = 4
|
||||
)
|
||||
|
||||
var Index_State_name = map[int32]string{
|
||||
0: "STATE_UNSPECIFIED",
|
||||
1: "CREATING",
|
||||
2: "READY",
|
||||
3: "DELETING",
|
||||
4: "ERROR",
|
||||
}
|
||||
|
||||
var Index_State_value = map[string]int32{
|
||||
"STATE_UNSPECIFIED": 0,
|
||||
"CREATING": 1,
|
||||
"READY": 2,
|
||||
"DELETING": 3,
|
||||
"ERROR": 4,
|
||||
}
|
||||
|
||||
func (x Index_State) String() string {
|
||||
return proto.EnumName(Index_State_name, int32(x))
|
||||
}
|
||||
|
||||
func (Index_State) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_809cc5775e1cdeb3, []int{0, 2}
|
||||
}
|
||||
|
||||
// A minimal index definition.
|
||||
// Next tag: 8
|
||||
type Index struct {
|
||||
// Project ID.
|
||||
// Output only.
|
||||
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
||||
// The resource ID of the index.
|
||||
// Output only.
|
||||
IndexId string `protobuf:"bytes,3,opt,name=index_id,json=indexId,proto3" json:"index_id,omitempty"`
|
||||
// The entity kind to which this index applies.
|
||||
// Required.
|
||||
Kind string `protobuf:"bytes,4,opt,name=kind,proto3" json:"kind,omitempty"`
|
||||
// The index's ancestor mode. Must not be ANCESTOR_MODE_UNSPECIFIED.
|
||||
// Required.
|
||||
Ancestor Index_AncestorMode `protobuf:"varint,5,opt,name=ancestor,proto3,enum=google.datastore.admin.v1.Index_AncestorMode" json:"ancestor,omitempty"`
|
||||
// An ordered sequence of property names and their index attributes.
|
||||
// Required.
|
||||
Properties []*Index_IndexedProperty `protobuf:"bytes,6,rep,name=properties,proto3" json:"properties,omitempty"`
|
||||
// The state of the index.
|
||||
// Output only.
|
||||
State Index_State `protobuf:"varint,7,opt,name=state,proto3,enum=google.datastore.admin.v1.Index_State" json:"state,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Index) Reset() { *m = Index{} }
|
||||
func (m *Index) String() string { return proto.CompactTextString(m) }
|
||||
func (*Index) ProtoMessage() {}
|
||||
func (*Index) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_809cc5775e1cdeb3, []int{0}
|
||||
}
|
||||
|
||||
func (m *Index) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Index.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Index) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Index.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Index) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Index.Merge(m, src)
|
||||
}
|
||||
func (m *Index) XXX_Size() int {
|
||||
return xxx_messageInfo_Index.Size(m)
|
||||
}
|
||||
func (m *Index) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Index.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Index proto.InternalMessageInfo
|
||||
|
||||
func (m *Index) GetProjectId() string {
|
||||
if m != nil {
|
||||
return m.ProjectId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Index) GetIndexId() string {
|
||||
if m != nil {
|
||||
return m.IndexId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Index) GetKind() string {
|
||||
if m != nil {
|
||||
return m.Kind
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Index) GetAncestor() Index_AncestorMode {
|
||||
if m != nil {
|
||||
return m.Ancestor
|
||||
}
|
||||
return Index_ANCESTOR_MODE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *Index) GetProperties() []*Index_IndexedProperty {
|
||||
if m != nil {
|
||||
return m.Properties
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Index) GetState() Index_State {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return Index_STATE_UNSPECIFIED
|
||||
}
|
||||
|
||||
// Next tag: 3
|
||||
type Index_IndexedProperty struct {
|
||||
// The property name to index.
|
||||
// Required.
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
// The indexed property's direction. Must not be DIRECTION_UNSPECIFIED.
|
||||
// Required.
|
||||
Direction Index_Direction `protobuf:"varint,2,opt,name=direction,proto3,enum=google.datastore.admin.v1.Index_Direction" json:"direction,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Index_IndexedProperty) Reset() { *m = Index_IndexedProperty{} }
|
||||
func (m *Index_IndexedProperty) String() string { return proto.CompactTextString(m) }
|
||||
func (*Index_IndexedProperty) ProtoMessage() {}
|
||||
func (*Index_IndexedProperty) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_809cc5775e1cdeb3, []int{0, 0}
|
||||
}
|
||||
|
||||
func (m *Index_IndexedProperty) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Index_IndexedProperty.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Index_IndexedProperty) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Index_IndexedProperty.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Index_IndexedProperty) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Index_IndexedProperty.Merge(m, src)
|
||||
}
|
||||
func (m *Index_IndexedProperty) XXX_Size() int {
|
||||
return xxx_messageInfo_Index_IndexedProperty.Size(m)
|
||||
}
|
||||
func (m *Index_IndexedProperty) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Index_IndexedProperty.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Index_IndexedProperty proto.InternalMessageInfo
|
||||
|
||||
func (m *Index_IndexedProperty) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Index_IndexedProperty) GetDirection() Index_Direction {
|
||||
if m != nil {
|
||||
return m.Direction
|
||||
}
|
||||
return Index_DIRECTION_UNSPECIFIED
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterEnum("google.datastore.admin.v1.Index_AncestorMode", Index_AncestorMode_name, Index_AncestorMode_value)
|
||||
proto.RegisterEnum("google.datastore.admin.v1.Index_Direction", Index_Direction_name, Index_Direction_value)
|
||||
proto.RegisterEnum("google.datastore.admin.v1.Index_State", Index_State_name, Index_State_value)
|
||||
proto.RegisterType((*Index)(nil), "google.datastore.admin.v1.Index")
|
||||
proto.RegisterType((*Index_IndexedProperty)(nil), "google.datastore.admin.v1.Index.IndexedProperty")
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/datastore/admin/v1/index.proto", fileDescriptor_809cc5775e1cdeb3)
|
||||
}
|
||||
|
||||
var fileDescriptor_809cc5775e1cdeb3 = []byte{
|
||||
// 492 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x53, 0x6f, 0x6b, 0xd3, 0x4e,
|
||||
0x1c, 0xff, 0xa5, 0x6d, 0xb6, 0xe6, 0xfb, 0xdb, 0x66, 0x76, 0x30, 0x48, 0x87, 0xc5, 0x52, 0x50,
|
||||
0x8a, 0x60, 0x62, 0xe7, 0x43, 0x45, 0xc8, 0x92, 0x73, 0x46, 0xba, 0x34, 0x5c, 0xa2, 0xa0, 0x4f,
|
||||
0xca, 0xd9, 0x3b, 0x42, 0xb4, 0xbd, 0x0b, 0x49, 0x1c, 0xfa, 0x06, 0x7c, 0xea, 0xfb, 0xf0, 0x55,
|
||||
0x4a, 0x2e, 0x59, 0x1c, 0xc5, 0xd1, 0x27, 0xe1, 0x7b, 0xf7, 0xfd, 0xfc, 0xe3, 0xc3, 0x05, 0x1e,
|
||||
0xa7, 0x52, 0xa6, 0x1b, 0xee, 0x30, 0x5a, 0xd1, 0xb2, 0x92, 0x05, 0x77, 0x28, 0xdb, 0x66, 0xc2,
|
||||
0xb9, 0x99, 0x3b, 0x99, 0x60, 0xfc, 0xbb, 0x9d, 0x17, 0xb2, 0x92, 0x68, 0xd4, 0xc0, 0xec, 0x0e,
|
||||
0x66, 0x2b, 0x98, 0x7d, 0x33, 0x3f, 0x7f, 0xd8, 0x2a, 0xd0, 0x3c, 0x73, 0xa8, 0x10, 0xb2, 0xa2,
|
||||
0x55, 0x26, 0x45, 0xd9, 0x10, 0xa7, 0x3f, 0x75, 0xd0, 0x83, 0x5a, 0x08, 0x8d, 0x01, 0xf2, 0x42,
|
||||
0x7e, 0xe1, 0xeb, 0x6a, 0x95, 0x31, 0x4b, 0x9b, 0x68, 0x33, 0x83, 0x18, 0xed, 0x4d, 0xc0, 0xd0,
|
||||
0x08, 0x86, 0xca, 0xb0, 0x5e, 0xf6, 0xd5, 0xf2, 0x50, 0x9d, 0x03, 0x86, 0x10, 0x0c, 0xbe, 0x66,
|
||||
0x82, 0x59, 0x03, 0x75, 0xad, 0x66, 0x14, 0xc0, 0x90, 0x8a, 0x35, 0xaf, 0xb3, 0x58, 0xfa, 0x44,
|
||||
0x9b, 0x9d, 0x5c, 0x3c, 0xb3, 0xef, 0xcd, 0x68, 0xab, 0x04, 0xb6, 0xdb, 0x12, 0xae, 0x25, 0xe3,
|
||||
0xa4, 0xa3, 0xa3, 0x48, 0x05, 0xcb, 0x79, 0x51, 0x65, 0xbc, 0xb4, 0x0e, 0x26, 0xfd, 0xd9, 0xff,
|
||||
0x17, 0xcf, 0xf7, 0x8a, 0xa9, 0x2f, 0x67, 0x51, 0xc3, 0xfc, 0x41, 0xee, 0x68, 0xa0, 0x57, 0xa0,
|
||||
0x97, 0x15, 0xad, 0xb8, 0x75, 0xa8, 0x92, 0x3d, 0xd9, 0x2b, 0x16, 0xd7, 0x68, 0xd2, 0x90, 0xce,
|
||||
0x25, 0x3c, 0xd8, 0x11, 0xaf, 0x1b, 0x10, 0x74, 0xcb, 0xdb, 0xd6, 0xd4, 0x8c, 0xde, 0x82, 0xc1,
|
||||
0xb2, 0x82, 0xaf, 0xeb, 0xb6, 0xad, 0x9e, 0x32, 0x7a, 0xba, 0xd7, 0xc8, 0xbf, 0x65, 0x90, 0xbf,
|
||||
0xe4, 0xe9, 0x3b, 0x38, 0xba, 0x5b, 0x0d, 0x1a, 0xc3, 0xc8, 0x0d, 0x3d, 0x1c, 0x27, 0x4b, 0xb2,
|
||||
0xba, 0x5e, 0xfa, 0x78, 0xf5, 0x3e, 0x8c, 0x23, 0xec, 0x05, 0x6f, 0x02, 0xec, 0x9b, 0xff, 0xa1,
|
||||
0x21, 0x0c, 0xc2, 0x65, 0x88, 0x4d, 0x0d, 0x9d, 0xc2, 0xb1, 0xbb, 0x58, 0xac, 0x6e, 0xc1, 0xb1,
|
||||
0xd9, 0x9b, 0x62, 0x30, 0x3a, 0x0f, 0x34, 0x82, 0x33, 0x3f, 0x20, 0xd8, 0x4b, 0x82, 0x65, 0xb8,
|
||||
0x23, 0x72, 0x0c, 0x86, 0x1b, 0x7b, 0x38, 0xf4, 0x83, 0xf0, 0xca, 0xd4, 0xd0, 0x09, 0x80, 0x8f,
|
||||
0xbb, 0x73, 0x6f, 0x1a, 0x81, 0xae, 0x3a, 0x41, 0x67, 0x70, 0x1a, 0x27, 0x6e, 0xb2, 0x9b, 0xe1,
|
||||
0x08, 0x86, 0x1e, 0xc1, 0x6e, 0xd2, 0xb0, 0x0d, 0xd0, 0x09, 0x76, 0xfd, 0x8f, 0x66, 0xaf, 0x5e,
|
||||
0xf8, 0x78, 0x81, 0xd5, 0xa2, 0x5f, 0x2f, 0x30, 0x21, 0x4b, 0x62, 0x0e, 0x2e, 0x7f, 0x69, 0x30,
|
||||
0x5e, 0xcb, 0xed, 0xfd, 0x0d, 0x5d, 0x82, 0xaa, 0x28, 0xaa, 0x9f, 0x6d, 0xa4, 0x7d, 0x7a, 0xdd,
|
||||
0x02, 0x53, 0xb9, 0xa1, 0x22, 0xb5, 0x65, 0x91, 0x3a, 0x29, 0x17, 0xea, 0x51, 0x3b, 0xcd, 0x8a,
|
||||
0xe6, 0x59, 0xf9, 0x8f, 0xff, 0xe6, 0xa5, 0x1a, 0x7e, 0xf7, 0x1e, 0x5d, 0x35, 0x02, 0xde, 0x46,
|
||||
0x7e, 0x63, 0xb6, 0xdf, 0xf9, 0xb9, 0xca, 0xef, 0xc3, 0xfc, 0xf3, 0x81, 0x12, 0x7b, 0xf1, 0x27,
|
||||
0x00, 0x00, 0xff, 0xff, 0x3b, 0x8d, 0xf4, 0xff, 0x83, 0x03, 0x00, 0x00,
|
||||
}
|
913
vendor/google.golang.org/genproto/googleapis/datastore/admin/v1beta1/datastore_admin.pb.go
generated
vendored
Normal file
913
vendor/google.golang.org/genproto/googleapis/datastore/admin/v1beta1/datastore_admin.pb.go
generated
vendored
Normal file
|
@ -0,0 +1,913 @@
|
|||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/datastore/admin/v1beta1/datastore_admin.proto
|
||||
|
||||
package admin
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
||||
_ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
longrunning "google.golang.org/genproto/googleapis/longrunning"
|
||||
math "math"
|
||||
)
|
||||
|
||||
import (
|
||||
context "golang.org/x/net/context"
|
||||
grpc "google.golang.org/grpc"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
// Operation types.
|
||||
type OperationType int32
|
||||
|
||||
const (
|
||||
// Unspecified.
|
||||
OperationType_OPERATION_TYPE_UNSPECIFIED OperationType = 0
|
||||
// ExportEntities.
|
||||
OperationType_EXPORT_ENTITIES OperationType = 1
|
||||
// ImportEntities.
|
||||
OperationType_IMPORT_ENTITIES OperationType = 2
|
||||
)
|
||||
|
||||
var OperationType_name = map[int32]string{
|
||||
0: "OPERATION_TYPE_UNSPECIFIED",
|
||||
1: "EXPORT_ENTITIES",
|
||||
2: "IMPORT_ENTITIES",
|
||||
}
|
||||
|
||||
var OperationType_value = map[string]int32{
|
||||
"OPERATION_TYPE_UNSPECIFIED": 0,
|
||||
"EXPORT_ENTITIES": 1,
|
||||
"IMPORT_ENTITIES": 2,
|
||||
}
|
||||
|
||||
func (x OperationType) String() string {
|
||||
return proto.EnumName(OperationType_name, int32(x))
|
||||
}
|
||||
|
||||
func (OperationType) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_b63216f38706ce20, []int{0}
|
||||
}
|
||||
|
||||
// The various possible states for an ongoing Operation.
|
||||
type CommonMetadata_State int32
|
||||
|
||||
const (
|
||||
// Unspecified.
|
||||
CommonMetadata_STATE_UNSPECIFIED CommonMetadata_State = 0
|
||||
// Request is being prepared for processing.
|
||||
CommonMetadata_INITIALIZING CommonMetadata_State = 1
|
||||
// Request is actively being processed.
|
||||
CommonMetadata_PROCESSING CommonMetadata_State = 2
|
||||
// Request is in the process of being cancelled after user called
|
||||
// google.longrunning.Operations.CancelOperation on the operation.
|
||||
CommonMetadata_CANCELLING CommonMetadata_State = 3
|
||||
// Request has been processed and is in its finalization stage.
|
||||
CommonMetadata_FINALIZING CommonMetadata_State = 4
|
||||
// Request has completed successfully.
|
||||
CommonMetadata_SUCCESSFUL CommonMetadata_State = 5
|
||||
// Request has finished being processed, but encountered an error.
|
||||
CommonMetadata_FAILED CommonMetadata_State = 6
|
||||
// Request has finished being cancelled after user called
|
||||
// google.longrunning.Operations.CancelOperation.
|
||||
CommonMetadata_CANCELLED CommonMetadata_State = 7
|
||||
)
|
||||
|
||||
var CommonMetadata_State_name = map[int32]string{
|
||||
0: "STATE_UNSPECIFIED",
|
||||
1: "INITIALIZING",
|
||||
2: "PROCESSING",
|
||||
3: "CANCELLING",
|
||||
4: "FINALIZING",
|
||||
5: "SUCCESSFUL",
|
||||
6: "FAILED",
|
||||
7: "CANCELLED",
|
||||
}
|
||||
|
||||
var CommonMetadata_State_value = map[string]int32{
|
||||
"STATE_UNSPECIFIED": 0,
|
||||
"INITIALIZING": 1,
|
||||
"PROCESSING": 2,
|
||||
"CANCELLING": 3,
|
||||
"FINALIZING": 4,
|
||||
"SUCCESSFUL": 5,
|
||||
"FAILED": 6,
|
||||
"CANCELLED": 7,
|
||||
}
|
||||
|
||||
func (x CommonMetadata_State) String() string {
|
||||
return proto.EnumName(CommonMetadata_State_name, int32(x))
|
||||
}
|
||||
|
||||
func (CommonMetadata_State) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_b63216f38706ce20, []int{0, 0}
|
||||
}
|
||||
|
||||
// Metadata common to all Datastore Admin operations.
|
||||
type CommonMetadata struct {
|
||||
// The time that work began on the operation.
|
||||
StartTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
||||
// The time the operation ended, either successfully or otherwise.
|
||||
EndTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
||||
// The type of the operation. Can be used as a filter in
|
||||
// ListOperationsRequest.
|
||||
OperationType OperationType `protobuf:"varint,3,opt,name=operation_type,json=operationType,proto3,enum=google.datastore.admin.v1beta1.OperationType" json:"operation_type,omitempty"`
|
||||
// The client-assigned labels which were provided when the operation was
|
||||
// created. May also include additional labels.
|
||||
Labels map[string]string `protobuf:"bytes,4,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
// The current state of the Operation.
|
||||
State CommonMetadata_State `protobuf:"varint,5,opt,name=state,proto3,enum=google.datastore.admin.v1beta1.CommonMetadata_State" json:"state,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *CommonMetadata) Reset() { *m = CommonMetadata{} }
|
||||
func (m *CommonMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*CommonMetadata) ProtoMessage() {}
|
||||
func (*CommonMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_b63216f38706ce20, []int{0}
|
||||
}
|
||||
|
||||
func (m *CommonMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CommonMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *CommonMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_CommonMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *CommonMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_CommonMetadata.Merge(m, src)
|
||||
}
|
||||
func (m *CommonMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_CommonMetadata.Size(m)
|
||||
}
|
||||
func (m *CommonMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_CommonMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_CommonMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *CommonMetadata) GetStartTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.StartTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CommonMetadata) GetEndTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.EndTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CommonMetadata) GetOperationType() OperationType {
|
||||
if m != nil {
|
||||
return m.OperationType
|
||||
}
|
||||
return OperationType_OPERATION_TYPE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *CommonMetadata) GetLabels() map[string]string {
|
||||
if m != nil {
|
||||
return m.Labels
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CommonMetadata) GetState() CommonMetadata_State {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return CommonMetadata_STATE_UNSPECIFIED
|
||||
}
|
||||
|
||||
// Measures the progress of a particular metric.
|
||||
type Progress struct {
|
||||
// The amount of work that has been completed. Note that this may be greater
|
||||
// than work_estimated.
|
||||
WorkCompleted int64 `protobuf:"varint,1,opt,name=work_completed,json=workCompleted,proto3" json:"work_completed,omitempty"`
|
||||
// An estimate of how much work needs to be performed. May be zero if the
|
||||
// work estimate is unavailable.
|
||||
WorkEstimated int64 `protobuf:"varint,2,opt,name=work_estimated,json=workEstimated,proto3" json:"work_estimated,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Progress) Reset() { *m = Progress{} }
|
||||
func (m *Progress) String() string { return proto.CompactTextString(m) }
|
||||
func (*Progress) ProtoMessage() {}
|
||||
func (*Progress) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_b63216f38706ce20, []int{1}
|
||||
}
|
||||
|
||||
func (m *Progress) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Progress.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Progress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Progress.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Progress) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Progress.Merge(m, src)
|
||||
}
|
||||
func (m *Progress) XXX_Size() int {
|
||||
return xxx_messageInfo_Progress.Size(m)
|
||||
}
|
||||
func (m *Progress) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Progress.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Progress proto.InternalMessageInfo
|
||||
|
||||
func (m *Progress) GetWorkCompleted() int64 {
|
||||
if m != nil {
|
||||
return m.WorkCompleted
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Progress) GetWorkEstimated() int64 {
|
||||
if m != nil {
|
||||
return m.WorkEstimated
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
// The request for
|
||||
// [google.datastore.admin.v1beta1.DatastoreAdmin.ExportEntities][google.datastore.admin.v1beta1.DatastoreAdmin.ExportEntities].
|
||||
type ExportEntitiesRequest struct {
|
||||
// Project ID against which to make the request.
|
||||
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
||||
// Client-assigned labels.
|
||||
Labels map[string]string `protobuf:"bytes,2,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
// Description of what data from the project is included in the export.
|
||||
EntityFilter *EntityFilter `protobuf:"bytes,3,opt,name=entity_filter,json=entityFilter,proto3" json:"entity_filter,omitempty"`
|
||||
// Location for the export metadata and data files.
|
||||
//
|
||||
// The full resource URL of the external storage location. Currently, only
|
||||
// Google Cloud Storage is supported. So output_url_prefix should be of the
|
||||
// form: `gs://BUCKET_NAME[/NAMESPACE_PATH]`, where `BUCKET_NAME` is the
|
||||
// name of the Cloud Storage bucket and `NAMESPACE_PATH` is an optional Cloud
|
||||
// Storage namespace path (this is not a Cloud Datastore namespace). For more
|
||||
// information about Cloud Storage namespace paths, see
|
||||
// [Object name
|
||||
// considerations](https://cloud.google.com/storage/docs/naming#object-considerations).
|
||||
//
|
||||
// The resulting files will be nested deeper than the specified URL prefix.
|
||||
// The final output URL will be provided in the
|
||||
// [google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url][google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url]
|
||||
// field. That value should be used for subsequent ImportEntities operations.
|
||||
//
|
||||
// By nesting the data files deeper, the same Cloud Storage bucket can be used
|
||||
// in multiple ExportEntities operations without conflict.
|
||||
OutputUrlPrefix string `protobuf:"bytes,4,opt,name=output_url_prefix,json=outputUrlPrefix,proto3" json:"output_url_prefix,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesRequest) Reset() { *m = ExportEntitiesRequest{} }
|
||||
func (m *ExportEntitiesRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportEntitiesRequest) ProtoMessage() {}
|
||||
func (*ExportEntitiesRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_b63216f38706ce20, []int{2}
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportEntitiesRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ExportEntitiesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ExportEntitiesRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ExportEntitiesRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ExportEntitiesRequest.Merge(m, src)
|
||||
}
|
||||
func (m *ExportEntitiesRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_ExportEntitiesRequest.Size(m)
|
||||
}
|
||||
func (m *ExportEntitiesRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ExportEntitiesRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ExportEntitiesRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *ExportEntitiesRequest) GetProjectId() string {
|
||||
if m != nil {
|
||||
return m.ProjectId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesRequest) GetLabels() map[string]string {
|
||||
if m != nil {
|
||||
return m.Labels
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesRequest) GetEntityFilter() *EntityFilter {
|
||||
if m != nil {
|
||||
return m.EntityFilter
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesRequest) GetOutputUrlPrefix() string {
|
||||
if m != nil {
|
||||
return m.OutputUrlPrefix
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// The request for
|
||||
// [google.datastore.admin.v1beta1.DatastoreAdmin.ImportEntities][google.datastore.admin.v1beta1.DatastoreAdmin.ImportEntities].
|
||||
type ImportEntitiesRequest struct {
|
||||
// Project ID against which to make the request.
|
||||
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
||||
// Client-assigned labels.
|
||||
Labels map[string]string `protobuf:"bytes,2,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
// The full resource URL of the external storage location. Currently, only
|
||||
// Google Cloud Storage is supported. So input_url should be of the form:
|
||||
// `gs://BUCKET_NAME[/NAMESPACE_PATH]/OVERALL_EXPORT_METADATA_FILE`, where
|
||||
// `BUCKET_NAME` is the name of the Cloud Storage bucket, `NAMESPACE_PATH` is
|
||||
// an optional Cloud Storage namespace path (this is not a Cloud Datastore
|
||||
// namespace), and `OVERALL_EXPORT_METADATA_FILE` is the metadata file written
|
||||
// by the ExportEntities operation. For more information about Cloud Storage
|
||||
// namespace paths, see
|
||||
// [Object name
|
||||
// considerations](https://cloud.google.com/storage/docs/naming#object-considerations).
|
||||
//
|
||||
// For more information, see
|
||||
// [google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url][google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url].
|
||||
InputUrl string `protobuf:"bytes,3,opt,name=input_url,json=inputUrl,proto3" json:"input_url,omitempty"`
|
||||
// Optionally specify which kinds/namespaces are to be imported. If provided,
|
||||
// the list must be a subset of the EntityFilter used in creating the export,
|
||||
// otherwise a FAILED_PRECONDITION error will be returned. If no filter is
|
||||
// specified then all entities from the export are imported.
|
||||
EntityFilter *EntityFilter `protobuf:"bytes,4,opt,name=entity_filter,json=entityFilter,proto3" json:"entity_filter,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesRequest) Reset() { *m = ImportEntitiesRequest{} }
|
||||
func (m *ImportEntitiesRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ImportEntitiesRequest) ProtoMessage() {}
|
||||
func (*ImportEntitiesRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_b63216f38706ce20, []int{3}
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ImportEntitiesRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ImportEntitiesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ImportEntitiesRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ImportEntitiesRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ImportEntitiesRequest.Merge(m, src)
|
||||
}
|
||||
func (m *ImportEntitiesRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_ImportEntitiesRequest.Size(m)
|
||||
}
|
||||
func (m *ImportEntitiesRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ImportEntitiesRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ImportEntitiesRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *ImportEntitiesRequest) GetProjectId() string {
|
||||
if m != nil {
|
||||
return m.ProjectId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesRequest) GetLabels() map[string]string {
|
||||
if m != nil {
|
||||
return m.Labels
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesRequest) GetInputUrl() string {
|
||||
if m != nil {
|
||||
return m.InputUrl
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesRequest) GetEntityFilter() *EntityFilter {
|
||||
if m != nil {
|
||||
return m.EntityFilter
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// The response for
|
||||
// [google.datastore.admin.v1beta1.DatastoreAdmin.ExportEntities][google.datastore.admin.v1beta1.DatastoreAdmin.ExportEntities].
|
||||
type ExportEntitiesResponse struct {
|
||||
// Location of the output metadata file. This can be used to begin an import
|
||||
// into Cloud Datastore (this project or another project). See
|
||||
// [google.datastore.admin.v1beta1.ImportEntitiesRequest.input_url][google.datastore.admin.v1beta1.ImportEntitiesRequest.input_url].
|
||||
// Only present if the operation completed successfully.
|
||||
OutputUrl string `protobuf:"bytes,1,opt,name=output_url,json=outputUrl,proto3" json:"output_url,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesResponse) Reset() { *m = ExportEntitiesResponse{} }
|
||||
func (m *ExportEntitiesResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportEntitiesResponse) ProtoMessage() {}
|
||||
func (*ExportEntitiesResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_b63216f38706ce20, []int{4}
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportEntitiesResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ExportEntitiesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ExportEntitiesResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ExportEntitiesResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ExportEntitiesResponse.Merge(m, src)
|
||||
}
|
||||
func (m *ExportEntitiesResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_ExportEntitiesResponse.Size(m)
|
||||
}
|
||||
func (m *ExportEntitiesResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ExportEntitiesResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ExportEntitiesResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *ExportEntitiesResponse) GetOutputUrl() string {
|
||||
if m != nil {
|
||||
return m.OutputUrl
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Metadata for ExportEntities operations.
|
||||
type ExportEntitiesMetadata struct {
|
||||
// Metadata common to all Datastore Admin operations.
|
||||
Common *CommonMetadata `protobuf:"bytes,1,opt,name=common,proto3" json:"common,omitempty"`
|
||||
// An estimate of the number of entities processed.
|
||||
ProgressEntities *Progress `protobuf:"bytes,2,opt,name=progress_entities,json=progressEntities,proto3" json:"progress_entities,omitempty"`
|
||||
// An estimate of the number of bytes processed.
|
||||
ProgressBytes *Progress `protobuf:"bytes,3,opt,name=progress_bytes,json=progressBytes,proto3" json:"progress_bytes,omitempty"`
|
||||
// Description of which entities are being exported.
|
||||
EntityFilter *EntityFilter `protobuf:"bytes,4,opt,name=entity_filter,json=entityFilter,proto3" json:"entity_filter,omitempty"`
|
||||
// Location for the export metadata and data files. This will be the same
|
||||
// value as the
|
||||
// [google.datastore.admin.v1beta1.ExportEntitiesRequest.output_url_prefix][google.datastore.admin.v1beta1.ExportEntitiesRequest.output_url_prefix]
|
||||
// field. The final output location is provided in
|
||||
// [google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url][google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url].
|
||||
OutputUrlPrefix string `protobuf:"bytes,5,opt,name=output_url_prefix,json=outputUrlPrefix,proto3" json:"output_url_prefix,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesMetadata) Reset() { *m = ExportEntitiesMetadata{} }
|
||||
func (m *ExportEntitiesMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportEntitiesMetadata) ProtoMessage() {}
|
||||
func (*ExportEntitiesMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_b63216f38706ce20, []int{5}
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportEntitiesMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ExportEntitiesMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ExportEntitiesMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ExportEntitiesMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ExportEntitiesMetadata.Merge(m, src)
|
||||
}
|
||||
func (m *ExportEntitiesMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_ExportEntitiesMetadata.Size(m)
|
||||
}
|
||||
func (m *ExportEntitiesMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ExportEntitiesMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ExportEntitiesMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *ExportEntitiesMetadata) GetCommon() *CommonMetadata {
|
||||
if m != nil {
|
||||
return m.Common
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesMetadata) GetProgressEntities() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressEntities
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesMetadata) GetProgressBytes() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressBytes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesMetadata) GetEntityFilter() *EntityFilter {
|
||||
if m != nil {
|
||||
return m.EntityFilter
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportEntitiesMetadata) GetOutputUrlPrefix() string {
|
||||
if m != nil {
|
||||
return m.OutputUrlPrefix
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Metadata for ImportEntities operations.
|
||||
type ImportEntitiesMetadata struct {
|
||||
// Metadata common to all Datastore Admin operations.
|
||||
Common *CommonMetadata `protobuf:"bytes,1,opt,name=common,proto3" json:"common,omitempty"`
|
||||
// An estimate of the number of entities processed.
|
||||
ProgressEntities *Progress `protobuf:"bytes,2,opt,name=progress_entities,json=progressEntities,proto3" json:"progress_entities,omitempty"`
|
||||
// An estimate of the number of bytes processed.
|
||||
ProgressBytes *Progress `protobuf:"bytes,3,opt,name=progress_bytes,json=progressBytes,proto3" json:"progress_bytes,omitempty"`
|
||||
// Description of which entities are being imported.
|
||||
EntityFilter *EntityFilter `protobuf:"bytes,4,opt,name=entity_filter,json=entityFilter,proto3" json:"entity_filter,omitempty"`
|
||||
// The location of the import metadata file. This will be the same value as
|
||||
// the [google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url][google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url]
|
||||
// field.
|
||||
InputUrl string `protobuf:"bytes,5,opt,name=input_url,json=inputUrl,proto3" json:"input_url,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesMetadata) Reset() { *m = ImportEntitiesMetadata{} }
|
||||
func (m *ImportEntitiesMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*ImportEntitiesMetadata) ProtoMessage() {}
|
||||
func (*ImportEntitiesMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_b63216f38706ce20, []int{6}
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ImportEntitiesMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ImportEntitiesMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ImportEntitiesMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ImportEntitiesMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ImportEntitiesMetadata.Merge(m, src)
|
||||
}
|
||||
func (m *ImportEntitiesMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_ImportEntitiesMetadata.Size(m)
|
||||
}
|
||||
func (m *ImportEntitiesMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ImportEntitiesMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ImportEntitiesMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *ImportEntitiesMetadata) GetCommon() *CommonMetadata {
|
||||
if m != nil {
|
||||
return m.Common
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesMetadata) GetProgressEntities() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressEntities
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesMetadata) GetProgressBytes() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressBytes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesMetadata) GetEntityFilter() *EntityFilter {
|
||||
if m != nil {
|
||||
return m.EntityFilter
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportEntitiesMetadata) GetInputUrl() string {
|
||||
if m != nil {
|
||||
return m.InputUrl
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Identifies a subset of entities in a project. This is specified as
|
||||
// combinations of kinds and namespaces (either or both of which may be all, as
|
||||
// described in the following examples).
|
||||
// Example usage:
|
||||
//
|
||||
// Entire project:
|
||||
// kinds=[], namespace_ids=[]
|
||||
//
|
||||
// Kinds Foo and Bar in all namespaces:
|
||||
// kinds=['Foo', 'Bar'], namespace_ids=[]
|
||||
//
|
||||
// Kinds Foo and Bar only in the default namespace:
|
||||
// kinds=['Foo', 'Bar'], namespace_ids=['']
|
||||
//
|
||||
// Kinds Foo and Bar in both the default and Baz namespaces:
|
||||
// kinds=['Foo', 'Bar'], namespace_ids=['', 'Baz']
|
||||
//
|
||||
// The entire Baz namespace:
|
||||
// kinds=[], namespace_ids=['Baz']
|
||||
type EntityFilter struct {
|
||||
// If empty, then this represents all kinds.
|
||||
Kinds []string `protobuf:"bytes,1,rep,name=kinds,proto3" json:"kinds,omitempty"`
|
||||
// An empty list represents all namespaces. This is the preferred
|
||||
// usage for projects that don't use namespaces.
|
||||
//
|
||||
// An empty string element represents the default namespace. This should be
|
||||
// used if the project has data in non-default namespaces, but doesn't want to
|
||||
// include them.
|
||||
// Each namespace in this list must be unique.
|
||||
NamespaceIds []string `protobuf:"bytes,2,rep,name=namespace_ids,json=namespaceIds,proto3" json:"namespace_ids,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *EntityFilter) Reset() { *m = EntityFilter{} }
|
||||
func (m *EntityFilter) String() string { return proto.CompactTextString(m) }
|
||||
func (*EntityFilter) ProtoMessage() {}
|
||||
func (*EntityFilter) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_b63216f38706ce20, []int{7}
|
||||
}
|
||||
|
||||
func (m *EntityFilter) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_EntityFilter.Unmarshal(m, b)
|
||||
}
|
||||
func (m *EntityFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_EntityFilter.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *EntityFilter) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_EntityFilter.Merge(m, src)
|
||||
}
|
||||
func (m *EntityFilter) XXX_Size() int {
|
||||
return xxx_messageInfo_EntityFilter.Size(m)
|
||||
}
|
||||
func (m *EntityFilter) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_EntityFilter.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_EntityFilter proto.InternalMessageInfo
|
||||
|
||||
func (m *EntityFilter) GetKinds() []string {
|
||||
if m != nil {
|
||||
return m.Kinds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *EntityFilter) GetNamespaceIds() []string {
|
||||
if m != nil {
|
||||
return m.NamespaceIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterEnum("google.datastore.admin.v1beta1.OperationType", OperationType_name, OperationType_value)
|
||||
proto.RegisterEnum("google.datastore.admin.v1beta1.CommonMetadata_State", CommonMetadata_State_name, CommonMetadata_State_value)
|
||||
proto.RegisterType((*CommonMetadata)(nil), "google.datastore.admin.v1beta1.CommonMetadata")
|
||||
proto.RegisterMapType((map[string]string)(nil), "google.datastore.admin.v1beta1.CommonMetadata.LabelsEntry")
|
||||
proto.RegisterType((*Progress)(nil), "google.datastore.admin.v1beta1.Progress")
|
||||
proto.RegisterType((*ExportEntitiesRequest)(nil), "google.datastore.admin.v1beta1.ExportEntitiesRequest")
|
||||
proto.RegisterMapType((map[string]string)(nil), "google.datastore.admin.v1beta1.ExportEntitiesRequest.LabelsEntry")
|
||||
proto.RegisterType((*ImportEntitiesRequest)(nil), "google.datastore.admin.v1beta1.ImportEntitiesRequest")
|
||||
proto.RegisterMapType((map[string]string)(nil), "google.datastore.admin.v1beta1.ImportEntitiesRequest.LabelsEntry")
|
||||
proto.RegisterType((*ExportEntitiesResponse)(nil), "google.datastore.admin.v1beta1.ExportEntitiesResponse")
|
||||
proto.RegisterType((*ExportEntitiesMetadata)(nil), "google.datastore.admin.v1beta1.ExportEntitiesMetadata")
|
||||
proto.RegisterType((*ImportEntitiesMetadata)(nil), "google.datastore.admin.v1beta1.ImportEntitiesMetadata")
|
||||
proto.RegisterType((*EntityFilter)(nil), "google.datastore.admin.v1beta1.EntityFilter")
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ context.Context
|
||||
var _ grpc.ClientConn
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the grpc package it is being compiled against.
|
||||
const _ = grpc.SupportPackageIsVersion4
|
||||
|
||||
// DatastoreAdminClient is the client API for DatastoreAdmin service.
|
||||
//
|
||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
||||
type DatastoreAdminClient interface {
|
||||
// Exports a copy of all or a subset of entities from Google Cloud Datastore
|
||||
// to another storage system, such as Google Cloud Storage. Recent updates to
|
||||
// entities may not be reflected in the export. The export occurs in the
|
||||
// background and its progress can be monitored and managed via the
|
||||
// Operation resource that is created. The output of an export may only be
|
||||
// used once the associated operation is done. If an export operation is
|
||||
// cancelled before completion it may leave partial data behind in Google
|
||||
// Cloud Storage.
|
||||
ExportEntities(ctx context.Context, in *ExportEntitiesRequest, opts ...grpc.CallOption) (*longrunning.Operation, error)
|
||||
// Imports entities into Google Cloud Datastore. Existing entities with the
|
||||
// same key are overwritten. The import occurs in the background and its
|
||||
// progress can be monitored and managed via the Operation resource that is
|
||||
// created. If an ImportEntities operation is cancelled, it is possible
|
||||
// that a subset of the data has already been imported to Cloud Datastore.
|
||||
ImportEntities(ctx context.Context, in *ImportEntitiesRequest, opts ...grpc.CallOption) (*longrunning.Operation, error)
|
||||
}
|
||||
|
||||
type datastoreAdminClient struct {
|
||||
cc *grpc.ClientConn
|
||||
}
|
||||
|
||||
func NewDatastoreAdminClient(cc *grpc.ClientConn) DatastoreAdminClient {
|
||||
return &datastoreAdminClient{cc}
|
||||
}
|
||||
|
||||
func (c *datastoreAdminClient) ExportEntities(ctx context.Context, in *ExportEntitiesRequest, opts ...grpc.CallOption) (*longrunning.Operation, error) {
|
||||
out := new(longrunning.Operation)
|
||||
err := c.cc.Invoke(ctx, "/google.datastore.admin.v1beta1.DatastoreAdmin/ExportEntities", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *datastoreAdminClient) ImportEntities(ctx context.Context, in *ImportEntitiesRequest, opts ...grpc.CallOption) (*longrunning.Operation, error) {
|
||||
out := new(longrunning.Operation)
|
||||
err := c.cc.Invoke(ctx, "/google.datastore.admin.v1beta1.DatastoreAdmin/ImportEntities", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
// DatastoreAdminServer is the server API for DatastoreAdmin service.
|
||||
type DatastoreAdminServer interface {
|
||||
// Exports a copy of all or a subset of entities from Google Cloud Datastore
|
||||
// to another storage system, such as Google Cloud Storage. Recent updates to
|
||||
// entities may not be reflected in the export. The export occurs in the
|
||||
// background and its progress can be monitored and managed via the
|
||||
// Operation resource that is created. The output of an export may only be
|
||||
// used once the associated operation is done. If an export operation is
|
||||
// cancelled before completion it may leave partial data behind in Google
|
||||
// Cloud Storage.
|
||||
ExportEntities(context.Context, *ExportEntitiesRequest) (*longrunning.Operation, error)
|
||||
// Imports entities into Google Cloud Datastore. Existing entities with the
|
||||
// same key are overwritten. The import occurs in the background and its
|
||||
// progress can be monitored and managed via the Operation resource that is
|
||||
// created. If an ImportEntities operation is cancelled, it is possible
|
||||
// that a subset of the data has already been imported to Cloud Datastore.
|
||||
ImportEntities(context.Context, *ImportEntitiesRequest) (*longrunning.Operation, error)
|
||||
}
|
||||
|
||||
func RegisterDatastoreAdminServer(s *grpc.Server, srv DatastoreAdminServer) {
|
||||
s.RegisterService(&_DatastoreAdmin_serviceDesc, srv)
|
||||
}
|
||||
|
||||
func _DatastoreAdmin_ExportEntities_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(ExportEntitiesRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(DatastoreAdminServer).ExportEntities(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.datastore.admin.v1beta1.DatastoreAdmin/ExportEntities",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(DatastoreAdminServer).ExportEntities(ctx, req.(*ExportEntitiesRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _DatastoreAdmin_ImportEntities_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(ImportEntitiesRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(DatastoreAdminServer).ImportEntities(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.datastore.admin.v1beta1.DatastoreAdmin/ImportEntities",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(DatastoreAdminServer).ImportEntities(ctx, req.(*ImportEntitiesRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
var _DatastoreAdmin_serviceDesc = grpc.ServiceDesc{
|
||||
ServiceName: "google.datastore.admin.v1beta1.DatastoreAdmin",
|
||||
HandlerType: (*DatastoreAdminServer)(nil),
|
||||
Methods: []grpc.MethodDesc{
|
||||
{
|
||||
MethodName: "ExportEntities",
|
||||
Handler: _DatastoreAdmin_ExportEntities_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "ImportEntities",
|
||||
Handler: _DatastoreAdmin_ImportEntities_Handler,
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "google/datastore/admin/v1beta1/datastore_admin.proto",
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/datastore/admin/v1beta1/datastore_admin.proto", fileDescriptor_b63216f38706ce20)
|
||||
}
|
||||
|
||||
var fileDescriptor_b63216f38706ce20 = []byte{
|
||||
// 996 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0x41, 0x8f, 0xdb, 0x44,
|
||||
0x14, 0xc6, 0xce, 0x26, 0x6d, 0xde, 0x6e, 0xd2, 0xec, 0x94, 0xad, 0xa2, 0x40, 0xcb, 0xca, 0xa5,
|
||||
0xd2, 0x6a, 0x05, 0x0e, 0x1b, 0x5a, 0x41, 0x97, 0x53, 0x36, 0xeb, 0x54, 0x46, 0x69, 0x12, 0x1c,
|
||||
0x07, 0x75, 0x7b, 0xb1, 0x9c, 0x78, 0x36, 0x32, 0x6b, 0x7b, 0x8c, 0x3d, 0x29, 0x8d, 0x10, 0x17,
|
||||
0x2e, 0x1c, 0x38, 0x72, 0xe1, 0x1f, 0x20, 0xf1, 0x1b, 0xb8, 0x70, 0xe1, 0xc2, 0x91, 0xbf, 0xc0,
|
||||
0x8f, 0xe0, 0x88, 0x66, 0x3c, 0x76, 0xe2, 0x25, 0x10, 0xca, 0x16, 0x4e, 0xdc, 0xfc, 0xde, 0xbc,
|
||||
0xef, 0x9b, 0x37, 0xdf, 0x9b, 0xf7, 0x3c, 0x70, 0x7f, 0x46, 0xc8, 0xcc, 0xc3, 0x4d, 0xc7, 0xa6,
|
||||
0x76, 0x4c, 0x49, 0x84, 0x9b, 0xb6, 0xe3, 0xbb, 0x41, 0xf3, 0xd9, 0xd1, 0x04, 0x53, 0xfb, 0x68,
|
||||
0xe9, 0xb7, 0xb8, 0x5f, 0x0d, 0x23, 0x42, 0x09, 0xba, 0x93, 0xa0, 0xd4, 0x6c, 0x55, 0x4d, 0x56,
|
||||
0x05, 0xaa, 0xf1, 0xba, 0x60, 0xb5, 0x43, 0xb7, 0x69, 0x07, 0x01, 0xa1, 0x36, 0x75, 0x49, 0x10,
|
||||
0x27, 0xe8, 0xc6, 0x5d, 0xb1, 0xea, 0x91, 0x60, 0x16, 0xcd, 0x83, 0xc0, 0x0d, 0x66, 0x4d, 0x12,
|
||||
0xe2, 0x28, 0x17, 0xf4, 0x86, 0x08, 0xe2, 0xd6, 0x64, 0x7e, 0xde, 0xa4, 0xae, 0x8f, 0x63, 0x6a,
|
||||
0xfb, 0x61, 0x12, 0xa0, 0xfc, 0xb8, 0x05, 0xd5, 0x0e, 0xf1, 0x7d, 0x12, 0x3c, 0xc6, 0xd4, 0x66,
|
||||
0x99, 0xa0, 0x87, 0x00, 0x31, 0xb5, 0x23, 0x6a, 0xb1, 0xd8, 0xba, 0xb4, 0x2f, 0x1d, 0x6c, 0xb7,
|
||||
0x1a, 0xaa, 0xc8, 0x35, 0x25, 0x52, 0xcd, 0x94, 0xc8, 0x28, 0xf3, 0x68, 0x66, 0xa3, 0x07, 0x70,
|
||||
0x1d, 0x07, 0x4e, 0x02, 0x94, 0x37, 0x02, 0xaf, 0xe1, 0xc0, 0xe1, 0x30, 0x13, 0xaa, 0x59, 0xe6,
|
||||
0x16, 0x5d, 0x84, 0xb8, 0x5e, 0xd8, 0x97, 0x0e, 0xaa, 0xad, 0xb7, 0xd5, 0xbf, 0x56, 0x48, 0x1d,
|
||||
0xa4, 0x28, 0x73, 0x11, 0x62, 0xa3, 0x42, 0x56, 0x4d, 0x64, 0x40, 0xc9, 0xb3, 0x27, 0xd8, 0x8b,
|
||||
0xeb, 0x5b, 0xfb, 0x85, 0x83, 0xed, 0xd6, 0xf1, 0x26, 0xb6, 0xbc, 0x0e, 0x6a, 0x8f, 0x83, 0xb5,
|
||||
0x80, 0x46, 0x0b, 0x43, 0x30, 0xa1, 0x0f, 0xa1, 0x18, 0x53, 0x9b, 0xe2, 0x7a, 0x91, 0x27, 0x78,
|
||||
0xff, 0x05, 0x29, 0x47, 0x0c, 0x6b, 0x24, 0x14, 0x8d, 0x87, 0xb0, 0xbd, 0xb2, 0x05, 0xaa, 0x41,
|
||||
0xe1, 0x02, 0x2f, 0xb8, 0xde, 0x65, 0x83, 0x7d, 0xa2, 0x57, 0xa1, 0xf8, 0xcc, 0xf6, 0xe6, 0x89,
|
||||
0x94, 0x65, 0x23, 0x31, 0x8e, 0xe5, 0xf7, 0x25, 0xe5, 0x6b, 0x09, 0x8a, 0x9c, 0x0b, 0xed, 0xc1,
|
||||
0xee, 0xc8, 0x6c, 0x9b, 0x9a, 0x35, 0xee, 0x8f, 0x86, 0x5a, 0x47, 0xef, 0xea, 0xda, 0x69, 0xed,
|
||||
0x15, 0x54, 0x83, 0x1d, 0xbd, 0xaf, 0x9b, 0x7a, 0xbb, 0xa7, 0x3f, 0xd5, 0xfb, 0x8f, 0x6a, 0x12,
|
||||
0xaa, 0x02, 0x0c, 0x8d, 0x41, 0x47, 0x1b, 0x8d, 0x98, 0x2d, 0x33, 0xbb, 0xd3, 0xee, 0x77, 0xb4,
|
||||
0x5e, 0x8f, 0xd9, 0x05, 0x66, 0x77, 0xf5, 0x7e, 0x1a, 0xbf, 0xc5, 0xec, 0xd1, 0xb8, 0xc3, 0xe2,
|
||||
0xbb, 0xe3, 0x5e, 0xad, 0x88, 0x00, 0x4a, 0xdd, 0xb6, 0xde, 0xd3, 0x4e, 0x6b, 0x25, 0x54, 0x81,
|
||||
0xb2, 0xc0, 0x6a, 0xa7, 0xb5, 0x6b, 0xca, 0x13, 0xb8, 0x3e, 0x8c, 0xc8, 0x2c, 0xc2, 0x71, 0x8c,
|
||||
0xee, 0x41, 0xf5, 0x33, 0x12, 0x5d, 0x58, 0x53, 0xe2, 0x87, 0x1e, 0xa6, 0xd8, 0xe1, 0x07, 0x2a,
|
||||
0x18, 0x15, 0xe6, 0xed, 0xa4, 0xce, 0x2c, 0x0c, 0xc7, 0xd4, 0xf5, 0x6d, 0x16, 0x26, 0x2f, 0xc3,
|
||||
0xb4, 0xd4, 0xa9, 0xfc, 0x2c, 0xc3, 0x9e, 0xf6, 0x3c, 0x24, 0x11, 0xd5, 0x02, 0xea, 0x52, 0x17,
|
||||
0xc7, 0x06, 0xfe, 0x74, 0x8e, 0x63, 0x8a, 0x6e, 0x03, 0x84, 0x11, 0xf9, 0x04, 0x4f, 0xa9, 0xe5,
|
||||
0x3a, 0x42, 0xb4, 0xb2, 0xf0, 0xe8, 0x0e, 0x3a, 0xcb, 0x6a, 0x2f, 0xf3, 0xda, 0xb7, 0x37, 0x15,
|
||||
0x6a, 0xed, 0x2e, 0x6b, 0xaf, 0xc0, 0x47, 0x50, 0xc1, 0x2c, 0x6c, 0x61, 0x9d, 0xbb, 0x1e, 0xc5,
|
||||
0x11, 0xbf, 0xab, 0xdb, 0xad, 0xb7, 0x36, 0xee, 0xc0, 0x41, 0x5d, 0x8e, 0x31, 0x76, 0xf0, 0x8a,
|
||||
0x85, 0x0e, 0x61, 0x97, 0xcc, 0x69, 0x38, 0xa7, 0xd6, 0x3c, 0xf2, 0xac, 0x30, 0xc2, 0xe7, 0xee,
|
||||
0xf3, 0xfa, 0x16, 0x3f, 0xd3, 0x8d, 0x64, 0x61, 0x1c, 0x79, 0x43, 0xee, 0xbe, 0xca, 0xad, 0xf9,
|
||||
0x41, 0x86, 0x3d, 0xdd, 0xff, 0x2f, 0xd4, 0x5c, 0xbb, 0xcb, 0x5a, 0x35, 0x5f, 0x83, 0xb2, 0x1b,
|
||||
0x88, 0x93, 0x73, 0x25, 0xcb, 0xc6, 0x75, 0xee, 0x18, 0x47, 0xde, 0x1f, 0xa5, 0xde, 0xba, 0xaa,
|
||||
0xd4, 0x57, 0x91, 0xef, 0x3d, 0xb8, 0x75, 0xf9, 0x96, 0xc4, 0x21, 0x09, 0x62, 0xcc, 0xe4, 0x5b,
|
||||
0xd6, 0x2f, 0x95, 0x2f, 0x2b, 0x9c, 0xf2, 0x55, 0xe1, 0x32, 0x32, 0x9b, 0xb5, 0x5d, 0x28, 0x4d,
|
||||
0xf9, 0x88, 0x10, 0x73, 0x56, 0x7d, 0xb1, 0x81, 0x62, 0x08, 0x34, 0x1a, 0xc3, 0x6e, 0x28, 0x5a,
|
||||
0xd0, 0xc2, 0x62, 0x13, 0x31, 0x81, 0x0f, 0x36, 0x51, 0xa6, 0xbd, 0x6b, 0xd4, 0x52, 0x8a, 0x34,
|
||||
0x4d, 0x34, 0x80, 0x6a, 0x46, 0x3b, 0x59, 0x50, 0x1c, 0x8b, 0xcb, 0xfe, 0xf7, 0x39, 0x2b, 0x29,
|
||||
0xfe, 0x84, 0xc1, 0xff, 0x85, 0x8a, 0xae, 0x6f, 0x9e, 0xe2, 0xda, 0xe6, 0x51, 0x7e, 0x93, 0xe1,
|
||||
0x56, 0xfe, 0x6e, 0xfe, 0x5f, 0x89, 0x97, 0x57, 0x89, 0x5c, 0x2f, 0x17, 0xf3, 0xbd, 0xac, 0xe8,
|
||||
0xb0, 0xb3, 0x0a, 0x65, 0x7d, 0x76, 0xe1, 0x06, 0x4e, 0x5c, 0x97, 0xf6, 0x0b, 0xac, 0xcf, 0xb8,
|
||||
0x81, 0xee, 0x42, 0x25, 0xb0, 0x7d, 0x1c, 0x87, 0xf6, 0x14, 0x5b, 0xae, 0x93, 0x0c, 0x9c, 0xb2,
|
||||
0xb1, 0x93, 0x39, 0x75, 0x27, 0x3e, 0x3c, 0x83, 0x4a, 0xee, 0xc7, 0x8f, 0xee, 0x40, 0x63, 0x30,
|
||||
0xd4, 0x8c, 0xb6, 0xa9, 0x0f, 0xfa, 0x96, 0x79, 0x36, 0xbc, 0xfc, 0x37, 0xbc, 0x09, 0x37, 0xb4,
|
||||
0x27, 0xc3, 0x81, 0x61, 0x5a, 0x5a, 0xdf, 0xd4, 0x4d, 0x5d, 0x1b, 0xd5, 0x24, 0xe6, 0xd4, 0x1f,
|
||||
0xe7, 0x9d, 0x72, 0xeb, 0x27, 0x19, 0xaa, 0xa7, 0xe9, 0xc9, 0xdb, 0xec, 0xe0, 0xe8, 0x5b, 0x09,
|
||||
0xaa, 0xf9, 0xee, 0x45, 0x0f, 0xfe, 0xd1, 0xdf, 0xa4, 0x71, 0x3b, 0x85, 0xad, 0x3c, 0xd9, 0x96,
|
||||
0x4f, 0x18, 0xe5, 0x9d, 0x2f, 0x7f, 0xf9, 0xf5, 0x1b, 0xf9, 0x50, 0xb9, 0x97, 0x3d, 0x1b, 0xc5,
|
||||
0x04, 0x8e, 0x9b, 0x9f, 0x2f, 0xa7, 0xf3, 0x17, 0xc7, 0x98, 0x93, 0x1f, 0x4b, 0x87, 0x3c, 0xb5,
|
||||
0xfc, 0x75, 0xde, 0x9c, 0xda, 0xda, 0xd1, 0xfc, 0xb2, 0x52, 0x73, 0x7d, 0x91, 0xda, 0xc9, 0x77,
|
||||
0x12, 0x28, 0x53, 0xe2, 0x6f, 0xc8, 0xe6, 0xe4, 0x66, 0x5e, 0xec, 0x21, 0x7b, 0x24, 0x0e, 0xa5,
|
||||
0xa7, 0x1d, 0x01, 0x9b, 0x11, 0xcf, 0x0e, 0x66, 0x2a, 0x89, 0x66, 0xcd, 0x19, 0x0e, 0xf8, 0x13,
|
||||
0xb2, 0x99, 0x2c, 0xd9, 0xa1, 0x1b, 0xff, 0xd9, 0x73, 0xfb, 0x03, 0x6e, 0x7d, 0x2f, 0xbf, 0xf9,
|
||||
0x28, 0x61, 0xe9, 0x78, 0x64, 0xee, 0xa8, 0xd9, 0x4e, 0x2a, 0xdf, 0x4a, 0xfd, 0xf8, 0xe8, 0x84,
|
||||
0x05, 0x4f, 0x4a, 0x9c, 0xf6, 0xdd, 0xdf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x77, 0x71, 0x2d, 0x88,
|
||||
0xc4, 0x0b, 0x00, 0x00,
|
||||
}
|
2131
vendor/google.golang.org/genproto/googleapis/datastore/v1/datastore.pb.go
generated
vendored
Normal file
2131
vendor/google.golang.org/genproto/googleapis/datastore/v1/datastore.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
932
vendor/google.golang.org/genproto/googleapis/datastore/v1/entity.pb.go
generated
vendored
Normal file
932
vendor/google.golang.org/genproto/googleapis/datastore/v1/entity.pb.go
generated
vendored
Normal file
|
@ -0,0 +1,932 @@
|
|||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/datastore/v1/entity.proto
|
||||
|
||||
package datastore
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
_struct "github.com/golang/protobuf/ptypes/struct"
|
||||
timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
||||
_ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
latlng "google.golang.org/genproto/googleapis/type/latlng"
|
||||
math "math"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
// A partition ID identifies a grouping of entities. The grouping is always
|
||||
// by project and namespace, however the namespace ID may be empty.
|
||||
//
|
||||
// A partition ID contains several dimensions:
|
||||
// project ID and namespace ID.
|
||||
//
|
||||
// Partition dimensions:
|
||||
//
|
||||
// - May be `""`.
|
||||
// - Must be valid UTF-8 bytes.
|
||||
// - Must have values that match regex `[A-Za-z\d\.\-_]{1,100}`
|
||||
// If the value of any dimension matches regex `__.*__`, the partition is
|
||||
// reserved/read-only.
|
||||
// A reserved/read-only partition ID is forbidden in certain documented
|
||||
// contexts.
|
||||
//
|
||||
// Foreign partition IDs (in which the project ID does
|
||||
// not match the context project ID ) are discouraged.
|
||||
// Reads and writes of foreign partition IDs may fail if the project is not in an active state.
|
||||
type PartitionId struct {
|
||||
// The ID of the project to which the entities belong.
|
||||
ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
||||
// If not empty, the ID of the namespace to which the entities belong.
|
||||
NamespaceId string `protobuf:"bytes,4,opt,name=namespace_id,json=namespaceId,proto3" json:"namespace_id,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *PartitionId) Reset() { *m = PartitionId{} }
|
||||
func (m *PartitionId) String() string { return proto.CompactTextString(m) }
|
||||
func (*PartitionId) ProtoMessage() {}
|
||||
func (*PartitionId) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ecbfdafa45100300, []int{0}
|
||||
}
|
||||
|
||||
func (m *PartitionId) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_PartitionId.Unmarshal(m, b)
|
||||
}
|
||||
func (m *PartitionId) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_PartitionId.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *PartitionId) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_PartitionId.Merge(m, src)
|
||||
}
|
||||
func (m *PartitionId) XXX_Size() int {
|
||||
return xxx_messageInfo_PartitionId.Size(m)
|
||||
}
|
||||
func (m *PartitionId) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_PartitionId.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_PartitionId proto.InternalMessageInfo
|
||||
|
||||
func (m *PartitionId) GetProjectId() string {
|
||||
if m != nil {
|
||||
return m.ProjectId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *PartitionId) GetNamespaceId() string {
|
||||
if m != nil {
|
||||
return m.NamespaceId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// A unique identifier for an entity.
|
||||
// If a key's partition ID or any of its path kinds or names are
|
||||
// reserved/read-only, the key is reserved/read-only.
|
||||
// A reserved/read-only key is forbidden in certain documented contexts.
|
||||
type Key struct {
|
||||
// Entities are partitioned into subsets, currently identified by a project
|
||||
// ID and namespace ID.
|
||||
// Queries are scoped to a single partition.
|
||||
PartitionId *PartitionId `protobuf:"bytes,1,opt,name=partition_id,json=partitionId,proto3" json:"partition_id,omitempty"`
|
||||
// The entity path.
|
||||
// An entity path consists of one or more elements composed of a kind and a
|
||||
// string or numerical identifier, which identify entities. The first
|
||||
// element identifies a _root entity_, the second element identifies
|
||||
// a _child_ of the root entity, the third element identifies a child of the
|
||||
// second entity, and so forth. The entities identified by all prefixes of
|
||||
// the path are called the element's _ancestors_.
|
||||
//
|
||||
// An entity path is always fully complete: *all* of the entity's ancestors
|
||||
// are required to be in the path along with the entity identifier itself.
|
||||
// The only exception is that in some documented cases, the identifier in the
|
||||
// last path element (for the entity) itself may be omitted. For example,
|
||||
// the last path element of the key of `Mutation.insert` may have no
|
||||
// identifier.
|
||||
//
|
||||
// A path can never be empty, and a path can have at most 100 elements.
|
||||
Path []*Key_PathElement `protobuf:"bytes,2,rep,name=path,proto3" json:"path,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Key) Reset() { *m = Key{} }
|
||||
func (m *Key) String() string { return proto.CompactTextString(m) }
|
||||
func (*Key) ProtoMessage() {}
|
||||
func (*Key) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ecbfdafa45100300, []int{1}
|
||||
}
|
||||
|
||||
func (m *Key) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Key.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Key) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Key.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Key) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Key.Merge(m, src)
|
||||
}
|
||||
func (m *Key) XXX_Size() int {
|
||||
return xxx_messageInfo_Key.Size(m)
|
||||
}
|
||||
func (m *Key) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Key.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Key proto.InternalMessageInfo
|
||||
|
||||
func (m *Key) GetPartitionId() *PartitionId {
|
||||
if m != nil {
|
||||
return m.PartitionId
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Key) GetPath() []*Key_PathElement {
|
||||
if m != nil {
|
||||
return m.Path
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A (kind, ID/name) pair used to construct a key path.
|
||||
//
|
||||
// If either name or ID is set, the element is complete.
|
||||
// If neither is set, the element is incomplete.
|
||||
type Key_PathElement struct {
|
||||
// The kind of the entity.
|
||||
// A kind matching regex `__.*__` is reserved/read-only.
|
||||
// A kind must not contain more than 1500 bytes when UTF-8 encoded.
|
||||
// Cannot be `""`.
|
||||
Kind string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"`
|
||||
// The type of ID.
|
||||
//
|
||||
// Types that are valid to be assigned to IdType:
|
||||
// *Key_PathElement_Id
|
||||
// *Key_PathElement_Name
|
||||
IdType isKey_PathElement_IdType `protobuf_oneof:"id_type"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Key_PathElement) Reset() { *m = Key_PathElement{} }
|
||||
func (m *Key_PathElement) String() string { return proto.CompactTextString(m) }
|
||||
func (*Key_PathElement) ProtoMessage() {}
|
||||
func (*Key_PathElement) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ecbfdafa45100300, []int{1, 0}
|
||||
}
|
||||
|
||||
func (m *Key_PathElement) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Key_PathElement.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Key_PathElement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Key_PathElement.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Key_PathElement) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Key_PathElement.Merge(m, src)
|
||||
}
|
||||
func (m *Key_PathElement) XXX_Size() int {
|
||||
return xxx_messageInfo_Key_PathElement.Size(m)
|
||||
}
|
||||
func (m *Key_PathElement) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Key_PathElement.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Key_PathElement proto.InternalMessageInfo
|
||||
|
||||
func (m *Key_PathElement) GetKind() string {
|
||||
if m != nil {
|
||||
return m.Kind
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type isKey_PathElement_IdType interface {
|
||||
isKey_PathElement_IdType()
|
||||
}
|
||||
|
||||
type Key_PathElement_Id struct {
|
||||
Id int64 `protobuf:"varint,2,opt,name=id,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Key_PathElement_Name struct {
|
||||
Name string `protobuf:"bytes,3,opt,name=name,proto3,oneof"`
|
||||
}
|
||||
|
||||
func (*Key_PathElement_Id) isKey_PathElement_IdType() {}
|
||||
|
||||
func (*Key_PathElement_Name) isKey_PathElement_IdType() {}
|
||||
|
||||
func (m *Key_PathElement) GetIdType() isKey_PathElement_IdType {
|
||||
if m != nil {
|
||||
return m.IdType
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Key_PathElement) GetId() int64 {
|
||||
if x, ok := m.GetIdType().(*Key_PathElement_Id); ok {
|
||||
return x.Id
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Key_PathElement) GetName() string {
|
||||
if x, ok := m.GetIdType().(*Key_PathElement_Name); ok {
|
||||
return x.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// XXX_OneofFuncs is for the internal use of the proto package.
|
||||
func (*Key_PathElement) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
|
||||
return _Key_PathElement_OneofMarshaler, _Key_PathElement_OneofUnmarshaler, _Key_PathElement_OneofSizer, []interface{}{
|
||||
(*Key_PathElement_Id)(nil),
|
||||
(*Key_PathElement_Name)(nil),
|
||||
}
|
||||
}
|
||||
|
||||
func _Key_PathElement_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
||||
m := msg.(*Key_PathElement)
|
||||
// id_type
|
||||
switch x := m.IdType.(type) {
|
||||
case *Key_PathElement_Id:
|
||||
b.EncodeVarint(2<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(uint64(x.Id))
|
||||
case *Key_PathElement_Name:
|
||||
b.EncodeVarint(3<<3 | proto.WireBytes)
|
||||
b.EncodeStringBytes(x.Name)
|
||||
case nil:
|
||||
default:
|
||||
return fmt.Errorf("Key_PathElement.IdType has unexpected type %T", x)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func _Key_PathElement_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
||||
m := msg.(*Key_PathElement)
|
||||
switch tag {
|
||||
case 2: // id_type.id
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.IdType = &Key_PathElement_Id{int64(x)}
|
||||
return true, err
|
||||
case 3: // id_type.name
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeStringBytes()
|
||||
m.IdType = &Key_PathElement_Name{x}
|
||||
return true, err
|
||||
default:
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
|
||||
func _Key_PathElement_OneofSizer(msg proto.Message) (n int) {
|
||||
m := msg.(*Key_PathElement)
|
||||
// id_type
|
||||
switch x := m.IdType.(type) {
|
||||
case *Key_PathElement_Id:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(x.Id))
|
||||
case *Key_PathElement_Name:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(len(x.Name)))
|
||||
n += len(x.Name)
|
||||
case nil:
|
||||
default:
|
||||
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
// An array value.
|
||||
type ArrayValue struct {
|
||||
// Values in the array.
|
||||
// The order of this array may not be preserved if it contains a mix of
|
||||
// indexed and unindexed values.
|
||||
Values []*Value `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ArrayValue) Reset() { *m = ArrayValue{} }
|
||||
func (m *ArrayValue) String() string { return proto.CompactTextString(m) }
|
||||
func (*ArrayValue) ProtoMessage() {}
|
||||
func (*ArrayValue) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ecbfdafa45100300, []int{2}
|
||||
}
|
||||
|
||||
func (m *ArrayValue) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ArrayValue.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ArrayValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ArrayValue.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ArrayValue) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ArrayValue.Merge(m, src)
|
||||
}
|
||||
func (m *ArrayValue) XXX_Size() int {
|
||||
return xxx_messageInfo_ArrayValue.Size(m)
|
||||
}
|
||||
func (m *ArrayValue) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ArrayValue.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ArrayValue proto.InternalMessageInfo
|
||||
|
||||
func (m *ArrayValue) GetValues() []*Value {
|
||||
if m != nil {
|
||||
return m.Values
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A message that can hold any of the supported value types and associated
|
||||
// metadata.
|
||||
type Value struct {
|
||||
// Must have a value set.
|
||||
//
|
||||
// Types that are valid to be assigned to ValueType:
|
||||
// *Value_NullValue
|
||||
// *Value_BooleanValue
|
||||
// *Value_IntegerValue
|
||||
// *Value_DoubleValue
|
||||
// *Value_TimestampValue
|
||||
// *Value_KeyValue
|
||||
// *Value_StringValue
|
||||
// *Value_BlobValue
|
||||
// *Value_GeoPointValue
|
||||
// *Value_EntityValue
|
||||
// *Value_ArrayValue
|
||||
ValueType isValue_ValueType `protobuf_oneof:"value_type"`
|
||||
// The `meaning` field should only be populated for backwards compatibility.
|
||||
Meaning int32 `protobuf:"varint,14,opt,name=meaning,proto3" json:"meaning,omitempty"`
|
||||
// If the value should be excluded from all indexes including those defined
|
||||
// explicitly.
|
||||
ExcludeFromIndexes bool `protobuf:"varint,19,opt,name=exclude_from_indexes,json=excludeFromIndexes,proto3" json:"exclude_from_indexes,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Value) Reset() { *m = Value{} }
|
||||
func (m *Value) String() string { return proto.CompactTextString(m) }
|
||||
func (*Value) ProtoMessage() {}
|
||||
func (*Value) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ecbfdafa45100300, []int{3}
|
||||
}
|
||||
|
||||
func (m *Value) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Value.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Value.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Value) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Value.Merge(m, src)
|
||||
}
|
||||
func (m *Value) XXX_Size() int {
|
||||
return xxx_messageInfo_Value.Size(m)
|
||||
}
|
||||
func (m *Value) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Value.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Value proto.InternalMessageInfo
|
||||
|
||||
type isValue_ValueType interface {
|
||||
isValue_ValueType()
|
||||
}
|
||||
|
||||
type Value_NullValue struct {
|
||||
NullValue _struct.NullValue `protobuf:"varint,11,opt,name=null_value,json=nullValue,proto3,enum=google.protobuf.NullValue,oneof"`
|
||||
}
|
||||
|
||||
type Value_BooleanValue struct {
|
||||
BooleanValue bool `protobuf:"varint,1,opt,name=boolean_value,json=booleanValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_IntegerValue struct {
|
||||
IntegerValue int64 `protobuf:"varint,2,opt,name=integer_value,json=integerValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_DoubleValue struct {
|
||||
DoubleValue float64 `protobuf:"fixed64,3,opt,name=double_value,json=doubleValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_TimestampValue struct {
|
||||
TimestampValue *timestamp.Timestamp `protobuf:"bytes,10,opt,name=timestamp_value,json=timestampValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_KeyValue struct {
|
||||
KeyValue *Key `protobuf:"bytes,5,opt,name=key_value,json=keyValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_StringValue struct {
|
||||
StringValue string `protobuf:"bytes,17,opt,name=string_value,json=stringValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_BlobValue struct {
|
||||
BlobValue []byte `protobuf:"bytes,18,opt,name=blob_value,json=blobValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_GeoPointValue struct {
|
||||
GeoPointValue *latlng.LatLng `protobuf:"bytes,8,opt,name=geo_point_value,json=geoPointValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_EntityValue struct {
|
||||
EntityValue *Entity `protobuf:"bytes,6,opt,name=entity_value,json=entityValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_ArrayValue struct {
|
||||
ArrayValue *ArrayValue `protobuf:"bytes,9,opt,name=array_value,json=arrayValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
func (*Value_NullValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_BooleanValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_IntegerValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_DoubleValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_TimestampValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_KeyValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_StringValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_BlobValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_GeoPointValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_EntityValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_ArrayValue) isValue_ValueType() {}
|
||||
|
||||
func (m *Value) GetValueType() isValue_ValueType {
|
||||
if m != nil {
|
||||
return m.ValueType
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetNullValue() _struct.NullValue {
|
||||
if x, ok := m.GetValueType().(*Value_NullValue); ok {
|
||||
return x.NullValue
|
||||
}
|
||||
return _struct.NullValue_NULL_VALUE
|
||||
}
|
||||
|
||||
func (m *Value) GetBooleanValue() bool {
|
||||
if x, ok := m.GetValueType().(*Value_BooleanValue); ok {
|
||||
return x.BooleanValue
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *Value) GetIntegerValue() int64 {
|
||||
if x, ok := m.GetValueType().(*Value_IntegerValue); ok {
|
||||
return x.IntegerValue
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Value) GetDoubleValue() float64 {
|
||||
if x, ok := m.GetValueType().(*Value_DoubleValue); ok {
|
||||
return x.DoubleValue
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Value) GetTimestampValue() *timestamp.Timestamp {
|
||||
if x, ok := m.GetValueType().(*Value_TimestampValue); ok {
|
||||
return x.TimestampValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetKeyValue() *Key {
|
||||
if x, ok := m.GetValueType().(*Value_KeyValue); ok {
|
||||
return x.KeyValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetStringValue() string {
|
||||
if x, ok := m.GetValueType().(*Value_StringValue); ok {
|
||||
return x.StringValue
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Value) GetBlobValue() []byte {
|
||||
if x, ok := m.GetValueType().(*Value_BlobValue); ok {
|
||||
return x.BlobValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetGeoPointValue() *latlng.LatLng {
|
||||
if x, ok := m.GetValueType().(*Value_GeoPointValue); ok {
|
||||
return x.GeoPointValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetEntityValue() *Entity {
|
||||
if x, ok := m.GetValueType().(*Value_EntityValue); ok {
|
||||
return x.EntityValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetArrayValue() *ArrayValue {
|
||||
if x, ok := m.GetValueType().(*Value_ArrayValue); ok {
|
||||
return x.ArrayValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetMeaning() int32 {
|
||||
if m != nil {
|
||||
return m.Meaning
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Value) GetExcludeFromIndexes() bool {
|
||||
if m != nil {
|
||||
return m.ExcludeFromIndexes
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// XXX_OneofFuncs is for the internal use of the proto package.
|
||||
func (*Value) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
|
||||
return _Value_OneofMarshaler, _Value_OneofUnmarshaler, _Value_OneofSizer, []interface{}{
|
||||
(*Value_NullValue)(nil),
|
||||
(*Value_BooleanValue)(nil),
|
||||
(*Value_IntegerValue)(nil),
|
||||
(*Value_DoubleValue)(nil),
|
||||
(*Value_TimestampValue)(nil),
|
||||
(*Value_KeyValue)(nil),
|
||||
(*Value_StringValue)(nil),
|
||||
(*Value_BlobValue)(nil),
|
||||
(*Value_GeoPointValue)(nil),
|
||||
(*Value_EntityValue)(nil),
|
||||
(*Value_ArrayValue)(nil),
|
||||
}
|
||||
}
|
||||
|
||||
func _Value_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
||||
m := msg.(*Value)
|
||||
// value_type
|
||||
switch x := m.ValueType.(type) {
|
||||
case *Value_NullValue:
|
||||
b.EncodeVarint(11<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(uint64(x.NullValue))
|
||||
case *Value_BooleanValue:
|
||||
t := uint64(0)
|
||||
if x.BooleanValue {
|
||||
t = 1
|
||||
}
|
||||
b.EncodeVarint(1<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(t)
|
||||
case *Value_IntegerValue:
|
||||
b.EncodeVarint(2<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(uint64(x.IntegerValue))
|
||||
case *Value_DoubleValue:
|
||||
b.EncodeVarint(3<<3 | proto.WireFixed64)
|
||||
b.EncodeFixed64(math.Float64bits(x.DoubleValue))
|
||||
case *Value_TimestampValue:
|
||||
b.EncodeVarint(10<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.TimestampValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Value_KeyValue:
|
||||
b.EncodeVarint(5<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.KeyValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Value_StringValue:
|
||||
b.EncodeVarint(17<<3 | proto.WireBytes)
|
||||
b.EncodeStringBytes(x.StringValue)
|
||||
case *Value_BlobValue:
|
||||
b.EncodeVarint(18<<3 | proto.WireBytes)
|
||||
b.EncodeRawBytes(x.BlobValue)
|
||||
case *Value_GeoPointValue:
|
||||
b.EncodeVarint(8<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.GeoPointValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Value_EntityValue:
|
||||
b.EncodeVarint(6<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.EntityValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Value_ArrayValue:
|
||||
b.EncodeVarint(9<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.ArrayValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case nil:
|
||||
default:
|
||||
return fmt.Errorf("Value.ValueType has unexpected type %T", x)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func _Value_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
||||
m := msg.(*Value)
|
||||
switch tag {
|
||||
case 11: // value_type.null_value
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.ValueType = &Value_NullValue{_struct.NullValue(x)}
|
||||
return true, err
|
||||
case 1: // value_type.boolean_value
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.ValueType = &Value_BooleanValue{x != 0}
|
||||
return true, err
|
||||
case 2: // value_type.integer_value
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.ValueType = &Value_IntegerValue{int64(x)}
|
||||
return true, err
|
||||
case 3: // value_type.double_value
|
||||
if wire != proto.WireFixed64 {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeFixed64()
|
||||
m.ValueType = &Value_DoubleValue{math.Float64frombits(x)}
|
||||
return true, err
|
||||
case 10: // value_type.timestamp_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(timestamp.Timestamp)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_TimestampValue{msg}
|
||||
return true, err
|
||||
case 5: // value_type.key_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Key)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_KeyValue{msg}
|
||||
return true, err
|
||||
case 17: // value_type.string_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeStringBytes()
|
||||
m.ValueType = &Value_StringValue{x}
|
||||
return true, err
|
||||
case 18: // value_type.blob_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeRawBytes(true)
|
||||
m.ValueType = &Value_BlobValue{x}
|
||||
return true, err
|
||||
case 8: // value_type.geo_point_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(latlng.LatLng)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_GeoPointValue{msg}
|
||||
return true, err
|
||||
case 6: // value_type.entity_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Entity)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_EntityValue{msg}
|
||||
return true, err
|
||||
case 9: // value_type.array_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(ArrayValue)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_ArrayValue{msg}
|
||||
return true, err
|
||||
default:
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
|
||||
func _Value_OneofSizer(msg proto.Message) (n int) {
|
||||
m := msg.(*Value)
|
||||
// value_type
|
||||
switch x := m.ValueType.(type) {
|
||||
case *Value_NullValue:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(x.NullValue))
|
||||
case *Value_BooleanValue:
|
||||
n += 1 // tag and wire
|
||||
n += 1
|
||||
case *Value_IntegerValue:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(x.IntegerValue))
|
||||
case *Value_DoubleValue:
|
||||
n += 1 // tag and wire
|
||||
n += 8
|
||||
case *Value_TimestampValue:
|
||||
s := proto.Size(x.TimestampValue)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *Value_KeyValue:
|
||||
s := proto.Size(x.KeyValue)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *Value_StringValue:
|
||||
n += 2 // tag and wire
|
||||
n += proto.SizeVarint(uint64(len(x.StringValue)))
|
||||
n += len(x.StringValue)
|
||||
case *Value_BlobValue:
|
||||
n += 2 // tag and wire
|
||||
n += proto.SizeVarint(uint64(len(x.BlobValue)))
|
||||
n += len(x.BlobValue)
|
||||
case *Value_GeoPointValue:
|
||||
s := proto.Size(x.GeoPointValue)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *Value_EntityValue:
|
||||
s := proto.Size(x.EntityValue)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *Value_ArrayValue:
|
||||
s := proto.Size(x.ArrayValue)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case nil:
|
||||
default:
|
||||
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
// A Datastore data object.
|
||||
//
|
||||
// An entity is limited to 1 megabyte when stored. That _roughly_
|
||||
// corresponds to a limit of 1 megabyte for the serialized form of this
|
||||
// message.
|
||||
type Entity struct {
|
||||
// The entity's key.
|
||||
//
|
||||
// An entity must have a key, unless otherwise documented (for example,
|
||||
// an entity in `Value.entity_value` may have no key).
|
||||
// An entity's kind is its key path's last element's kind,
|
||||
// or null if it has no key.
|
||||
Key *Key `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
||||
// The entity's properties.
|
||||
// The map's keys are property names.
|
||||
// A property name matching regex `__.*__` is reserved.
|
||||
// A reserved property name is forbidden in certain documented contexts.
|
||||
// The name must not contain more than 500 characters.
|
||||
// The name cannot be `""`.
|
||||
Properties map[string]*Value `protobuf:"bytes,3,rep,name=properties,proto3" json:"properties,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Entity) Reset() { *m = Entity{} }
|
||||
func (m *Entity) String() string { return proto.CompactTextString(m) }
|
||||
func (*Entity) ProtoMessage() {}
|
||||
func (*Entity) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ecbfdafa45100300, []int{4}
|
||||
}
|
||||
|
||||
func (m *Entity) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Entity.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Entity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Entity.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Entity) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Entity.Merge(m, src)
|
||||
}
|
||||
func (m *Entity) XXX_Size() int {
|
||||
return xxx_messageInfo_Entity.Size(m)
|
||||
}
|
||||
func (m *Entity) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Entity.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Entity proto.InternalMessageInfo
|
||||
|
||||
func (m *Entity) GetKey() *Key {
|
||||
if m != nil {
|
||||
return m.Key
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Entity) GetProperties() map[string]*Value {
|
||||
if m != nil {
|
||||
return m.Properties
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*PartitionId)(nil), "google.datastore.v1.PartitionId")
|
||||
proto.RegisterType((*Key)(nil), "google.datastore.v1.Key")
|
||||
proto.RegisterType((*Key_PathElement)(nil), "google.datastore.v1.Key.PathElement")
|
||||
proto.RegisterType((*ArrayValue)(nil), "google.datastore.v1.ArrayValue")
|
||||
proto.RegisterType((*Value)(nil), "google.datastore.v1.Value")
|
||||
proto.RegisterType((*Entity)(nil), "google.datastore.v1.Entity")
|
||||
proto.RegisterMapType((map[string]*Value)(nil), "google.datastore.v1.Entity.PropertiesEntry")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("google/datastore/v1/entity.proto", fileDescriptor_ecbfdafa45100300) }
|
||||
|
||||
var fileDescriptor_ecbfdafa45100300 = []byte{
|
||||
// 780 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x94, 0xff, 0x6e, 0xdc, 0x44,
|
||||
0x10, 0xc7, 0xed, 0xbb, 0x5c, 0x1a, 0x8f, 0xdd, 0xa4, 0x6c, 0x2a, 0x61, 0x02, 0x28, 0x26, 0x80,
|
||||
0x74, 0x02, 0xc9, 0x6e, 0xc2, 0x1f, 0x54, 0x14, 0xa4, 0x72, 0x25, 0xe0, 0x28, 0x15, 0x9c, 0x56,
|
||||
0x55, 0x24, 0x50, 0xa4, 0xd3, 0xde, 0x79, 0xeb, 0x2e, 0x67, 0xef, 0x5a, 0xf6, 0x3a, 0xaa, 0xdf,
|
||||
0x05, 0xf1, 0x00, 0x3c, 0x0a, 0x8f, 0x80, 0x78, 0x18, 0xb4, 0x3f, 0xec, 0x0b, 0xed, 0x35, 0xff,
|
||||
0x79, 0x67, 0x3e, 0xdf, 0xd9, 0xef, 0xec, 0xce, 0x1a, 0xa2, 0x5c, 0x88, 0xbc, 0xa0, 0x49, 0x46,
|
||||
0x24, 0x69, 0xa4, 0xa8, 0x69, 0x72, 0x73, 0x9a, 0x50, 0x2e, 0x99, 0xec, 0xe2, 0xaa, 0x16, 0x52,
|
||||
0xa0, 0x43, 0x43, 0xc4, 0x03, 0x11, 0xdf, 0x9c, 0x1e, 0x7d, 0x64, 0x65, 0xa4, 0x62, 0x09, 0xe1,
|
||||
0x5c, 0x48, 0x22, 0x99, 0xe0, 0x8d, 0x91, 0x0c, 0x59, 0xbd, 0x5a, 0xb6, 0x2f, 0x93, 0x46, 0xd6,
|
||||
0xed, 0x4a, 0xda, 0xec, 0xf1, 0x9b, 0x59, 0xc9, 0x4a, 0xda, 0x48, 0x52, 0x56, 0x16, 0x08, 0x2d,
|
||||
0x20, 0xbb, 0x8a, 0x26, 0x05, 0x91, 0x05, 0xcf, 0x4d, 0xe6, 0xe4, 0x17, 0xf0, 0xe7, 0xa4, 0x96,
|
||||
0x4c, 0x6d, 0x76, 0x91, 0xa1, 0x8f, 0x01, 0xaa, 0x5a, 0xfc, 0x4e, 0x57, 0x72, 0xc1, 0xb2, 0x70,
|
||||
0x14, 0xb9, 0x53, 0x0f, 0x7b, 0x36, 0x72, 0x91, 0xa1, 0x4f, 0x20, 0xe0, 0xa4, 0xa4, 0x4d, 0x45,
|
||||
0x56, 0x54, 0x01, 0x3b, 0x1a, 0xf0, 0x87, 0xd8, 0x45, 0x76, 0xf2, 0x8f, 0x0b, 0xe3, 0x4b, 0xda,
|
||||
0xa1, 0x67, 0x10, 0x54, 0x7d, 0x61, 0x85, 0xba, 0x91, 0x3b, 0xf5, 0xcf, 0xa2, 0x78, 0x4b, 0xef,
|
||||
0xf1, 0x2d, 0x07, 0xd8, 0xaf, 0x6e, 0xd9, 0x79, 0x0c, 0x3b, 0x15, 0x91, 0xaf, 0xc2, 0x51, 0x34,
|
||||
0x9e, 0xfa, 0x67, 0x9f, 0x6d, 0x15, 0x5f, 0xd2, 0x2e, 0x9e, 0x13, 0xf9, 0xea, 0xbc, 0xa0, 0x25,
|
||||
0xe5, 0x12, 0x6b, 0xc5, 0xd1, 0x0b, 0xd5, 0xd7, 0x10, 0x44, 0x08, 0x76, 0xd6, 0x8c, 0x1b, 0x17,
|
||||
0x1e, 0xd6, 0xdf, 0xe8, 0x01, 0x8c, 0x6c, 0x8f, 0xe3, 0xd4, 0xc1, 0x23, 0x96, 0xa1, 0x87, 0xb0,
|
||||
0xa3, 0x5a, 0x09, 0xc7, 0x8a, 0x4a, 0x1d, 0xac, 0x57, 0x33, 0x0f, 0xee, 0xb1, 0x6c, 0xa1, 0x8e,
|
||||
0xee, 0xe4, 0x29, 0xc0, 0xf7, 0x75, 0x4d, 0xba, 0x2b, 0x52, 0xb4, 0x14, 0x9d, 0xc1, 0xee, 0x8d,
|
||||
0xfa, 0x68, 0x42, 0x57, 0xfb, 0x3b, 0xda, 0xea, 0x4f, 0xb3, 0xd8, 0x92, 0x27, 0x7f, 0x4c, 0x60,
|
||||
0x62, 0xd4, 0x4f, 0x00, 0x78, 0x5b, 0x14, 0x0b, 0x9d, 0x08, 0xfd, 0xc8, 0x9d, 0xee, 0x6f, 0x2a,
|
||||
0xf4, 0x37, 0x19, 0xff, 0xdc, 0x16, 0x85, 0xe6, 0x53, 0x07, 0x7b, 0xbc, 0x5f, 0xa0, 0xcf, 0xe1,
|
||||
0xfe, 0x52, 0x88, 0x82, 0x12, 0x6e, 0xf5, 0xaa, 0xb1, 0xbd, 0xd4, 0xc1, 0x81, 0x0d, 0x0f, 0x18,
|
||||
0xe3, 0x92, 0xe6, 0xb4, 0xb6, 0x58, 0xdf, 0x6d, 0x60, 0xc3, 0x06, 0xfb, 0x14, 0x82, 0x4c, 0xb4,
|
||||
0xcb, 0x82, 0x5a, 0x4a, 0xf5, 0xef, 0xa6, 0x0e, 0xf6, 0x4d, 0xd4, 0x40, 0xe7, 0x70, 0x30, 0x8c,
|
||||
0x95, 0xe5, 0x40, 0xdf, 0xe9, 0xdb, 0xa6, 0x5f, 0xf4, 0x5c, 0xea, 0xe0, 0xfd, 0x41, 0x64, 0xca,
|
||||
0x7c, 0x0d, 0xde, 0x9a, 0x76, 0xb6, 0xc0, 0x44, 0x17, 0x08, 0xdf, 0x75, 0xaf, 0xa9, 0x83, 0xf7,
|
||||
0xd6, 0xb4, 0x1b, 0x4c, 0x36, 0xb2, 0x66, 0x3c, 0xb7, 0xda, 0xf7, 0xec, 0x25, 0xf9, 0x26, 0x6a,
|
||||
0xa0, 0x63, 0x80, 0x65, 0x21, 0x96, 0x16, 0x41, 0x91, 0x3b, 0x0d, 0xd4, 0xc1, 0xa9, 0x98, 0x01,
|
||||
0xbe, 0x83, 0x83, 0x9c, 0x8a, 0x45, 0x25, 0x18, 0x97, 0x96, 0xda, 0xd3, 0x26, 0x0e, 0x7b, 0x13,
|
||||
0xea, 0xa2, 0xe3, 0xe7, 0x44, 0x3e, 0xe7, 0x79, 0xea, 0xe0, 0xfb, 0x39, 0x15, 0x73, 0x05, 0x1b,
|
||||
0xf9, 0x53, 0x08, 0xcc, 0x53, 0xb6, 0xda, 0x5d, 0xad, 0xfd, 0x70, 0x6b, 0x03, 0xe7, 0x1a, 0x54,
|
||||
0x0e, 0x8d, 0xc4, 0x54, 0x98, 0x81, 0x4f, 0xd4, 0x08, 0xd9, 0x02, 0x9e, 0x2e, 0x70, 0xbc, 0xb5,
|
||||
0xc0, 0x66, 0xd4, 0x52, 0x07, 0x03, 0xd9, 0x0c, 0x5e, 0x08, 0xf7, 0x4a, 0x4a, 0x38, 0xe3, 0x79,
|
||||
0xb8, 0x1f, 0xb9, 0xd3, 0x09, 0xee, 0x97, 0xe8, 0x11, 0x3c, 0xa4, 0xaf, 0x57, 0x45, 0x9b, 0xd1,
|
||||
0xc5, 0xcb, 0x5a, 0x94, 0x0b, 0xc6, 0x33, 0xfa, 0x9a, 0x36, 0xe1, 0xa1, 0x1a, 0x0f, 0x8c, 0x6c,
|
||||
0xee, 0xc7, 0x5a, 0x94, 0x17, 0x26, 0x33, 0x0b, 0x00, 0xb4, 0x13, 0x33, 0xe0, 0xff, 0xba, 0xb0,
|
||||
0x6b, 0x7c, 0xa3, 0x2f, 0x60, 0xbc, 0xa6, 0x9d, 0x7d, 0xb7, 0xef, 0xbc, 0x22, 0xac, 0x20, 0x74,
|
||||
0xa9, 0x7f, 0x1b, 0x15, 0xad, 0x25, 0xa3, 0x4d, 0x38, 0xd6, 0xaf, 0xe1, 0xcb, 0x3b, 0x0e, 0x25,
|
||||
0x9e, 0x0f, 0xf4, 0x39, 0x97, 0x75, 0x87, 0x6f, 0xc9, 0x8f, 0x7e, 0x85, 0x83, 0x37, 0xd2, 0xe8,
|
||||
0xc1, 0xc6, 0x8b, 0x67, 0x76, 0x7c, 0x04, 0x93, 0xcd, 0x44, 0xdf, 0xfd, 0xf4, 0x0c, 0xf8, 0xcd,
|
||||
0xe8, 0xb1, 0x3b, 0xfb, 0xd3, 0x85, 0xf7, 0x57, 0xa2, 0xdc, 0x06, 0xcf, 0x7c, 0x63, 0x6d, 0xae,
|
||||
0x86, 0x78, 0xee, 0xfe, 0xf6, 0xad, 0x65, 0x72, 0x51, 0x10, 0x9e, 0xc7, 0xa2, 0xce, 0x93, 0x9c,
|
||||
0x72, 0x3d, 0xe2, 0x89, 0x49, 0x91, 0x8a, 0x35, 0xff, 0xfb, 0xcb, 0x3f, 0x19, 0x16, 0x7f, 0x8d,
|
||||
0x3e, 0xf8, 0xc9, 0xc8, 0x9f, 0x15, 0xa2, 0xcd, 0xe2, 0x1f, 0x86, 0x8d, 0xae, 0x4e, 0xff, 0xee,
|
||||
0x73, 0xd7, 0x3a, 0x77, 0x3d, 0xe4, 0xae, 0xaf, 0x4e, 0x97, 0xbb, 0x7a, 0x83, 0xaf, 0xfe, 0x0b,
|
||||
0x00, 0x00, 0xff, 0xff, 0xf3, 0xdd, 0x11, 0x96, 0x45, 0x06, 0x00, 0x00,
|
||||
}
|
1277
vendor/google.golang.org/genproto/googleapis/datastore/v1/query.pb.go
generated
vendored
Normal file
1277
vendor/google.golang.org/genproto/googleapis/datastore/v1/query.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
2132
vendor/google.golang.org/genproto/googleapis/datastore/v1beta3/datastore.pb.go
generated
vendored
Normal file
2132
vendor/google.golang.org/genproto/googleapis/datastore/v1beta3/datastore.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
935
vendor/google.golang.org/genproto/googleapis/datastore/v1beta3/entity.pb.go
generated
vendored
Normal file
935
vendor/google.golang.org/genproto/googleapis/datastore/v1beta3/entity.pb.go
generated
vendored
Normal file
|
@ -0,0 +1,935 @@
|
|||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/datastore/v1beta3/entity.proto
|
||||
|
||||
package datastore
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
_struct "github.com/golang/protobuf/ptypes/struct"
|
||||
timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
||||
_ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
latlng "google.golang.org/genproto/googleapis/type/latlng"
|
||||
math "math"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
// A partition ID identifies a grouping of entities. The grouping is always
|
||||
// by project and namespace, however the namespace ID may be empty.
|
||||
//
|
||||
// A partition ID contains several dimensions:
|
||||
// project ID and namespace ID.
|
||||
//
|
||||
// Partition dimensions:
|
||||
//
|
||||
// - May be `""`.
|
||||
// - Must be valid UTF-8 bytes.
|
||||
// - Must have values that match regex `[A-Za-z\d\.\-_]{1,100}`
|
||||
// If the value of any dimension matches regex `__.*__`, the partition is
|
||||
// reserved/read-only.
|
||||
// A reserved/read-only partition ID is forbidden in certain documented
|
||||
// contexts.
|
||||
//
|
||||
// Foreign partition IDs (in which the project ID does
|
||||
// not match the context project ID ) are discouraged.
|
||||
// Reads and writes of foreign partition IDs may fail if the project is not in an active state.
|
||||
type PartitionId struct {
|
||||
// The ID of the project to which the entities belong.
|
||||
ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
||||
// If not empty, the ID of the namespace to which the entities belong.
|
||||
NamespaceId string `protobuf:"bytes,4,opt,name=namespace_id,json=namespaceId,proto3" json:"namespace_id,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *PartitionId) Reset() { *m = PartitionId{} }
|
||||
func (m *PartitionId) String() string { return proto.CompactTextString(m) }
|
||||
func (*PartitionId) ProtoMessage() {}
|
||||
func (*PartitionId) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_66499b178484a7ed, []int{0}
|
||||
}
|
||||
|
||||
func (m *PartitionId) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_PartitionId.Unmarshal(m, b)
|
||||
}
|
||||
func (m *PartitionId) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_PartitionId.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *PartitionId) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_PartitionId.Merge(m, src)
|
||||
}
|
||||
func (m *PartitionId) XXX_Size() int {
|
||||
return xxx_messageInfo_PartitionId.Size(m)
|
||||
}
|
||||
func (m *PartitionId) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_PartitionId.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_PartitionId proto.InternalMessageInfo
|
||||
|
||||
func (m *PartitionId) GetProjectId() string {
|
||||
if m != nil {
|
||||
return m.ProjectId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *PartitionId) GetNamespaceId() string {
|
||||
if m != nil {
|
||||
return m.NamespaceId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// A unique identifier for an entity.
|
||||
// If a key's partition ID or any of its path kinds or names are
|
||||
// reserved/read-only, the key is reserved/read-only.
|
||||
// A reserved/read-only key is forbidden in certain documented contexts.
|
||||
type Key struct {
|
||||
// Entities are partitioned into subsets, currently identified by a project
|
||||
// ID and namespace ID.
|
||||
// Queries are scoped to a single partition.
|
||||
PartitionId *PartitionId `protobuf:"bytes,1,opt,name=partition_id,json=partitionId,proto3" json:"partition_id,omitempty"`
|
||||
// The entity path.
|
||||
// An entity path consists of one or more elements composed of a kind and a
|
||||
// string or numerical identifier, which identify entities. The first
|
||||
// element identifies a _root entity_, the second element identifies
|
||||
// a _child_ of the root entity, the third element identifies a child of the
|
||||
// second entity, and so forth. The entities identified by all prefixes of
|
||||
// the path are called the element's _ancestors_.
|
||||
//
|
||||
// An entity path is always fully complete: *all* of the entity's ancestors
|
||||
// are required to be in the path along with the entity identifier itself.
|
||||
// The only exception is that in some documented cases, the identifier in the
|
||||
// last path element (for the entity) itself may be omitted. For example,
|
||||
// the last path element of the key of `Mutation.insert` may have no
|
||||
// identifier.
|
||||
//
|
||||
// A path can never be empty, and a path can have at most 100 elements.
|
||||
Path []*Key_PathElement `protobuf:"bytes,2,rep,name=path,proto3" json:"path,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Key) Reset() { *m = Key{} }
|
||||
func (m *Key) String() string { return proto.CompactTextString(m) }
|
||||
func (*Key) ProtoMessage() {}
|
||||
func (*Key) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_66499b178484a7ed, []int{1}
|
||||
}
|
||||
|
||||
func (m *Key) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Key.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Key) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Key.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Key) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Key.Merge(m, src)
|
||||
}
|
||||
func (m *Key) XXX_Size() int {
|
||||
return xxx_messageInfo_Key.Size(m)
|
||||
}
|
||||
func (m *Key) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Key.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Key proto.InternalMessageInfo
|
||||
|
||||
func (m *Key) GetPartitionId() *PartitionId {
|
||||
if m != nil {
|
||||
return m.PartitionId
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Key) GetPath() []*Key_PathElement {
|
||||
if m != nil {
|
||||
return m.Path
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A (kind, ID/name) pair used to construct a key path.
|
||||
//
|
||||
// If either name or ID is set, the element is complete.
|
||||
// If neither is set, the element is incomplete.
|
||||
type Key_PathElement struct {
|
||||
// The kind of the entity.
|
||||
// A kind matching regex `__.*__` is reserved/read-only.
|
||||
// A kind must not contain more than 1500 bytes when UTF-8 encoded.
|
||||
// Cannot be `""`.
|
||||
Kind string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"`
|
||||
// The type of ID.
|
||||
//
|
||||
// Types that are valid to be assigned to IdType:
|
||||
// *Key_PathElement_Id
|
||||
// *Key_PathElement_Name
|
||||
IdType isKey_PathElement_IdType `protobuf_oneof:"id_type"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Key_PathElement) Reset() { *m = Key_PathElement{} }
|
||||
func (m *Key_PathElement) String() string { return proto.CompactTextString(m) }
|
||||
func (*Key_PathElement) ProtoMessage() {}
|
||||
func (*Key_PathElement) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_66499b178484a7ed, []int{1, 0}
|
||||
}
|
||||
|
||||
func (m *Key_PathElement) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Key_PathElement.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Key_PathElement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Key_PathElement.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Key_PathElement) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Key_PathElement.Merge(m, src)
|
||||
}
|
||||
func (m *Key_PathElement) XXX_Size() int {
|
||||
return xxx_messageInfo_Key_PathElement.Size(m)
|
||||
}
|
||||
func (m *Key_PathElement) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Key_PathElement.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Key_PathElement proto.InternalMessageInfo
|
||||
|
||||
func (m *Key_PathElement) GetKind() string {
|
||||
if m != nil {
|
||||
return m.Kind
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type isKey_PathElement_IdType interface {
|
||||
isKey_PathElement_IdType()
|
||||
}
|
||||
|
||||
type Key_PathElement_Id struct {
|
||||
Id int64 `protobuf:"varint,2,opt,name=id,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Key_PathElement_Name struct {
|
||||
Name string `protobuf:"bytes,3,opt,name=name,proto3,oneof"`
|
||||
}
|
||||
|
||||
func (*Key_PathElement_Id) isKey_PathElement_IdType() {}
|
||||
|
||||
func (*Key_PathElement_Name) isKey_PathElement_IdType() {}
|
||||
|
||||
func (m *Key_PathElement) GetIdType() isKey_PathElement_IdType {
|
||||
if m != nil {
|
||||
return m.IdType
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Key_PathElement) GetId() int64 {
|
||||
if x, ok := m.GetIdType().(*Key_PathElement_Id); ok {
|
||||
return x.Id
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Key_PathElement) GetName() string {
|
||||
if x, ok := m.GetIdType().(*Key_PathElement_Name); ok {
|
||||
return x.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// XXX_OneofFuncs is for the internal use of the proto package.
|
||||
func (*Key_PathElement) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
|
||||
return _Key_PathElement_OneofMarshaler, _Key_PathElement_OneofUnmarshaler, _Key_PathElement_OneofSizer, []interface{}{
|
||||
(*Key_PathElement_Id)(nil),
|
||||
(*Key_PathElement_Name)(nil),
|
||||
}
|
||||
}
|
||||
|
||||
func _Key_PathElement_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
||||
m := msg.(*Key_PathElement)
|
||||
// id_type
|
||||
switch x := m.IdType.(type) {
|
||||
case *Key_PathElement_Id:
|
||||
b.EncodeVarint(2<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(uint64(x.Id))
|
||||
case *Key_PathElement_Name:
|
||||
b.EncodeVarint(3<<3 | proto.WireBytes)
|
||||
b.EncodeStringBytes(x.Name)
|
||||
case nil:
|
||||
default:
|
||||
return fmt.Errorf("Key_PathElement.IdType has unexpected type %T", x)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func _Key_PathElement_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
||||
m := msg.(*Key_PathElement)
|
||||
switch tag {
|
||||
case 2: // id_type.id
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.IdType = &Key_PathElement_Id{int64(x)}
|
||||
return true, err
|
||||
case 3: // id_type.name
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeStringBytes()
|
||||
m.IdType = &Key_PathElement_Name{x}
|
||||
return true, err
|
||||
default:
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
|
||||
func _Key_PathElement_OneofSizer(msg proto.Message) (n int) {
|
||||
m := msg.(*Key_PathElement)
|
||||
// id_type
|
||||
switch x := m.IdType.(type) {
|
||||
case *Key_PathElement_Id:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(x.Id))
|
||||
case *Key_PathElement_Name:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(len(x.Name)))
|
||||
n += len(x.Name)
|
||||
case nil:
|
||||
default:
|
||||
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
// An array value.
|
||||
type ArrayValue struct {
|
||||
// Values in the array.
|
||||
// The order of this array may not be preserved if it contains a mix of
|
||||
// indexed and unindexed values.
|
||||
Values []*Value `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ArrayValue) Reset() { *m = ArrayValue{} }
|
||||
func (m *ArrayValue) String() string { return proto.CompactTextString(m) }
|
||||
func (*ArrayValue) ProtoMessage() {}
|
||||
func (*ArrayValue) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_66499b178484a7ed, []int{2}
|
||||
}
|
||||
|
||||
func (m *ArrayValue) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ArrayValue.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ArrayValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ArrayValue.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ArrayValue) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ArrayValue.Merge(m, src)
|
||||
}
|
||||
func (m *ArrayValue) XXX_Size() int {
|
||||
return xxx_messageInfo_ArrayValue.Size(m)
|
||||
}
|
||||
func (m *ArrayValue) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ArrayValue.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ArrayValue proto.InternalMessageInfo
|
||||
|
||||
func (m *ArrayValue) GetValues() []*Value {
|
||||
if m != nil {
|
||||
return m.Values
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A message that can hold any of the supported value types and associated
|
||||
// metadata.
|
||||
type Value struct {
|
||||
// Must have a value set.
|
||||
//
|
||||
// Types that are valid to be assigned to ValueType:
|
||||
// *Value_NullValue
|
||||
// *Value_BooleanValue
|
||||
// *Value_IntegerValue
|
||||
// *Value_DoubleValue
|
||||
// *Value_TimestampValue
|
||||
// *Value_KeyValue
|
||||
// *Value_StringValue
|
||||
// *Value_BlobValue
|
||||
// *Value_GeoPointValue
|
||||
// *Value_EntityValue
|
||||
// *Value_ArrayValue
|
||||
ValueType isValue_ValueType `protobuf_oneof:"value_type"`
|
||||
// The `meaning` field should only be populated for backwards compatibility.
|
||||
Meaning int32 `protobuf:"varint,14,opt,name=meaning,proto3" json:"meaning,omitempty"`
|
||||
// If the value should be excluded from all indexes including those defined
|
||||
// explicitly.
|
||||
ExcludeFromIndexes bool `protobuf:"varint,19,opt,name=exclude_from_indexes,json=excludeFromIndexes,proto3" json:"exclude_from_indexes,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Value) Reset() { *m = Value{} }
|
||||
func (m *Value) String() string { return proto.CompactTextString(m) }
|
||||
func (*Value) ProtoMessage() {}
|
||||
func (*Value) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_66499b178484a7ed, []int{3}
|
||||
}
|
||||
|
||||
func (m *Value) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Value.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Value.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Value) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Value.Merge(m, src)
|
||||
}
|
||||
func (m *Value) XXX_Size() int {
|
||||
return xxx_messageInfo_Value.Size(m)
|
||||
}
|
||||
func (m *Value) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Value.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Value proto.InternalMessageInfo
|
||||
|
||||
type isValue_ValueType interface {
|
||||
isValue_ValueType()
|
||||
}
|
||||
|
||||
type Value_NullValue struct {
|
||||
NullValue _struct.NullValue `protobuf:"varint,11,opt,name=null_value,json=nullValue,proto3,enum=google.protobuf.NullValue,oneof"`
|
||||
}
|
||||
|
||||
type Value_BooleanValue struct {
|
||||
BooleanValue bool `protobuf:"varint,1,opt,name=boolean_value,json=booleanValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_IntegerValue struct {
|
||||
IntegerValue int64 `protobuf:"varint,2,opt,name=integer_value,json=integerValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_DoubleValue struct {
|
||||
DoubleValue float64 `protobuf:"fixed64,3,opt,name=double_value,json=doubleValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_TimestampValue struct {
|
||||
TimestampValue *timestamp.Timestamp `protobuf:"bytes,10,opt,name=timestamp_value,json=timestampValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_KeyValue struct {
|
||||
KeyValue *Key `protobuf:"bytes,5,opt,name=key_value,json=keyValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_StringValue struct {
|
||||
StringValue string `protobuf:"bytes,17,opt,name=string_value,json=stringValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_BlobValue struct {
|
||||
BlobValue []byte `protobuf:"bytes,18,opt,name=blob_value,json=blobValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_GeoPointValue struct {
|
||||
GeoPointValue *latlng.LatLng `protobuf:"bytes,8,opt,name=geo_point_value,json=geoPointValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_EntityValue struct {
|
||||
EntityValue *Entity `protobuf:"bytes,6,opt,name=entity_value,json=entityValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_ArrayValue struct {
|
||||
ArrayValue *ArrayValue `protobuf:"bytes,9,opt,name=array_value,json=arrayValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
func (*Value_NullValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_BooleanValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_IntegerValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_DoubleValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_TimestampValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_KeyValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_StringValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_BlobValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_GeoPointValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_EntityValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_ArrayValue) isValue_ValueType() {}
|
||||
|
||||
func (m *Value) GetValueType() isValue_ValueType {
|
||||
if m != nil {
|
||||
return m.ValueType
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetNullValue() _struct.NullValue {
|
||||
if x, ok := m.GetValueType().(*Value_NullValue); ok {
|
||||
return x.NullValue
|
||||
}
|
||||
return _struct.NullValue_NULL_VALUE
|
||||
}
|
||||
|
||||
func (m *Value) GetBooleanValue() bool {
|
||||
if x, ok := m.GetValueType().(*Value_BooleanValue); ok {
|
||||
return x.BooleanValue
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *Value) GetIntegerValue() int64 {
|
||||
if x, ok := m.GetValueType().(*Value_IntegerValue); ok {
|
||||
return x.IntegerValue
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Value) GetDoubleValue() float64 {
|
||||
if x, ok := m.GetValueType().(*Value_DoubleValue); ok {
|
||||
return x.DoubleValue
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Value) GetTimestampValue() *timestamp.Timestamp {
|
||||
if x, ok := m.GetValueType().(*Value_TimestampValue); ok {
|
||||
return x.TimestampValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetKeyValue() *Key {
|
||||
if x, ok := m.GetValueType().(*Value_KeyValue); ok {
|
||||
return x.KeyValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetStringValue() string {
|
||||
if x, ok := m.GetValueType().(*Value_StringValue); ok {
|
||||
return x.StringValue
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Value) GetBlobValue() []byte {
|
||||
if x, ok := m.GetValueType().(*Value_BlobValue); ok {
|
||||
return x.BlobValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetGeoPointValue() *latlng.LatLng {
|
||||
if x, ok := m.GetValueType().(*Value_GeoPointValue); ok {
|
||||
return x.GeoPointValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetEntityValue() *Entity {
|
||||
if x, ok := m.GetValueType().(*Value_EntityValue); ok {
|
||||
return x.EntityValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetArrayValue() *ArrayValue {
|
||||
if x, ok := m.GetValueType().(*Value_ArrayValue); ok {
|
||||
return x.ArrayValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetMeaning() int32 {
|
||||
if m != nil {
|
||||
return m.Meaning
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Value) GetExcludeFromIndexes() bool {
|
||||
if m != nil {
|
||||
return m.ExcludeFromIndexes
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// XXX_OneofFuncs is for the internal use of the proto package.
|
||||
func (*Value) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
|
||||
return _Value_OneofMarshaler, _Value_OneofUnmarshaler, _Value_OneofSizer, []interface{}{
|
||||
(*Value_NullValue)(nil),
|
||||
(*Value_BooleanValue)(nil),
|
||||
(*Value_IntegerValue)(nil),
|
||||
(*Value_DoubleValue)(nil),
|
||||
(*Value_TimestampValue)(nil),
|
||||
(*Value_KeyValue)(nil),
|
||||
(*Value_StringValue)(nil),
|
||||
(*Value_BlobValue)(nil),
|
||||
(*Value_GeoPointValue)(nil),
|
||||
(*Value_EntityValue)(nil),
|
||||
(*Value_ArrayValue)(nil),
|
||||
}
|
||||
}
|
||||
|
||||
func _Value_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
||||
m := msg.(*Value)
|
||||
// value_type
|
||||
switch x := m.ValueType.(type) {
|
||||
case *Value_NullValue:
|
||||
b.EncodeVarint(11<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(uint64(x.NullValue))
|
||||
case *Value_BooleanValue:
|
||||
t := uint64(0)
|
||||
if x.BooleanValue {
|
||||
t = 1
|
||||
}
|
||||
b.EncodeVarint(1<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(t)
|
||||
case *Value_IntegerValue:
|
||||
b.EncodeVarint(2<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(uint64(x.IntegerValue))
|
||||
case *Value_DoubleValue:
|
||||
b.EncodeVarint(3<<3 | proto.WireFixed64)
|
||||
b.EncodeFixed64(math.Float64bits(x.DoubleValue))
|
||||
case *Value_TimestampValue:
|
||||
b.EncodeVarint(10<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.TimestampValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Value_KeyValue:
|
||||
b.EncodeVarint(5<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.KeyValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Value_StringValue:
|
||||
b.EncodeVarint(17<<3 | proto.WireBytes)
|
||||
b.EncodeStringBytes(x.StringValue)
|
||||
case *Value_BlobValue:
|
||||
b.EncodeVarint(18<<3 | proto.WireBytes)
|
||||
b.EncodeRawBytes(x.BlobValue)
|
||||
case *Value_GeoPointValue:
|
||||
b.EncodeVarint(8<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.GeoPointValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Value_EntityValue:
|
||||
b.EncodeVarint(6<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.EntityValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Value_ArrayValue:
|
||||
b.EncodeVarint(9<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.ArrayValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case nil:
|
||||
default:
|
||||
return fmt.Errorf("Value.ValueType has unexpected type %T", x)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func _Value_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
||||
m := msg.(*Value)
|
||||
switch tag {
|
||||
case 11: // value_type.null_value
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.ValueType = &Value_NullValue{_struct.NullValue(x)}
|
||||
return true, err
|
||||
case 1: // value_type.boolean_value
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.ValueType = &Value_BooleanValue{x != 0}
|
||||
return true, err
|
||||
case 2: // value_type.integer_value
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.ValueType = &Value_IntegerValue{int64(x)}
|
||||
return true, err
|
||||
case 3: // value_type.double_value
|
||||
if wire != proto.WireFixed64 {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeFixed64()
|
||||
m.ValueType = &Value_DoubleValue{math.Float64frombits(x)}
|
||||
return true, err
|
||||
case 10: // value_type.timestamp_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(timestamp.Timestamp)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_TimestampValue{msg}
|
||||
return true, err
|
||||
case 5: // value_type.key_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Key)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_KeyValue{msg}
|
||||
return true, err
|
||||
case 17: // value_type.string_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeStringBytes()
|
||||
m.ValueType = &Value_StringValue{x}
|
||||
return true, err
|
||||
case 18: // value_type.blob_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeRawBytes(true)
|
||||
m.ValueType = &Value_BlobValue{x}
|
||||
return true, err
|
||||
case 8: // value_type.geo_point_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(latlng.LatLng)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_GeoPointValue{msg}
|
||||
return true, err
|
||||
case 6: // value_type.entity_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Entity)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_EntityValue{msg}
|
||||
return true, err
|
||||
case 9: // value_type.array_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(ArrayValue)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_ArrayValue{msg}
|
||||
return true, err
|
||||
default:
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
|
||||
func _Value_OneofSizer(msg proto.Message) (n int) {
|
||||
m := msg.(*Value)
|
||||
// value_type
|
||||
switch x := m.ValueType.(type) {
|
||||
case *Value_NullValue:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(x.NullValue))
|
||||
case *Value_BooleanValue:
|
||||
n += 1 // tag and wire
|
||||
n += 1
|
||||
case *Value_IntegerValue:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(x.IntegerValue))
|
||||
case *Value_DoubleValue:
|
||||
n += 1 // tag and wire
|
||||
n += 8
|
||||
case *Value_TimestampValue:
|
||||
s := proto.Size(x.TimestampValue)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *Value_KeyValue:
|
||||
s := proto.Size(x.KeyValue)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *Value_StringValue:
|
||||
n += 2 // tag and wire
|
||||
n += proto.SizeVarint(uint64(len(x.StringValue)))
|
||||
n += len(x.StringValue)
|
||||
case *Value_BlobValue:
|
||||
n += 2 // tag and wire
|
||||
n += proto.SizeVarint(uint64(len(x.BlobValue)))
|
||||
n += len(x.BlobValue)
|
||||
case *Value_GeoPointValue:
|
||||
s := proto.Size(x.GeoPointValue)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *Value_EntityValue:
|
||||
s := proto.Size(x.EntityValue)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *Value_ArrayValue:
|
||||
s := proto.Size(x.ArrayValue)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case nil:
|
||||
default:
|
||||
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
// A Datastore data object.
|
||||
//
|
||||
// An entity is limited to 1 megabyte when stored. That _roughly_
|
||||
// corresponds to a limit of 1 megabyte for the serialized form of this
|
||||
// message.
|
||||
type Entity struct {
|
||||
// The entity's key.
|
||||
//
|
||||
// An entity must have a key, unless otherwise documented (for example,
|
||||
// an entity in `Value.entity_value` may have no key).
|
||||
// An entity's kind is its key path's last element's kind,
|
||||
// or null if it has no key.
|
||||
Key *Key `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
||||
// The entity's properties.
|
||||
// The map's keys are property names.
|
||||
// A property name matching regex `__.*__` is reserved.
|
||||
// A reserved property name is forbidden in certain documented contexts.
|
||||
// The name must not contain more than 500 characters.
|
||||
// The name cannot be `""`.
|
||||
Properties map[string]*Value `protobuf:"bytes,3,rep,name=properties,proto3" json:"properties,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Entity) Reset() { *m = Entity{} }
|
||||
func (m *Entity) String() string { return proto.CompactTextString(m) }
|
||||
func (*Entity) ProtoMessage() {}
|
||||
func (*Entity) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_66499b178484a7ed, []int{4}
|
||||
}
|
||||
|
||||
func (m *Entity) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Entity.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Entity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Entity.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Entity) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Entity.Merge(m, src)
|
||||
}
|
||||
func (m *Entity) XXX_Size() int {
|
||||
return xxx_messageInfo_Entity.Size(m)
|
||||
}
|
||||
func (m *Entity) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Entity.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Entity proto.InternalMessageInfo
|
||||
|
||||
func (m *Entity) GetKey() *Key {
|
||||
if m != nil {
|
||||
return m.Key
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Entity) GetProperties() map[string]*Value {
|
||||
if m != nil {
|
||||
return m.Properties
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*PartitionId)(nil), "google.datastore.v1beta3.PartitionId")
|
||||
proto.RegisterType((*Key)(nil), "google.datastore.v1beta3.Key")
|
||||
proto.RegisterType((*Key_PathElement)(nil), "google.datastore.v1beta3.Key.PathElement")
|
||||
proto.RegisterType((*ArrayValue)(nil), "google.datastore.v1beta3.ArrayValue")
|
||||
proto.RegisterType((*Value)(nil), "google.datastore.v1beta3.Value")
|
||||
proto.RegisterType((*Entity)(nil), "google.datastore.v1beta3.Entity")
|
||||
proto.RegisterMapType((map[string]*Value)(nil), "google.datastore.v1beta3.Entity.PropertiesEntry")
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/datastore/v1beta3/entity.proto", fileDescriptor_66499b178484a7ed)
|
||||
}
|
||||
|
||||
var fileDescriptor_66499b178484a7ed = []byte{
|
||||
// 789 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x95, 0xdf, 0x8e, 0xdb, 0x44,
|
||||
0x14, 0xc6, 0xed, 0x64, 0xb3, 0x5d, 0x1f, 0xbb, 0xbb, 0x65, 0xda, 0x0b, 0x2b, 0x6a, 0xd9, 0x10,
|
||||
0x58, 0x29, 0xdc, 0xd8, 0xed, 0x56, 0x08, 0x44, 0xe9, 0x45, 0x03, 0xa1, 0x8e, 0x5a, 0x41, 0x34,
|
||||
0xaa, 0xf6, 0x02, 0xad, 0x88, 0x26, 0xf1, 0xd4, 0x1d, 0x62, 0xcf, 0x58, 0xf6, 0xb8, 0xaa, 0x5f,
|
||||
0x09, 0xee, 0x78, 0x0c, 0x9e, 0x83, 0x3b, 0x5e, 0x02, 0xcd, 0x1f, 0x3b, 0xab, 0x56, 0x29, 0xdc,
|
||||
0x79, 0xce, 0xf9, 0x9d, 0x6f, 0xbe, 0x99, 0x73, 0x26, 0x81, 0x8b, 0x4c, 0x88, 0x2c, 0xa7, 0x71,
|
||||
0x4a, 0x24, 0xa9, 0xa5, 0xa8, 0x68, 0xfc, 0xf6, 0xd1, 0x86, 0x4a, 0xf2, 0x38, 0xa6, 0x5c, 0x32,
|
||||
0xd9, 0x46, 0x65, 0x25, 0xa4, 0x40, 0xa1, 0xc1, 0xa2, 0x1e, 0x8b, 0x2c, 0x36, 0xbe, 0x6f, 0x05,
|
||||
0x48, 0xc9, 0x62, 0xc2, 0xb9, 0x90, 0x44, 0x32, 0xc1, 0x6b, 0x53, 0xd7, 0x67, 0xf5, 0x6a, 0xd3,
|
||||
0xbc, 0x8e, 0x6b, 0x59, 0x35, 0x5b, 0x69, 0xb3, 0xe7, 0xef, 0x67, 0x25, 0x2b, 0x68, 0x2d, 0x49,
|
||||
0x51, 0x5a, 0xc0, 0x6e, 0x1b, 0xcb, 0xb6, 0xa4, 0x71, 0x4e, 0x64, 0xce, 0x33, 0x93, 0x99, 0xfe,
|
||||
0x0c, 0xfe, 0x8a, 0x54, 0x92, 0xa9, 0xcd, 0x96, 0x29, 0x7a, 0x00, 0x50, 0x56, 0xe2, 0x37, 0xba,
|
||||
0x95, 0x6b, 0x96, 0x86, 0x83, 0x89, 0x3b, 0xf3, 0xb0, 0x67, 0x23, 0xcb, 0x14, 0x7d, 0x06, 0x01,
|
||||
0x27, 0x05, 0xad, 0x4b, 0xb2, 0xa5, 0x0a, 0x38, 0xd2, 0x80, 0xdf, 0xc7, 0x96, 0xe9, 0xf4, 0x6f,
|
||||
0x17, 0x86, 0x2f, 0x68, 0x8b, 0x12, 0x08, 0xca, 0x4e, 0x58, 0xa1, 0xee, 0xc4, 0x9d, 0xf9, 0x97,
|
||||
0x17, 0xd1, 0xa1, 0x0b, 0x88, 0x6e, 0xd8, 0xc0, 0x7e, 0x79, 0xc3, 0xd3, 0x53, 0x38, 0x2a, 0x89,
|
||||
0x7c, 0x13, 0x0e, 0x26, 0xc3, 0x99, 0x7f, 0xf9, 0xe5, 0x61, 0x85, 0x17, 0xb4, 0x8d, 0x56, 0x44,
|
||||
0xbe, 0x59, 0xe4, 0xb4, 0xa0, 0x5c, 0x62, 0x5d, 0x36, 0x7e, 0xa5, 0x4e, 0xd8, 0x07, 0x11, 0x82,
|
||||
0xa3, 0x1d, 0xe3, 0xc6, 0x8f, 0x87, 0xf5, 0x37, 0xba, 0x03, 0x03, 0x7b, 0xda, 0x61, 0xe2, 0xe0,
|
||||
0x01, 0x4b, 0xd1, 0x3d, 0x38, 0x52, 0x87, 0x0a, 0x87, 0x8a, 0x4a, 0x1c, 0xac, 0x57, 0x73, 0x0f,
|
||||
0x6e, 0xb1, 0x74, 0xad, 0x2e, 0x71, 0xba, 0x00, 0x78, 0x56, 0x55, 0xa4, 0xbd, 0x22, 0x79, 0x43,
|
||||
0xd1, 0xd7, 0x70, 0xfc, 0x56, 0x7d, 0xd4, 0xa1, 0xab, 0x4d, 0x9e, 0x1f, 0x36, 0xa9, 0x0b, 0xb0,
|
||||
0xc5, 0xa7, 0x7f, 0x8c, 0x60, 0x64, 0x24, 0x9e, 0x00, 0xf0, 0x26, 0xcf, 0xd7, 0x3a, 0x11, 0xfa,
|
||||
0x13, 0x77, 0x76, 0x7a, 0x39, 0xee, 0x64, 0xba, 0xc6, 0x46, 0x3f, 0x35, 0x79, 0xae, 0xf9, 0xc4,
|
||||
0xc1, 0x1e, 0xef, 0x16, 0xe8, 0x02, 0x6e, 0x6f, 0x84, 0xc8, 0x29, 0xe1, 0xb6, 0x5e, 0x9d, 0xee,
|
||||
0x24, 0x71, 0x70, 0x60, 0xc3, 0x3d, 0xc6, 0xb8, 0xa4, 0x19, 0xad, 0x2c, 0xd6, 0x1d, 0x39, 0xb0,
|
||||
0x61, 0x83, 0x7d, 0x0e, 0x41, 0x2a, 0x9a, 0x4d, 0x4e, 0x2d, 0xa5, 0x2e, 0xc1, 0x4d, 0x1c, 0xec,
|
||||
0x9b, 0xa8, 0x81, 0x16, 0x70, 0xd6, 0x4f, 0x99, 0xe5, 0x40, 0xb7, 0xf8, 0x43, 0xd3, 0xaf, 0x3a,
|
||||
0x2e, 0x71, 0xf0, 0x69, 0x5f, 0x64, 0x64, 0xbe, 0x03, 0x6f, 0x47, 0x5b, 0x2b, 0x30, 0xd2, 0x02,
|
||||
0x0f, 0x3e, 0xda, 0xe1, 0xc4, 0xc1, 0x27, 0x3b, 0xda, 0xf6, 0x4e, 0x6b, 0x59, 0x31, 0x9e, 0x59,
|
||||
0x81, 0x4f, 0x6c, 0xbb, 0x7c, 0x13, 0x35, 0xd0, 0x39, 0xc0, 0x26, 0x17, 0x1b, 0x8b, 0xa0, 0x89,
|
||||
0x3b, 0x0b, 0xd4, 0xed, 0xa9, 0x98, 0x01, 0x9e, 0xc2, 0x59, 0x46, 0xc5, 0xba, 0x14, 0x8c, 0x4b,
|
||||
0x4b, 0x9d, 0x68, 0x27, 0x77, 0x3b, 0x27, 0xaa, 0xe5, 0xd1, 0x4b, 0x22, 0x5f, 0xf2, 0x2c, 0x71,
|
||||
0xf0, 0xed, 0x8c, 0x8a, 0x95, 0x82, 0xbb, 0x9b, 0x08, 0xcc, 0x1b, 0xb7, 0xb5, 0xc7, 0xba, 0x76,
|
||||
0x72, 0xf8, 0x14, 0x0b, 0x4d, 0x2b, 0x9b, 0xa6, 0xce, 0xc8, 0x3c, 0x07, 0x9f, 0xa8, 0x89, 0xb2,
|
||||
0x2a, 0x9e, 0x56, 0xf9, 0xe2, 0xb0, 0xca, 0x7e, 0xfc, 0x12, 0x07, 0x03, 0xd9, 0x0f, 0x63, 0x08,
|
||||
0xb7, 0x0a, 0x4a, 0x38, 0xe3, 0x59, 0x78, 0x3a, 0x71, 0x67, 0x23, 0xdc, 0x2d, 0xd1, 0x43, 0xb8,
|
||||
0x47, 0xdf, 0x6d, 0xf3, 0x26, 0xa5, 0xeb, 0xd7, 0x95, 0x28, 0xd6, 0x8c, 0xa7, 0xf4, 0x1d, 0xad,
|
||||
0xc3, 0xbb, 0x6a, 0x5a, 0x30, 0xb2, 0xb9, 0x1f, 0x2b, 0x51, 0x2c, 0x4d, 0x66, 0x1e, 0x00, 0x68,
|
||||
0x3b, 0x66, 0xe8, 0xff, 0x71, 0xe1, 0xd8, 0x98, 0x47, 0x31, 0x0c, 0x77, 0xb4, 0xb5, 0xaf, 0xfa,
|
||||
0xe3, 0x1d, 0xc3, 0x8a, 0x44, 0x2b, 0xfd, 0xcb, 0x52, 0xd2, 0x4a, 0x32, 0x5a, 0x87, 0x43, 0xfd,
|
||||
0x4c, 0x1e, 0xfe, 0xd7, 0x1d, 0x45, 0xab, 0xbe, 0x64, 0xc1, 0x65, 0xd5, 0xe2, 0x1b, 0x1a, 0xe3,
|
||||
0x5f, 0xe1, 0xec, 0xbd, 0x34, 0xba, 0xb3, 0x77, 0xe5, 0x99, 0x6d, 0xbf, 0x82, 0xd1, 0x7e, 0xd4,
|
||||
0xff, 0xc7, 0xc3, 0x34, 0xf4, 0xb7, 0x83, 0x6f, 0xdc, 0xf9, 0x9f, 0x2e, 0xdc, 0xdf, 0x8a, 0xe2,
|
||||
0x60, 0xc5, 0xdc, 0x37, 0x26, 0x57, 0x6a, 0xce, 0x57, 0xee, 0x2f, 0xcf, 0x2c, 0x98, 0x89, 0x9c,
|
||||
0xf0, 0x2c, 0x12, 0x55, 0x16, 0x67, 0x94, 0xeb, 0x57, 0x10, 0x9b, 0x14, 0x29, 0x59, 0xfd, 0xe1,
|
||||
0x3f, 0xc4, 0x93, 0x3e, 0xf2, 0xfb, 0xe0, 0xd3, 0xe7, 0x46, 0xe3, 0xfb, 0x5c, 0x34, 0x69, 0xf4,
|
||||
0x43, 0xbf, 0xe5, 0xd5, 0xa3, 0xb9, 0x42, 0xff, 0xea, 0x80, 0x6b, 0x0d, 0x5c, 0xf7, 0xc0, 0xf5,
|
||||
0x95, 0xd1, 0xda, 0x1c, 0xeb, 0xfd, 0x1e, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x6d, 0x30,
|
||||
0xe2, 0x90, 0x06, 0x00, 0x00,
|
||||
}
|
1279
vendor/google.golang.org/genproto/googleapis/datastore/v1beta3/query.pb.go
generated
vendored
Normal file
1279
vendor/google.golang.org/genproto/googleapis/datastore/v1beta3/query.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue