mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 18:53:35 +00:00
213
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1/field.pb.go
generated
vendored
Normal file
213
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1/field.pb.go
generated
vendored
Normal file
@ -0,0 +1,213 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/firestore/admin/v1/field.proto
|
||||
|
||||
package admin // import "google.golang.org/genproto/googleapis/firestore/admin/v1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
|
||||
// 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
|
||||
|
||||
// Represents a single field in the database.
|
||||
//
|
||||
// Fields are grouped by their "Collection Group", which represent all
|
||||
// collections in the database with the same id.
|
||||
type Field struct {
|
||||
// A field name of the form
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/fields/{field_path}`
|
||||
//
|
||||
// A field path may be a simple field name, e.g. `address` or a path to fields
|
||||
// within map_value , e.g. `address.city`,
|
||||
// or a special field path. The only valid special field is `*`, which
|
||||
// represents any field.
|
||||
//
|
||||
// Field paths may be quoted using ` (backtick). The only character that needs
|
||||
// to be escaped within a quoted field path is the backtick character itself,
|
||||
// escaped using a backslash. Special characters in field paths that
|
||||
// must be quoted include: `*`, `.`,
|
||||
// ``` (backtick), `[`, `]`, as well as any ascii symbolic characters.
|
||||
//
|
||||
// Examples:
|
||||
// (Note: Comments here are written in markdown syntax, so there is an
|
||||
// additional layer of backticks to represent a code block)
|
||||
// `\`address.city\`` represents a field named `address.city`, not the map key
|
||||
// `city` in the field `address`.
|
||||
// `\`*\`` represents a field named `*`, not any field.
|
||||
//
|
||||
// A special `Field` contains the default indexing settings for all fields.
|
||||
// This field's resource name is:
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/__default__/fields/*`
|
||||
// Indexes defined on this `Field` will be applied to all fields which do not
|
||||
// have their own `Field` index configuration.
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
// The index configuration for this field. If unset, field indexing will
|
||||
// revert to the configuration defined by the `ancestor_field`. To
|
||||
// explicitly remove all indexes for this field, specify an index config
|
||||
// with an empty list of indexes.
|
||||
IndexConfig *Field_IndexConfig `protobuf:"bytes,2,opt,name=index_config,json=indexConfig,proto3" json:"index_config,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Field) Reset() { *m = Field{} }
|
||||
func (m *Field) String() string { return proto.CompactTextString(m) }
|
||||
func (*Field) ProtoMessage() {}
|
||||
func (*Field) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_field_2daa7c7b7ea5f26c, []int{0}
|
||||
}
|
||||
func (m *Field) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Field.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Field) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Field.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Field) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Field.Merge(dst, src)
|
||||
}
|
||||
func (m *Field) XXX_Size() int {
|
||||
return xxx_messageInfo_Field.Size(m)
|
||||
}
|
||||
func (m *Field) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Field.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Field proto.InternalMessageInfo
|
||||
|
||||
func (m *Field) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Field) GetIndexConfig() *Field_IndexConfig {
|
||||
if m != nil {
|
||||
return m.IndexConfig
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// The index configuration for this field.
|
||||
type Field_IndexConfig struct {
|
||||
// The indexes supported for this field.
|
||||
Indexes []*Index `protobuf:"bytes,1,rep,name=indexes,proto3" json:"indexes,omitempty"`
|
||||
// Output only.
|
||||
// When true, the `Field`'s index configuration is set from the
|
||||
// configuration specified by the `ancestor_field`.
|
||||
// When false, the `Field`'s index configuration is defined explicitly.
|
||||
UsesAncestorConfig bool `protobuf:"varint,2,opt,name=uses_ancestor_config,json=usesAncestorConfig,proto3" json:"uses_ancestor_config,omitempty"`
|
||||
// Output only.
|
||||
// Specifies the resource name of the `Field` from which this field's
|
||||
// index configuration is set (when `uses_ancestor_config` is true),
|
||||
// or from which it *would* be set if this field had no index configuration
|
||||
// (when `uses_ancestor_config` is false).
|
||||
AncestorField string `protobuf:"bytes,3,opt,name=ancestor_field,json=ancestorField,proto3" json:"ancestor_field,omitempty"`
|
||||
// Output only
|
||||
// When true, the `Field`'s index configuration is in the process of being
|
||||
// reverted. Once complete, the index config will transition to the same
|
||||
// state as the field specified by `ancestor_field`, at which point
|
||||
// `uses_ancestor_config` will be `true` and `reverting` will be `false`.
|
||||
Reverting bool `protobuf:"varint,4,opt,name=reverting,proto3" json:"reverting,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Field_IndexConfig) Reset() { *m = Field_IndexConfig{} }
|
||||
func (m *Field_IndexConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*Field_IndexConfig) ProtoMessage() {}
|
||||
func (*Field_IndexConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_field_2daa7c7b7ea5f26c, []int{0, 0}
|
||||
}
|
||||
func (m *Field_IndexConfig) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Field_IndexConfig.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Field_IndexConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Field_IndexConfig.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Field_IndexConfig) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Field_IndexConfig.Merge(dst, src)
|
||||
}
|
||||
func (m *Field_IndexConfig) XXX_Size() int {
|
||||
return xxx_messageInfo_Field_IndexConfig.Size(m)
|
||||
}
|
||||
func (m *Field_IndexConfig) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Field_IndexConfig.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Field_IndexConfig proto.InternalMessageInfo
|
||||
|
||||
func (m *Field_IndexConfig) GetIndexes() []*Index {
|
||||
if m != nil {
|
||||
return m.Indexes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Field_IndexConfig) GetUsesAncestorConfig() bool {
|
||||
if m != nil {
|
||||
return m.UsesAncestorConfig
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *Field_IndexConfig) GetAncestorField() string {
|
||||
if m != nil {
|
||||
return m.AncestorField
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Field_IndexConfig) GetReverting() bool {
|
||||
if m != nil {
|
||||
return m.Reverting
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*Field)(nil), "google.firestore.admin.v1.Field")
|
||||
proto.RegisterType((*Field_IndexConfig)(nil), "google.firestore.admin.v1.Field.IndexConfig")
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1/field.proto", fileDescriptor_field_2daa7c7b7ea5f26c)
|
||||
}
|
||||
|
||||
var fileDescriptor_field_2daa7c7b7ea5f26c = []byte{
|
||||
// 352 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0x4f, 0x4b, 0xc3, 0x30,
|
||||
0x18, 0xc6, 0x49, 0x37, 0xff, 0x2c, 0x55, 0x0f, 0xc1, 0x43, 0x1d, 0x13, 0x8b, 0x30, 0xd8, 0x41,
|
||||
0x12, 0x3b, 0x6f, 0x0a, 0xc2, 0x36, 0xd8, 0xf0, 0xe4, 0xa8, 0xb0, 0x83, 0x14, 0x46, 0x5c, 0xb3,
|
||||
0x10, 0xe8, 0x92, 0xd1, 0x76, 0xc3, 0xcf, 0xe3, 0xd1, 0x8b, 0x57, 0x8f, 0x9e, 0xfd, 0x54, 0xd2,
|
||||
0xb7, 0x7f, 0xb6, 0x83, 0xdb, 0x2d, 0xcd, 0xf3, 0x7b, 0x9e, 0xe7, 0xed, 0x1b, 0xdc, 0x96, 0xc6,
|
||||
0xc8, 0x48, 0xb0, 0xb9, 0x8a, 0x45, 0x92, 0x9a, 0x58, 0x30, 0x1e, 0x2e, 0x94, 0x66, 0x6b, 0x8f,
|
||||
0xcd, 0x95, 0x88, 0x42, 0xba, 0x8c, 0x4d, 0x6a, 0xc8, 0x45, 0x8e, 0xd1, 0x0a, 0xa3, 0x80, 0xd1,
|
||||
0xb5, 0xd7, 0x6c, 0x15, 0x09, 0x7c, 0xa9, 0x18, 0xd7, 0xda, 0xa4, 0x3c, 0x55, 0x46, 0x27, 0xb9,
|
||||
0xb1, 0xb9, 0x27, 0x5f, 0xe9, 0x50, 0xbc, 0xe7, 0xd8, 0xf5, 0x97, 0x85, 0x0f, 0x86, 0x59, 0x1f,
|
||||
0x21, 0xb8, 0xae, 0xf9, 0x42, 0x38, 0xc8, 0x45, 0x9d, 0x86, 0x0f, 0x67, 0xf2, 0x8c, 0x4f, 0x00,
|
||||
0x9e, 0xce, 0x8c, 0x9e, 0x2b, 0xe9, 0x58, 0x2e, 0xea, 0xd8, 0xdd, 0x1b, 0xba, 0x73, 0x28, 0x0a,
|
||||
0x59, 0xf4, 0x29, 0x33, 0x0d, 0xc0, 0xe3, 0xdb, 0x6a, 0xf3, 0xd1, 0xfc, 0x41, 0xd8, 0xde, 0x12,
|
||||
0xc9, 0x3d, 0x3e, 0x02, 0x59, 0x24, 0x0e, 0x72, 0x6b, 0x1d, 0xbb, 0xeb, 0xee, 0xc9, 0x06, 0xa3,
|
||||
0x5f, 0x1a, 0xc8, 0x2d, 0x3e, 0x5f, 0x25, 0x22, 0x99, 0x72, 0x3d, 0x03, 0x72, 0x7b, 0xc8, 0x63,
|
||||
0x9f, 0x64, 0x5a, 0xaf, 0x90, 0x8a, 0xb6, 0x36, 0x3e, 0xab, 0x60, 0x58, 0xb2, 0x53, 0x83, 0x9f,
|
||||
0x3d, 0x2d, 0x6f, 0xf3, 0x4d, 0xb4, 0x70, 0x23, 0x16, 0x6b, 0x11, 0xa7, 0x4a, 0x4b, 0xa7, 0x0e,
|
||||
0x69, 0x9b, 0x8b, 0xfe, 0x37, 0xc2, 0x97, 0x33, 0xb3, 0xd8, 0x3d, 0x67, 0x1f, 0x43, 0xcc, 0x38,
|
||||
0xdb, 0xef, 0x18, 0xbd, 0x3e, 0x16, 0xa0, 0x34, 0x11, 0xd7, 0x92, 0x9a, 0x58, 0x32, 0x29, 0x34,
|
||||
0x6c, 0x9f, 0xe5, 0x12, 0x5f, 0xaa, 0xe4, 0x9f, 0x77, 0x7a, 0x80, 0xc3, 0x87, 0x55, 0x1f, 0x0d,
|
||||
0x86, 0x2f, 0x9f, 0xd6, 0xd5, 0x28, 0xcf, 0x19, 0x44, 0x66, 0x15, 0xd2, 0x61, 0x55, 0xdb, 0x83,
|
||||
0xda, 0x89, 0xf7, 0x5b, 0x12, 0x01, 0x10, 0x41, 0x45, 0x04, 0x40, 0x04, 0x13, 0xef, 0xed, 0x10,
|
||||
0x5a, 0xef, 0xfe, 0x02, 0x00, 0x00, 0xff, 0xff, 0x51, 0x20, 0x00, 0xc1, 0x7c, 0x02, 0x00, 0x00,
|
||||
}
|
1120
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1/firestore_admin.pb.go
generated
vendored
Normal file
1120
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1/firestore_admin.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
446
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1/index.pb.go
generated
vendored
Normal file
446
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1/index.pb.go
generated
vendored
Normal file
@ -0,0 +1,446 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/firestore/admin/v1/index.proto
|
||||
|
||||
package admin // import "google.golang.org/genproto/googleapis/firestore/admin/v1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
|
||||
// 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
|
||||
|
||||
// Query Scope defines the scope at which a query is run. This is specified on
|
||||
// a StructuredQuery's `from` field.
|
||||
type Index_QueryScope int32
|
||||
|
||||
const (
|
||||
// The query scope is unspecified. Not a valid option.
|
||||
Index_QUERY_SCOPE_UNSPECIFIED Index_QueryScope = 0
|
||||
// Indexes with a collection query scope specified allow queries
|
||||
// against a collection that is the child of a specific document, specified
|
||||
// at query time, and that has the collection id specified by the index.
|
||||
Index_COLLECTION Index_QueryScope = 1
|
||||
)
|
||||
|
||||
var Index_QueryScope_name = map[int32]string{
|
||||
0: "QUERY_SCOPE_UNSPECIFIED",
|
||||
1: "COLLECTION",
|
||||
}
|
||||
var Index_QueryScope_value = map[string]int32{
|
||||
"QUERY_SCOPE_UNSPECIFIED": 0,
|
||||
"COLLECTION": 1,
|
||||
}
|
||||
|
||||
func (x Index_QueryScope) String() string {
|
||||
return proto.EnumName(Index_QueryScope_name, int32(x))
|
||||
}
|
||||
func (Index_QueryScope) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_ed7772aaf3db632e, []int{0, 0}
|
||||
}
|
||||
|
||||
// The state of an index. During index creation, an index will be in the
|
||||
// `CREATING` state. If the index is created successfully, it will transition
|
||||
// to the `READY` state. If the index creation encounters a problem, the index
|
||||
// will transition to the `NEEDS_REPAIR` state.
|
||||
type Index_State int32
|
||||
|
||||
const (
|
||||
// The state is unspecified.
|
||||
Index_STATE_UNSPECIFIED Index_State = 0
|
||||
// The index is being created.
|
||||
// There is an active long-running operation for the index.
|
||||
// The index is updated when writing a document.
|
||||
// Some index data may exist.
|
||||
Index_CREATING Index_State = 1
|
||||
// The index is ready to be used.
|
||||
// The index is updated when writing a document.
|
||||
// The index is fully populated from all stored documents it applies to.
|
||||
Index_READY Index_State = 2
|
||||
// The index was being created, but something went wrong.
|
||||
// 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 a document.
|
||||
// Some index data may exist.
|
||||
// Use the google.longrunning.Operations API to determine why the operation
|
||||
// that last attempted to create this index failed, then re-create the
|
||||
// index.
|
||||
Index_NEEDS_REPAIR Index_State = 3
|
||||
)
|
||||
|
||||
var Index_State_name = map[int32]string{
|
||||
0: "STATE_UNSPECIFIED",
|
||||
1: "CREATING",
|
||||
2: "READY",
|
||||
3: "NEEDS_REPAIR",
|
||||
}
|
||||
var Index_State_value = map[string]int32{
|
||||
"STATE_UNSPECIFIED": 0,
|
||||
"CREATING": 1,
|
||||
"READY": 2,
|
||||
"NEEDS_REPAIR": 3,
|
||||
}
|
||||
|
||||
func (x Index_State) String() string {
|
||||
return proto.EnumName(Index_State_name, int32(x))
|
||||
}
|
||||
func (Index_State) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_ed7772aaf3db632e, []int{0, 1}
|
||||
}
|
||||
|
||||
// The supported orderings.
|
||||
type Index_IndexField_Order int32
|
||||
|
||||
const (
|
||||
// The ordering is unspecified. Not a valid option.
|
||||
Index_IndexField_ORDER_UNSPECIFIED Index_IndexField_Order = 0
|
||||
// The field is ordered by ascending field value.
|
||||
Index_IndexField_ASCENDING Index_IndexField_Order = 1
|
||||
// The field is ordered by descending field value.
|
||||
Index_IndexField_DESCENDING Index_IndexField_Order = 2
|
||||
)
|
||||
|
||||
var Index_IndexField_Order_name = map[int32]string{
|
||||
0: "ORDER_UNSPECIFIED",
|
||||
1: "ASCENDING",
|
||||
2: "DESCENDING",
|
||||
}
|
||||
var Index_IndexField_Order_value = map[string]int32{
|
||||
"ORDER_UNSPECIFIED": 0,
|
||||
"ASCENDING": 1,
|
||||
"DESCENDING": 2,
|
||||
}
|
||||
|
||||
func (x Index_IndexField_Order) String() string {
|
||||
return proto.EnumName(Index_IndexField_Order_name, int32(x))
|
||||
}
|
||||
func (Index_IndexField_Order) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_ed7772aaf3db632e, []int{0, 0, 0}
|
||||
}
|
||||
|
||||
// The supported array value configurations.
|
||||
type Index_IndexField_ArrayConfig int32
|
||||
|
||||
const (
|
||||
// The index does not support additional array queries.
|
||||
Index_IndexField_ARRAY_CONFIG_UNSPECIFIED Index_IndexField_ArrayConfig = 0
|
||||
// The index supports array containment queries.
|
||||
Index_IndexField_CONTAINS Index_IndexField_ArrayConfig = 1
|
||||
)
|
||||
|
||||
var Index_IndexField_ArrayConfig_name = map[int32]string{
|
||||
0: "ARRAY_CONFIG_UNSPECIFIED",
|
||||
1: "CONTAINS",
|
||||
}
|
||||
var Index_IndexField_ArrayConfig_value = map[string]int32{
|
||||
"ARRAY_CONFIG_UNSPECIFIED": 0,
|
||||
"CONTAINS": 1,
|
||||
}
|
||||
|
||||
func (x Index_IndexField_ArrayConfig) String() string {
|
||||
return proto.EnumName(Index_IndexField_ArrayConfig_name, int32(x))
|
||||
}
|
||||
func (Index_IndexField_ArrayConfig) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_ed7772aaf3db632e, []int{0, 0, 1}
|
||||
}
|
||||
|
||||
// Cloud Firestore indexes enable simple and complex queries against
|
||||
// documents in a database.
|
||||
type Index struct {
|
||||
// Output only.
|
||||
// A server defined name for this index.
|
||||
// The form of this name for composite indexes will be:
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{composite_index_id}`
|
||||
// For single field indexes, this field will be empty.
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
// Indexes with a collection query scope specified allow queries
|
||||
// against a collection that is the child of a specific document, specified at
|
||||
// query time, and that has the same collection id.
|
||||
//
|
||||
// Indexes with a collection group query scope specified allow queries against
|
||||
// all collections descended from a specific document, specified at query
|
||||
// time, and that have the same collection id as this index.
|
||||
QueryScope Index_QueryScope `protobuf:"varint,2,opt,name=query_scope,json=queryScope,proto3,enum=google.firestore.admin.v1.Index_QueryScope" json:"query_scope,omitempty"`
|
||||
// The fields supported by this index.
|
||||
//
|
||||
// For composite indexes, this is always 2 or more fields.
|
||||
// The last field entry is always for the field path `__name__`. If, on
|
||||
// creation, `__name__` was not specified as the last field, it will be added
|
||||
// automatically with the same direction as that of the last field defined. If
|
||||
// the final field in a composite index is not directional, the `__name__`
|
||||
// will be ordered ASCENDING (unless explicitly specified).
|
||||
//
|
||||
// For single field indexes, this will always be exactly one entry with a
|
||||
// field path equal to the field path of the associated field.
|
||||
Fields []*Index_IndexField `protobuf:"bytes,3,rep,name=fields,proto3" json:"fields,omitempty"`
|
||||
// Output only.
|
||||
// The serving state of the index.
|
||||
State Index_State `protobuf:"varint,4,opt,name=state,proto3,enum=google.firestore.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_index_ed7772aaf3db632e, []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 (dst *Index) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Index.Merge(dst, 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) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Index) GetQueryScope() Index_QueryScope {
|
||||
if m != nil {
|
||||
return m.QueryScope
|
||||
}
|
||||
return Index_QUERY_SCOPE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *Index) GetFields() []*Index_IndexField {
|
||||
if m != nil {
|
||||
return m.Fields
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Index) GetState() Index_State {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return Index_STATE_UNSPECIFIED
|
||||
}
|
||||
|
||||
// A field in an index.
|
||||
// The field_path describes which field is indexed, the value_mode describes
|
||||
// how the field value is indexed.
|
||||
type Index_IndexField struct {
|
||||
// Can be __name__.
|
||||
// For single field indexes, this must match the name of the field or may
|
||||
// be omitted.
|
||||
FieldPath string `protobuf:"bytes,1,opt,name=field_path,json=fieldPath,proto3" json:"field_path,omitempty"`
|
||||
// How the field value is indexed.
|
||||
//
|
||||
// Types that are valid to be assigned to ValueMode:
|
||||
// *Index_IndexField_Order_
|
||||
// *Index_IndexField_ArrayConfig_
|
||||
ValueMode isIndex_IndexField_ValueMode `protobuf_oneof:"value_mode"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Index_IndexField) Reset() { *m = Index_IndexField{} }
|
||||
func (m *Index_IndexField) String() string { return proto.CompactTextString(m) }
|
||||
func (*Index_IndexField) ProtoMessage() {}
|
||||
func (*Index_IndexField) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_ed7772aaf3db632e, []int{0, 0}
|
||||
}
|
||||
func (m *Index_IndexField) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Index_IndexField.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Index_IndexField) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Index_IndexField.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Index_IndexField) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Index_IndexField.Merge(dst, src)
|
||||
}
|
||||
func (m *Index_IndexField) XXX_Size() int {
|
||||
return xxx_messageInfo_Index_IndexField.Size(m)
|
||||
}
|
||||
func (m *Index_IndexField) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Index_IndexField.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Index_IndexField proto.InternalMessageInfo
|
||||
|
||||
func (m *Index_IndexField) GetFieldPath() string {
|
||||
if m != nil {
|
||||
return m.FieldPath
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type isIndex_IndexField_ValueMode interface {
|
||||
isIndex_IndexField_ValueMode()
|
||||
}
|
||||
|
||||
type Index_IndexField_Order_ struct {
|
||||
Order Index_IndexField_Order `protobuf:"varint,2,opt,name=order,proto3,enum=google.firestore.admin.v1.Index_IndexField_Order,oneof"`
|
||||
}
|
||||
|
||||
type Index_IndexField_ArrayConfig_ struct {
|
||||
ArrayConfig Index_IndexField_ArrayConfig `protobuf:"varint,3,opt,name=array_config,json=arrayConfig,proto3,enum=google.firestore.admin.v1.Index_IndexField_ArrayConfig,oneof"`
|
||||
}
|
||||
|
||||
func (*Index_IndexField_Order_) isIndex_IndexField_ValueMode() {}
|
||||
|
||||
func (*Index_IndexField_ArrayConfig_) isIndex_IndexField_ValueMode() {}
|
||||
|
||||
func (m *Index_IndexField) GetValueMode() isIndex_IndexField_ValueMode {
|
||||
if m != nil {
|
||||
return m.ValueMode
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Index_IndexField) GetOrder() Index_IndexField_Order {
|
||||
if x, ok := m.GetValueMode().(*Index_IndexField_Order_); ok {
|
||||
return x.Order
|
||||
}
|
||||
return Index_IndexField_ORDER_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *Index_IndexField) GetArrayConfig() Index_IndexField_ArrayConfig {
|
||||
if x, ok := m.GetValueMode().(*Index_IndexField_ArrayConfig_); ok {
|
||||
return x.ArrayConfig
|
||||
}
|
||||
return Index_IndexField_ARRAY_CONFIG_UNSPECIFIED
|
||||
}
|
||||
|
||||
// XXX_OneofFuncs is for the internal use of the proto package.
|
||||
func (*Index_IndexField) 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 _Index_IndexField_OneofMarshaler, _Index_IndexField_OneofUnmarshaler, _Index_IndexField_OneofSizer, []interface{}{
|
||||
(*Index_IndexField_Order_)(nil),
|
||||
(*Index_IndexField_ArrayConfig_)(nil),
|
||||
}
|
||||
}
|
||||
|
||||
func _Index_IndexField_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
||||
m := msg.(*Index_IndexField)
|
||||
// value_mode
|
||||
switch x := m.ValueMode.(type) {
|
||||
case *Index_IndexField_Order_:
|
||||
b.EncodeVarint(2<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(uint64(x.Order))
|
||||
case *Index_IndexField_ArrayConfig_:
|
||||
b.EncodeVarint(3<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(uint64(x.ArrayConfig))
|
||||
case nil:
|
||||
default:
|
||||
return fmt.Errorf("Index_IndexField.ValueMode has unexpected type %T", x)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func _Index_IndexField_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
||||
m := msg.(*Index_IndexField)
|
||||
switch tag {
|
||||
case 2: // value_mode.order
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.ValueMode = &Index_IndexField_Order_{Index_IndexField_Order(x)}
|
||||
return true, err
|
||||
case 3: // value_mode.array_config
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.ValueMode = &Index_IndexField_ArrayConfig_{Index_IndexField_ArrayConfig(x)}
|
||||
return true, err
|
||||
default:
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
|
||||
func _Index_IndexField_OneofSizer(msg proto.Message) (n int) {
|
||||
m := msg.(*Index_IndexField)
|
||||
// value_mode
|
||||
switch x := m.ValueMode.(type) {
|
||||
case *Index_IndexField_Order_:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(x.Order))
|
||||
case *Index_IndexField_ArrayConfig_:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(x.ArrayConfig))
|
||||
case nil:
|
||||
default:
|
||||
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*Index)(nil), "google.firestore.admin.v1.Index")
|
||||
proto.RegisterType((*Index_IndexField)(nil), "google.firestore.admin.v1.Index.IndexField")
|
||||
proto.RegisterEnum("google.firestore.admin.v1.Index_QueryScope", Index_QueryScope_name, Index_QueryScope_value)
|
||||
proto.RegisterEnum("google.firestore.admin.v1.Index_State", Index_State_name, Index_State_value)
|
||||
proto.RegisterEnum("google.firestore.admin.v1.Index_IndexField_Order", Index_IndexField_Order_name, Index_IndexField_Order_value)
|
||||
proto.RegisterEnum("google.firestore.admin.v1.Index_IndexField_ArrayConfig", Index_IndexField_ArrayConfig_name, Index_IndexField_ArrayConfig_value)
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1/index.proto", fileDescriptor_index_ed7772aaf3db632e)
|
||||
}
|
||||
|
||||
var fileDescriptor_index_ed7772aaf3db632e = []byte{
|
||||
// 554 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0xdf, 0x6a, 0xdb, 0x30,
|
||||
0x14, 0xc6, 0x6b, 0xa7, 0x2e, 0xcb, 0x49, 0x56, 0x3c, 0xc1, 0x98, 0xd7, 0xb5, 0xac, 0x04, 0x36,
|
||||
0x02, 0x03, 0x9b, 0x6c, 0x17, 0xa3, 0xec, 0x0f, 0x38, 0xb6, 0x92, 0x1a, 0x82, 0xed, 0xca, 0x69,
|
||||
0x21, 0x23, 0x60, 0xb4, 0x58, 0x71, 0x0d, 0x89, 0x95, 0xda, 0x4e, 0x58, 0x5f, 0x67, 0x97, 0x7b,
|
||||
0x82, 0x3d, 0xc3, 0xee, 0x76, 0xbf, 0x87, 0x19, 0x96, 0xb3, 0x64, 0x94, 0x96, 0xad, 0x37, 0xe6,
|
||||
0xc8, 0xfe, 0xbe, 0xdf, 0xa7, 0x63, 0xe9, 0xc0, 0x8b, 0x98, 0xf3, 0x78, 0xc6, 0x8c, 0x69, 0x92,
|
||||
0xb1, 0xbc, 0xe0, 0x19, 0x33, 0x68, 0x34, 0x4f, 0x52, 0x63, 0xd5, 0x31, 0x92, 0x34, 0x62, 0x5f,
|
||||
0xf4, 0x45, 0xc6, 0x0b, 0x8e, 0x9e, 0x56, 0x32, 0x7d, 0x23, 0xd3, 0x85, 0x4c, 0x5f, 0x75, 0x0e,
|
||||
0x0e, 0xd7, 0x04, 0xba, 0x48, 0x0c, 0x9a, 0xa6, 0xbc, 0xa0, 0x45, 0xc2, 0xd3, 0xbc, 0x32, 0xb6,
|
||||
0x7e, 0x2a, 0xa0, 0x38, 0x25, 0x08, 0x21, 0xd8, 0x4d, 0xe9, 0x9c, 0x69, 0xd2, 0xb1, 0xd4, 0xae,
|
||||
0x13, 0x51, 0xa3, 0x01, 0x34, 0xae, 0x96, 0x2c, 0xbb, 0x0e, 0xf3, 0x09, 0x5f, 0x30, 0x4d, 0x3e,
|
||||
0x96, 0xda, 0xfb, 0xaf, 0x5f, 0xe9, 0x77, 0x86, 0xe9, 0x02, 0xa5, 0x9f, 0x95, 0x9e, 0xa0, 0xb4,
|
||||
0x10, 0xb8, 0xda, 0xd4, 0xc8, 0x82, 0xbd, 0x69, 0xc2, 0x66, 0x51, 0xae, 0xd5, 0x8e, 0x6b, 0xed,
|
||||
0xc6, 0x7f, 0x80, 0xc4, 0xb3, 0x57, 0x7a, 0xc8, 0xda, 0x8a, 0xde, 0x83, 0x92, 0x17, 0xb4, 0x60,
|
||||
0xda, 0xae, 0xd8, 0xcc, 0xcb, 0x7f, 0x32, 0x82, 0x52, 0x4d, 0x2a, 0xd3, 0xc1, 0x2f, 0x19, 0x60,
|
||||
0x0b, 0x45, 0x47, 0x00, 0x02, 0x1b, 0x2e, 0x68, 0x71, 0xb9, 0xee, 0xbc, 0x2e, 0xde, 0xf8, 0xb4,
|
||||
0xb8, 0x44, 0x0e, 0x28, 0x3c, 0x8b, 0x58, 0xb6, 0x6e, 0xbc, 0x73, 0x8f, 0xfd, 0xea, 0x5e, 0x69,
|
||||
0x3c, 0xdd, 0x21, 0x15, 0x01, 0x8d, 0xa1, 0x49, 0xb3, 0x8c, 0x5e, 0x87, 0x13, 0x9e, 0x4e, 0x93,
|
||||
0x58, 0xab, 0x09, 0xe2, 0xdb, 0xfb, 0x10, 0xcd, 0xd2, 0x6f, 0x09, 0xfb, 0xe9, 0x0e, 0x69, 0xd0,
|
||||
0xed, 0xb2, 0xf5, 0x01, 0x14, 0x91, 0x87, 0x1e, 0xc3, 0x23, 0x8f, 0xd8, 0x98, 0x84, 0xe7, 0x6e,
|
||||
0xe0, 0x63, 0xcb, 0xe9, 0x39, 0xd8, 0x56, 0x77, 0xd0, 0x43, 0xa8, 0x9b, 0x81, 0x85, 0x5d, 0xdb,
|
||||
0x71, 0xfb, 0xaa, 0x84, 0xf6, 0x01, 0x6c, 0xbc, 0x59, 0xcb, 0xad, 0x13, 0x68, 0xfc, 0x05, 0x47,
|
||||
0x87, 0xa0, 0x99, 0x84, 0x98, 0xa3, 0xd0, 0xf2, 0xdc, 0x9e, 0xd3, 0xbf, 0xc1, 0x6a, 0xc2, 0x03,
|
||||
0xcb, 0x73, 0x87, 0xa6, 0xe3, 0x06, 0xaa, 0xd4, 0x6d, 0x02, 0xac, 0xe8, 0x6c, 0xc9, 0xc2, 0x39,
|
||||
0x8f, 0x58, 0xeb, 0x04, 0x60, 0x7b, 0xf6, 0xe8, 0x19, 0x3c, 0x39, 0x3b, 0xc7, 0x64, 0x14, 0x06,
|
||||
0x96, 0xe7, 0xe3, 0x1b, 0x98, 0x7d, 0x00, 0xcb, 0x1b, 0x0c, 0xb0, 0x35, 0x74, 0x3c, 0x57, 0x95,
|
||||
0x5a, 0x0e, 0x28, 0xe2, 0xa4, 0xca, 0x16, 0x82, 0xa1, 0x39, 0xc4, 0xb7, 0xc4, 0x12, 0x6c, 0x0e,
|
||||
0xab, 0x0e, 0xea, 0xa0, 0x10, 0x6c, 0xda, 0x23, 0x55, 0x46, 0x2a, 0x34, 0x5d, 0x8c, 0xed, 0x20,
|
||||
0x24, 0xd8, 0x37, 0x1d, 0xa2, 0xd6, 0xba, 0xdf, 0x25, 0x38, 0x9a, 0xf0, 0xf9, 0xdd, 0xff, 0xb6,
|
||||
0x5b, 0xdd, 0x01, 0xbf, 0x9c, 0x00, 0x5f, 0xfa, 0xf4, 0x71, 0x2d, 0x8c, 0xf9, 0x8c, 0xa6, 0xb1,
|
||||
0xce, 0xb3, 0xd8, 0x88, 0x59, 0x2a, 0xe6, 0xc3, 0xa8, 0x3e, 0xd1, 0x45, 0x92, 0xdf, 0x32, 0x82,
|
||||
0xef, 0x44, 0xf1, 0x55, 0xde, 0xed, 0x5b, 0xbd, 0xe0, 0x9b, 0xfc, 0xbc, 0x5f, 0x71, 0xac, 0x19,
|
||||
0x5f, 0x46, 0x7a, 0x6f, 0x13, 0x6b, 0x8a, 0xd8, 0x8b, 0xce, 0x8f, 0x3f, 0x8a, 0xb1, 0x50, 0x8c,
|
||||
0x37, 0x8a, 0xb1, 0x50, 0x8c, 0x2f, 0x3a, 0x9f, 0xf7, 0x44, 0xea, 0x9b, 0xdf, 0x01, 0x00, 0x00,
|
||||
0xff, 0xff, 0xb0, 0x5a, 0xfb, 0xcf, 0xf7, 0x03, 0x00, 0x00,
|
||||
}
|
79
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1/location.pb.go
generated
vendored
Normal file
79
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1/location.pb.go
generated
vendored
Normal file
@ -0,0 +1,79 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/firestore/admin/v1/location.proto
|
||||
|
||||
package admin // import "google.golang.org/genproto/googleapis/firestore/admin/v1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
import _ "google.golang.org/genproto/googleapis/type/latlng"
|
||||
|
||||
// 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
|
||||
|
||||
// The metadata message for [google.cloud.location.Location.metadata][google.cloud.location.Location.metadata].
|
||||
type LocationMetadata struct {
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *LocationMetadata) Reset() { *m = LocationMetadata{} }
|
||||
func (m *LocationMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*LocationMetadata) ProtoMessage() {}
|
||||
func (*LocationMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_location_d6351944632cbafa, []int{0}
|
||||
}
|
||||
func (m *LocationMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_LocationMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *LocationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_LocationMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *LocationMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_LocationMetadata.Merge(dst, src)
|
||||
}
|
||||
func (m *LocationMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_LocationMetadata.Size(m)
|
||||
}
|
||||
func (m *LocationMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_LocationMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_LocationMetadata proto.InternalMessageInfo
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*LocationMetadata)(nil), "google.firestore.admin.v1.LocationMetadata")
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1/location.proto", fileDescriptor_location_d6351944632cbafa)
|
||||
}
|
||||
|
||||
var fileDescriptor_location_d6351944632cbafa = []byte{
|
||||
// 230 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x48, 0xcf, 0xcf, 0x4f,
|
||||
0xcf, 0x49, 0xd5, 0x4f, 0xcb, 0x2c, 0x4a, 0x2d, 0x2e, 0xc9, 0x2f, 0x4a, 0xd5, 0x4f, 0x4c, 0xc9,
|
||||
0xcd, 0xcc, 0xd3, 0x2f, 0x33, 0xd4, 0xcf, 0xc9, 0x4f, 0x4e, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x2b,
|
||||
0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x84, 0xa8, 0xd4, 0x83, 0xab, 0xd4, 0x03, 0xab, 0xd4, 0x2b,
|
||||
0x33, 0x94, 0x92, 0x81, 0x1a, 0x92, 0x58, 0x90, 0xa9, 0x9f, 0x98, 0x97, 0x97, 0x5f, 0x02, 0xd6,
|
||||
0x57, 0x0c, 0xd1, 0x28, 0x25, 0x01, 0x95, 0x2d, 0xa9, 0x2c, 0x48, 0xd5, 0xcf, 0x49, 0x2c, 0xc9,
|
||||
0xc9, 0x4b, 0x87, 0xc8, 0x28, 0x09, 0x71, 0x09, 0xf8, 0x40, 0x2d, 0xf1, 0x4d, 0x2d, 0x49, 0x4c,
|
||||
0x49, 0x2c, 0x49, 0x74, 0xda, 0xcd, 0xc8, 0x25, 0x9b, 0x9c, 0x9f, 0xab, 0x87, 0xd3, 0x36, 0x27,
|
||||
0x5e, 0x98, 0x9e, 0x00, 0x90, 0x21, 0x01, 0x8c, 0x51, 0x76, 0x50, 0xb5, 0xe9, 0xf9, 0x39, 0x89,
|
||||
0x79, 0xe9, 0x7a, 0xf9, 0x45, 0xe9, 0xfa, 0xe9, 0xa9, 0x79, 0x60, 0x2b, 0xf4, 0x21, 0x52, 0x89,
|
||||
0x05, 0x99, 0xc5, 0x58, 0xbc, 0x68, 0x0d, 0x66, 0x2c, 0x62, 0x62, 0x71, 0x77, 0x76, 0x0b, 0x5e,
|
||||
0xc5, 0x24, 0xef, 0x0e, 0x31, 0xc7, 0x39, 0x27, 0xbf, 0x34, 0x45, 0xcf, 0x0d, 0x6e, 0xb3, 0x23,
|
||||
0xd8, 0xe6, 0x30, 0xc3, 0x53, 0x30, 0x15, 0x31, 0x60, 0x15, 0x31, 0x70, 0x15, 0x31, 0x60, 0x15,
|
||||
0x31, 0x61, 0x86, 0x49, 0x6c, 0x60, 0x5b, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb6,
|
||||
0x56, 0xea, 0x57, 0x01, 0x00, 0x00,
|
||||
}
|
698
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1/operation.pb.go
generated
vendored
Normal file
698
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1/operation.pb.go
generated
vendored
Normal file
@ -0,0 +1,698 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/firestore/admin/v1/operation.proto
|
||||
|
||||
package admin // import "google.golang.org/genproto/googleapis/firestore/admin/v1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
|
||||
// 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
|
||||
|
||||
// Describes the state of the operation.
|
||||
type OperationState int32
|
||||
|
||||
const (
|
||||
// Unspecified.
|
||||
OperationState_OPERATION_STATE_UNSPECIFIED OperationState = 0
|
||||
// Request is being prepared for processing.
|
||||
OperationState_INITIALIZING OperationState = 1
|
||||
// Request is actively being processed.
|
||||
OperationState_PROCESSING OperationState = 2
|
||||
// Request is in the process of being cancelled after user called
|
||||
// google.longrunning.Operations.CancelOperation on the operation.
|
||||
OperationState_CANCELLING OperationState = 3
|
||||
// Request has been processed and is in its finalization stage.
|
||||
OperationState_FINALIZING OperationState = 4
|
||||
// Request has completed successfully.
|
||||
OperationState_SUCCESSFUL OperationState = 5
|
||||
// Request has finished being processed, but encountered an error.
|
||||
OperationState_FAILED OperationState = 6
|
||||
// Request has finished being cancelled after user called
|
||||
// google.longrunning.Operations.CancelOperation.
|
||||
OperationState_CANCELLED OperationState = 7
|
||||
)
|
||||
|
||||
var OperationState_name = map[int32]string{
|
||||
0: "OPERATION_STATE_UNSPECIFIED",
|
||||
1: "INITIALIZING",
|
||||
2: "PROCESSING",
|
||||
3: "CANCELLING",
|
||||
4: "FINALIZING",
|
||||
5: "SUCCESSFUL",
|
||||
6: "FAILED",
|
||||
7: "CANCELLED",
|
||||
}
|
||||
var OperationState_value = map[string]int32{
|
||||
"OPERATION_STATE_UNSPECIFIED": 0,
|
||||
"INITIALIZING": 1,
|
||||
"PROCESSING": 2,
|
||||
"CANCELLING": 3,
|
||||
"FINALIZING": 4,
|
||||
"SUCCESSFUL": 5,
|
||||
"FAILED": 6,
|
||||
"CANCELLED": 7,
|
||||
}
|
||||
|
||||
func (x OperationState) String() string {
|
||||
return proto.EnumName(OperationState_name, int32(x))
|
||||
}
|
||||
func (OperationState) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_ab210cd74615767a, []int{0}
|
||||
}
|
||||
|
||||
// Specifies how the index is changing.
|
||||
type FieldOperationMetadata_IndexConfigDelta_ChangeType int32
|
||||
|
||||
const (
|
||||
// The type of change is not specified or known.
|
||||
FieldOperationMetadata_IndexConfigDelta_CHANGE_TYPE_UNSPECIFIED FieldOperationMetadata_IndexConfigDelta_ChangeType = 0
|
||||
// The single field index is being added.
|
||||
FieldOperationMetadata_IndexConfigDelta_ADD FieldOperationMetadata_IndexConfigDelta_ChangeType = 1
|
||||
// The single field index is being removed.
|
||||
FieldOperationMetadata_IndexConfigDelta_REMOVE FieldOperationMetadata_IndexConfigDelta_ChangeType = 2
|
||||
)
|
||||
|
||||
var FieldOperationMetadata_IndexConfigDelta_ChangeType_name = map[int32]string{
|
||||
0: "CHANGE_TYPE_UNSPECIFIED",
|
||||
1: "ADD",
|
||||
2: "REMOVE",
|
||||
}
|
||||
var FieldOperationMetadata_IndexConfigDelta_ChangeType_value = map[string]int32{
|
||||
"CHANGE_TYPE_UNSPECIFIED": 0,
|
||||
"ADD": 1,
|
||||
"REMOVE": 2,
|
||||
}
|
||||
|
||||
func (x FieldOperationMetadata_IndexConfigDelta_ChangeType) String() string {
|
||||
return proto.EnumName(FieldOperationMetadata_IndexConfigDelta_ChangeType_name, int32(x))
|
||||
}
|
||||
func (FieldOperationMetadata_IndexConfigDelta_ChangeType) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_ab210cd74615767a, []int{1, 0, 0}
|
||||
}
|
||||
|
||||
// Metadata for [google.longrunning.Operation][google.longrunning.Operation] results from
|
||||
// [FirestoreAdmin.CreateIndex][google.firestore.admin.v1.FirestoreAdmin.CreateIndex].
|
||||
type IndexOperationMetadata struct {
|
||||
// The time this operation started.
|
||||
StartTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
||||
// The time this operation completed. Will be unset if operation still in
|
||||
// progress.
|
||||
EndTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
||||
// The index resource that this operation is acting on. For example:
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}`
|
||||
Index string `protobuf:"bytes,3,opt,name=index,proto3" json:"index,omitempty"`
|
||||
// The state of the operation.
|
||||
State OperationState `protobuf:"varint,4,opt,name=state,proto3,enum=google.firestore.admin.v1.OperationState" json:"state,omitempty"`
|
||||
// The progress, in documents, of this operation.
|
||||
ProgressDocuments *Progress `protobuf:"bytes,5,opt,name=progress_documents,json=progressDocuments,proto3" json:"progress_documents,omitempty"`
|
||||
// The progress, in bytes, of this operation.
|
||||
ProgressBytes *Progress `protobuf:"bytes,6,opt,name=progress_bytes,json=progressBytes,proto3" json:"progress_bytes,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) Reset() { *m = IndexOperationMetadata{} }
|
||||
func (m *IndexOperationMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*IndexOperationMetadata) ProtoMessage() {}
|
||||
func (*IndexOperationMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_ab210cd74615767a, []int{0}
|
||||
}
|
||||
func (m *IndexOperationMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_IndexOperationMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *IndexOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_IndexOperationMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *IndexOperationMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_IndexOperationMetadata.Merge(dst, src)
|
||||
}
|
||||
func (m *IndexOperationMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_IndexOperationMetadata.Size(m)
|
||||
}
|
||||
func (m *IndexOperationMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_IndexOperationMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_IndexOperationMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *IndexOperationMetadata) GetStartTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.StartTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) GetEndTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.EndTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) GetIndex() string {
|
||||
if m != nil {
|
||||
return m.Index
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) GetState() OperationState {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return OperationState_OPERATION_STATE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) GetProgressDocuments() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressDocuments
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) GetProgressBytes() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressBytes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Metadata for [google.longrunning.Operation][google.longrunning.Operation] results from
|
||||
// [FirestoreAdmin.UpdateField][google.firestore.admin.v1.FirestoreAdmin.UpdateField].
|
||||
type FieldOperationMetadata struct {
|
||||
// The time this operation started.
|
||||
StartTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
||||
// The time this operation completed. Will be unset if operation still in
|
||||
// progress.
|
||||
EndTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
||||
// The field resource that this operation is acting on. For example:
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/fields/{field_path}`
|
||||
Field string `protobuf:"bytes,3,opt,name=field,proto3" json:"field,omitempty"`
|
||||
// A list of [IndexConfigDelta][google.firestore.admin.v1.FieldOperationMetadata.IndexConfigDelta], which describe the intent of this
|
||||
// operation.
|
||||
IndexConfigDeltas []*FieldOperationMetadata_IndexConfigDelta `protobuf:"bytes,4,rep,name=index_config_deltas,json=indexConfigDeltas,proto3" json:"index_config_deltas,omitempty"`
|
||||
// The state of the operation.
|
||||
State OperationState `protobuf:"varint,5,opt,name=state,proto3,enum=google.firestore.admin.v1.OperationState" json:"state,omitempty"`
|
||||
// The progress, in documents, of this operation.
|
||||
ProgressDocuments *Progress `protobuf:"bytes,6,opt,name=progress_documents,json=progressDocuments,proto3" json:"progress_documents,omitempty"`
|
||||
// The progress, in bytes, of this operation.
|
||||
ProgressBytes *Progress `protobuf:"bytes,7,opt,name=progress_bytes,json=progressBytes,proto3" json:"progress_bytes,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *FieldOperationMetadata) Reset() { *m = FieldOperationMetadata{} }
|
||||
func (m *FieldOperationMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*FieldOperationMetadata) ProtoMessage() {}
|
||||
func (*FieldOperationMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_ab210cd74615767a, []int{1}
|
||||
}
|
||||
func (m *FieldOperationMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_FieldOperationMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *FieldOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_FieldOperationMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *FieldOperationMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_FieldOperationMetadata.Merge(dst, src)
|
||||
}
|
||||
func (m *FieldOperationMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_FieldOperationMetadata.Size(m)
|
||||
}
|
||||
func (m *FieldOperationMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_FieldOperationMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_FieldOperationMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *FieldOperationMetadata) GetStartTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.StartTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *FieldOperationMetadata) GetEndTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.EndTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *FieldOperationMetadata) GetField() string {
|
||||
if m != nil {
|
||||
return m.Field
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *FieldOperationMetadata) GetIndexConfigDeltas() []*FieldOperationMetadata_IndexConfigDelta {
|
||||
if m != nil {
|
||||
return m.IndexConfigDeltas
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *FieldOperationMetadata) GetState() OperationState {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return OperationState_OPERATION_STATE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *FieldOperationMetadata) GetProgressDocuments() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressDocuments
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *FieldOperationMetadata) GetProgressBytes() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressBytes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Information about an index configuration change.
|
||||
type FieldOperationMetadata_IndexConfigDelta struct {
|
||||
// Specifies how the index is changing.
|
||||
ChangeType FieldOperationMetadata_IndexConfigDelta_ChangeType `protobuf:"varint,1,opt,name=change_type,json=changeType,proto3,enum=google.firestore.admin.v1.FieldOperationMetadata_IndexConfigDelta_ChangeType" json:"change_type,omitempty"`
|
||||
// The index being changed.
|
||||
Index *Index `protobuf:"bytes,2,opt,name=index,proto3" json:"index,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *FieldOperationMetadata_IndexConfigDelta) Reset() {
|
||||
*m = FieldOperationMetadata_IndexConfigDelta{}
|
||||
}
|
||||
func (m *FieldOperationMetadata_IndexConfigDelta) String() string { return proto.CompactTextString(m) }
|
||||
func (*FieldOperationMetadata_IndexConfigDelta) ProtoMessage() {}
|
||||
func (*FieldOperationMetadata_IndexConfigDelta) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_ab210cd74615767a, []int{1, 0}
|
||||
}
|
||||
func (m *FieldOperationMetadata_IndexConfigDelta) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_FieldOperationMetadata_IndexConfigDelta.Unmarshal(m, b)
|
||||
}
|
||||
func (m *FieldOperationMetadata_IndexConfigDelta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_FieldOperationMetadata_IndexConfigDelta.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *FieldOperationMetadata_IndexConfigDelta) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_FieldOperationMetadata_IndexConfigDelta.Merge(dst, src)
|
||||
}
|
||||
func (m *FieldOperationMetadata_IndexConfigDelta) XXX_Size() int {
|
||||
return xxx_messageInfo_FieldOperationMetadata_IndexConfigDelta.Size(m)
|
||||
}
|
||||
func (m *FieldOperationMetadata_IndexConfigDelta) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_FieldOperationMetadata_IndexConfigDelta.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_FieldOperationMetadata_IndexConfigDelta proto.InternalMessageInfo
|
||||
|
||||
func (m *FieldOperationMetadata_IndexConfigDelta) GetChangeType() FieldOperationMetadata_IndexConfigDelta_ChangeType {
|
||||
if m != nil {
|
||||
return m.ChangeType
|
||||
}
|
||||
return FieldOperationMetadata_IndexConfigDelta_CHANGE_TYPE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *FieldOperationMetadata_IndexConfigDelta) GetIndex() *Index {
|
||||
if m != nil {
|
||||
return m.Index
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Metadata for [google.longrunning.Operation][google.longrunning.Operation] results from
|
||||
// [FirestoreAdmin.ExportDocuments][google.firestore.admin.v1.FirestoreAdmin.ExportDocuments].
|
||||
type ExportDocumentsMetadata struct {
|
||||
// The time this operation started.
|
||||
StartTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
||||
// The time this operation completed. Will be unset if operation still in
|
||||
// progress.
|
||||
EndTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
||||
// The state of the export operation.
|
||||
OperationState OperationState `protobuf:"varint,3,opt,name=operation_state,json=operationState,proto3,enum=google.firestore.admin.v1.OperationState" json:"operation_state,omitempty"`
|
||||
// The progress, in documents, of this operation.
|
||||
ProgressDocuments *Progress `protobuf:"bytes,4,opt,name=progress_documents,json=progressDocuments,proto3" json:"progress_documents,omitempty"`
|
||||
// The progress, in bytes, of this operation.
|
||||
ProgressBytes *Progress `protobuf:"bytes,5,opt,name=progress_bytes,json=progressBytes,proto3" json:"progress_bytes,omitempty"`
|
||||
// Which collection ids are being exported.
|
||||
CollectionIds []string `protobuf:"bytes,6,rep,name=collection_ids,json=collectionIds,proto3" json:"collection_ids,omitempty"`
|
||||
// Where the entities are being exported to.
|
||||
OutputUriPrefix string `protobuf:"bytes,7,opt,name=output_uri_prefix,json=outputUriPrefix,proto3" json:"output_uri_prefix,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) Reset() { *m = ExportDocumentsMetadata{} }
|
||||
func (m *ExportDocumentsMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportDocumentsMetadata) ProtoMessage() {}
|
||||
func (*ExportDocumentsMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_ab210cd74615767a, []int{2}
|
||||
}
|
||||
func (m *ExportDocumentsMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportDocumentsMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ExportDocumentsMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ExportDocumentsMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ExportDocumentsMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ExportDocumentsMetadata.Merge(dst, src)
|
||||
}
|
||||
func (m *ExportDocumentsMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_ExportDocumentsMetadata.Size(m)
|
||||
}
|
||||
func (m *ExportDocumentsMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ExportDocumentsMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ExportDocumentsMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetStartTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.StartTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetEndTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.EndTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetOperationState() OperationState {
|
||||
if m != nil {
|
||||
return m.OperationState
|
||||
}
|
||||
return OperationState_OPERATION_STATE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetProgressDocuments() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressDocuments
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetProgressBytes() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressBytes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetCollectionIds() []string {
|
||||
if m != nil {
|
||||
return m.CollectionIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetOutputUriPrefix() string {
|
||||
if m != nil {
|
||||
return m.OutputUriPrefix
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Metadata for [google.longrunning.Operation][google.longrunning.Operation] results from
|
||||
// [FirestoreAdmin.ImportDocuments][google.firestore.admin.v1.FirestoreAdmin.ImportDocuments].
|
||||
type ImportDocumentsMetadata struct {
|
||||
// The time this operation started.
|
||||
StartTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
||||
// The time this operation completed. Will be unset if operation still in
|
||||
// progress.
|
||||
EndTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
||||
// The state of the import operation.
|
||||
OperationState OperationState `protobuf:"varint,3,opt,name=operation_state,json=operationState,proto3,enum=google.firestore.admin.v1.OperationState" json:"operation_state,omitempty"`
|
||||
// The progress, in documents, of this operation.
|
||||
ProgressDocuments *Progress `protobuf:"bytes,4,opt,name=progress_documents,json=progressDocuments,proto3" json:"progress_documents,omitempty"`
|
||||
// The progress, in bytes, of this operation.
|
||||
ProgressBytes *Progress `protobuf:"bytes,5,opt,name=progress_bytes,json=progressBytes,proto3" json:"progress_bytes,omitempty"`
|
||||
// Which collection ids are being imported.
|
||||
CollectionIds []string `protobuf:"bytes,6,rep,name=collection_ids,json=collectionIds,proto3" json:"collection_ids,omitempty"`
|
||||
// The location of the documents being imported.
|
||||
InputUriPrefix string `protobuf:"bytes,7,opt,name=input_uri_prefix,json=inputUriPrefix,proto3" json:"input_uri_prefix,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) Reset() { *m = ImportDocumentsMetadata{} }
|
||||
func (m *ImportDocumentsMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*ImportDocumentsMetadata) ProtoMessage() {}
|
||||
func (*ImportDocumentsMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_ab210cd74615767a, []int{3}
|
||||
}
|
||||
func (m *ImportDocumentsMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ImportDocumentsMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ImportDocumentsMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ImportDocumentsMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ImportDocumentsMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ImportDocumentsMetadata.Merge(dst, src)
|
||||
}
|
||||
func (m *ImportDocumentsMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_ImportDocumentsMetadata.Size(m)
|
||||
}
|
||||
func (m *ImportDocumentsMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ImportDocumentsMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ImportDocumentsMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetStartTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.StartTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetEndTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.EndTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetOperationState() OperationState {
|
||||
if m != nil {
|
||||
return m.OperationState
|
||||
}
|
||||
return OperationState_OPERATION_STATE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetProgressDocuments() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressDocuments
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetProgressBytes() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressBytes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetCollectionIds() []string {
|
||||
if m != nil {
|
||||
return m.CollectionIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetInputUriPrefix() string {
|
||||
if m != nil {
|
||||
return m.InputUriPrefix
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Returned in the [google.longrunning.Operation][google.longrunning.Operation] response field.
|
||||
type ExportDocumentsResponse struct {
|
||||
// Location of the output files. This can be used to begin an import
|
||||
// into Cloud Firestore (this project or another project) after the operation
|
||||
// completes successfully.
|
||||
OutputUriPrefix string `protobuf:"bytes,1,opt,name=output_uri_prefix,json=outputUriPrefix,proto3" json:"output_uri_prefix,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsResponse) Reset() { *m = ExportDocumentsResponse{} }
|
||||
func (m *ExportDocumentsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportDocumentsResponse) ProtoMessage() {}
|
||||
func (*ExportDocumentsResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_ab210cd74615767a, []int{4}
|
||||
}
|
||||
func (m *ExportDocumentsResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportDocumentsResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ExportDocumentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ExportDocumentsResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ExportDocumentsResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ExportDocumentsResponse.Merge(dst, src)
|
||||
}
|
||||
func (m *ExportDocumentsResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_ExportDocumentsResponse.Size(m)
|
||||
}
|
||||
func (m *ExportDocumentsResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ExportDocumentsResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ExportDocumentsResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *ExportDocumentsResponse) GetOutputUriPrefix() string {
|
||||
if m != nil {
|
||||
return m.OutputUriPrefix
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Describes the progress of the operation.
|
||||
// Unit of work is generic and must be interpreted based on where [Progress][google.firestore.admin.v1.Progress]
|
||||
// is used.
|
||||
type Progress struct {
|
||||
// The amount of work estimated.
|
||||
EstimatedWork int64 `protobuf:"varint,1,opt,name=estimated_work,json=estimatedWork,proto3" json:"estimated_work,omitempty"`
|
||||
// The amount of work completed.
|
||||
CompletedWork int64 `protobuf:"varint,2,opt,name=completed_work,json=completedWork,proto3" json:"completed_work,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_operation_ab210cd74615767a, []int{5}
|
||||
}
|
||||
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 (dst *Progress) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Progress.Merge(dst, 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) GetEstimatedWork() int64 {
|
||||
if m != nil {
|
||||
return m.EstimatedWork
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *Progress) GetCompletedWork() int64 {
|
||||
if m != nil {
|
||||
return m.CompletedWork
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*IndexOperationMetadata)(nil), "google.firestore.admin.v1.IndexOperationMetadata")
|
||||
proto.RegisterType((*FieldOperationMetadata)(nil), "google.firestore.admin.v1.FieldOperationMetadata")
|
||||
proto.RegisterType((*FieldOperationMetadata_IndexConfigDelta)(nil), "google.firestore.admin.v1.FieldOperationMetadata.IndexConfigDelta")
|
||||
proto.RegisterType((*ExportDocumentsMetadata)(nil), "google.firestore.admin.v1.ExportDocumentsMetadata")
|
||||
proto.RegisterType((*ImportDocumentsMetadata)(nil), "google.firestore.admin.v1.ImportDocumentsMetadata")
|
||||
proto.RegisterType((*ExportDocumentsResponse)(nil), "google.firestore.admin.v1.ExportDocumentsResponse")
|
||||
proto.RegisterType((*Progress)(nil), "google.firestore.admin.v1.Progress")
|
||||
proto.RegisterEnum("google.firestore.admin.v1.OperationState", OperationState_name, OperationState_value)
|
||||
proto.RegisterEnum("google.firestore.admin.v1.FieldOperationMetadata_IndexConfigDelta_ChangeType", FieldOperationMetadata_IndexConfigDelta_ChangeType_name, FieldOperationMetadata_IndexConfigDelta_ChangeType_value)
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1/operation.proto", fileDescriptor_operation_ab210cd74615767a)
|
||||
}
|
||||
|
||||
var fileDescriptor_operation_ab210cd74615767a = []byte{
|
||||
// 848 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0x4f, 0x6f, 0xe3, 0x44,
|
||||
0x1c, 0xc5, 0x71, 0x92, 0x6e, 0x7e, 0xa5, 0x59, 0x77, 0x40, 0xdb, 0xd0, 0x05, 0x35, 0x0a, 0x5a,
|
||||
0x29, 0xbb, 0x07, 0x47, 0x2d, 0x02, 0x09, 0x21, 0x2d, 0x4a, 0x1d, 0xa7, 0x18, 0xa5, 0x89, 0xe5,
|
||||
0xa4, 0x05, 0x56, 0x95, 0x2c, 0x37, 0x9e, 0x98, 0xd1, 0xda, 0x1e, 0xcb, 0x33, 0x59, 0xda, 0x23,
|
||||
0x5f, 0x84, 0x03, 0x47, 0x3e, 0x03, 0x9f, 0x80, 0x13, 0xe2, 0xa3, 0x70, 0xe4, 0x84, 0x66, 0xfc,
|
||||
0x27, 0xda, 0x92, 0x14, 0x58, 0x2a, 0xb1, 0x87, 0xbd, 0xe5, 0xf7, 0xf3, 0x7b, 0x6f, 0x7e, 0x33,
|
||||
0xef, 0xcd, 0x28, 0xf0, 0x38, 0xa0, 0x34, 0x08, 0x71, 0x6f, 0x41, 0x52, 0xcc, 0x38, 0x4d, 0x71,
|
||||
0xcf, 0xf3, 0x23, 0x12, 0xf7, 0x5e, 0x1c, 0xf6, 0x68, 0x82, 0x53, 0x8f, 0x13, 0x1a, 0xeb, 0x49,
|
||||
0x4a, 0x39, 0x45, 0xef, 0x65, 0x50, 0xbd, 0x84, 0xea, 0x12, 0xaa, 0xbf, 0x38, 0xdc, 0x7f, 0x3f,
|
||||
0x57, 0xf1, 0x12, 0xd2, 0xf3, 0xe2, 0x98, 0x72, 0xc9, 0x63, 0x19, 0x71, 0xff, 0xd1, 0xe6, 0x35,
|
||||
0x48, 0xec, 0xe3, 0xab, 0x1c, 0x76, 0x90, 0xc3, 0x64, 0x75, 0xb9, 0x5c, 0xf4, 0x38, 0x89, 0x30,
|
||||
0xe3, 0x5e, 0x94, 0x64, 0x80, 0xce, 0xf7, 0x2a, 0x3c, 0xb0, 0x04, 0x61, 0x52, 0x4c, 0x76, 0x8a,
|
||||
0xb9, 0xe7, 0x7b, 0xdc, 0x43, 0x9f, 0x02, 0x30, 0xee, 0xa5, 0xdc, 0x15, 0x9c, 0x96, 0xd2, 0x56,
|
||||
0xba, 0xdb, 0x47, 0xfb, 0x7a, 0x3e, 0x70, 0x21, 0xa8, 0xcf, 0x0a, 0x41, 0xa7, 0x21, 0xd1, 0xa2,
|
||||
0x46, 0x1f, 0xc3, 0x3d, 0x1c, 0xfb, 0x19, 0xb1, 0xf2, 0xb7, 0xc4, 0x2d, 0x1c, 0xfb, 0x92, 0xf6,
|
||||
0x2e, 0xd4, 0xe4, 0xf0, 0x2d, 0xb5, 0xad, 0x74, 0x1b, 0x4e, 0x56, 0xa0, 0xcf, 0xa1, 0xc6, 0xb8,
|
||||
0xc7, 0x71, 0xab, 0xda, 0x56, 0xba, 0xcd, 0xa3, 0xc7, 0xfa, 0xc6, 0x33, 0xd3, 0xcb, 0x4d, 0x4c,
|
||||
0x05, 0xc1, 0xc9, 0x78, 0xc8, 0x01, 0x94, 0xa4, 0x34, 0x48, 0x31, 0x63, 0xae, 0x4f, 0xe7, 0xcb,
|
||||
0x08, 0xc7, 0x9c, 0xb5, 0x6a, 0x72, 0xae, 0x0f, 0x6f, 0x51, 0xb3, 0x73, 0x92, 0xb3, 0x5b, 0xd0,
|
||||
0x07, 0x05, 0x1b, 0x7d, 0x09, 0xcd, 0x52, 0xf3, 0xf2, 0x9a, 0x63, 0xd6, 0xaa, 0xff, 0x73, 0xbd,
|
||||
0x9d, 0x82, 0x7a, 0x2c, 0x98, 0x9d, 0xdf, 0x6b, 0xf0, 0x60, 0x48, 0x70, 0xe8, 0xbf, 0x26, 0x1e,
|
||||
0x2c, 0xc4, 0x2c, 0x85, 0x07, 0xb2, 0x40, 0x29, 0xbc, 0x23, 0xcd, 0x70, 0xe7, 0x34, 0x5e, 0x90,
|
||||
0xc0, 0xf5, 0x71, 0xc8, 0x3d, 0xd6, 0xaa, 0xb6, 0xd5, 0xee, 0xf6, 0xd1, 0xf1, 0x2d, 0x7b, 0x5e,
|
||||
0xbf, 0x2f, 0x5d, 0x46, 0xce, 0x90, 0x5a, 0x03, 0x21, 0xe5, 0xec, 0x92, 0x1b, 0x1d, 0xb6, 0xf2,
|
||||
0xbd, 0x76, 0xa7, 0xbe, 0xd7, 0xef, 0xd8, 0xf7, 0xad, 0x57, 0xf5, 0x7d, 0xff, 0x0f, 0x05, 0xb4,
|
||||
0x9b, 0x07, 0x81, 0x62, 0xd8, 0x9e, 0x7f, 0xeb, 0xc5, 0x01, 0x76, 0xf9, 0x75, 0x92, 0x59, 0xde,
|
||||
0x3c, 0x3a, 0xfd, 0xef, 0x27, 0xac, 0x1b, 0x52, 0x75, 0x76, 0x9d, 0x60, 0x07, 0xe6, 0xe5, 0x6f,
|
||||
0xf4, 0x49, 0x71, 0xe7, 0xb2, 0x8c, 0xb4, 0x6f, 0x59, 0x49, 0x4a, 0xe6, 0xb7, 0xb2, 0xf3, 0x14,
|
||||
0x60, 0xa5, 0x88, 0x1e, 0xc2, 0x9e, 0xf1, 0x45, 0x7f, 0x7c, 0x62, 0xba, 0xb3, 0x6f, 0x6c, 0xd3,
|
||||
0x3d, 0x1b, 0x4f, 0x6d, 0xd3, 0xb0, 0x86, 0x96, 0x39, 0xd0, 0xde, 0x42, 0x5b, 0xa0, 0xf6, 0x07,
|
||||
0x03, 0x4d, 0x41, 0x00, 0x75, 0xc7, 0x3c, 0x9d, 0x9c, 0x9b, 0x5a, 0xa5, 0xf3, 0x9b, 0x0a, 0x7b,
|
||||
0xe6, 0x55, 0x42, 0x53, 0x5e, 0x1e, 0xee, 0xff, 0x98, 0x7a, 0x07, 0xee, 0x97, 0x4f, 0xb3, 0x9b,
|
||||
0xa5, 0x4e, 0xfd, 0xb7, 0xa9, 0x6b, 0xd2, 0x97, 0xea, 0x0d, 0xf1, 0xab, 0xde, 0x71, 0xfc, 0x6a,
|
||||
0xaf, 0x1a, 0x3f, 0xf4, 0x08, 0x9a, 0x73, 0x1a, 0x86, 0x78, 0x2e, 0x37, 0x4d, 0x7c, 0x71, 0x35,
|
||||
0xd4, 0x6e, 0xc3, 0xd9, 0x59, 0x75, 0x2d, 0x9f, 0xa1, 0x27, 0xb0, 0x4b, 0x97, 0x3c, 0x59, 0x72,
|
||||
0x77, 0x99, 0x12, 0x37, 0x49, 0xf1, 0x82, 0x5c, 0xc9, 0xd0, 0x37, 0x9c, 0xfb, 0xd9, 0x87, 0xb3,
|
||||
0x94, 0xd8, 0xb2, 0xdd, 0xf9, 0x55, 0x85, 0x3d, 0x2b, 0x7a, 0x63, 0xea, 0x6b, 0x6f, 0x6a, 0x17,
|
||||
0x34, 0x12, 0xaf, 0xf5, 0xb4, 0x29, 0xfb, 0x2b, 0x4b, 0xcd, 0xbf, 0x5c, 0x53, 0x07, 0xb3, 0x84,
|
||||
0xc6, 0x0c, 0xaf, 0x4f, 0x86, 0xb2, 0x3e, 0x19, 0x5f, 0xc3, 0xbd, 0x62, 0x64, 0x31, 0x23, 0x66,
|
||||
0x9c, 0x44, 0x1e, 0xc7, 0xbe, 0xfb, 0x1d, 0x4d, 0x9f, 0x4b, 0x92, 0xea, 0xec, 0x94, 0xdd, 0xaf,
|
||||
0x68, 0xfa, 0x3c, 0xdb, 0x4a, 0x94, 0x84, 0xb8, 0x84, 0x55, 0x32, 0x58, 0xd9, 0x15, 0xb0, 0x27,
|
||||
0x3f, 0x28, 0xd0, 0x7c, 0xd9, 0x34, 0x74, 0x00, 0x0f, 0x27, 0xb6, 0xe9, 0xf4, 0x67, 0xd6, 0x64,
|
||||
0xec, 0x4e, 0x67, 0xfd, 0xd9, 0xcd, 0x17, 0x49, 0x83, 0xb7, 0xad, 0xb1, 0x35, 0xb3, 0xfa, 0x23,
|
||||
0xeb, 0x99, 0x35, 0x3e, 0xd1, 0x14, 0xd4, 0x04, 0xb0, 0x9d, 0x89, 0x61, 0x4e, 0xa7, 0xa2, 0xae,
|
||||
0x88, 0xda, 0xe8, 0x8f, 0x0d, 0x73, 0x34, 0x12, 0xb5, 0x2a, 0xea, 0xa1, 0x35, 0x2e, 0xf0, 0x55,
|
||||
0x51, 0x4f, 0xcf, 0x0c, 0x81, 0x1f, 0x9e, 0x8d, 0xb4, 0x9a, 0x78, 0xda, 0x86, 0x7d, 0x6b, 0x64,
|
||||
0x0e, 0xb4, 0x3a, 0xda, 0x81, 0x46, 0xce, 0x35, 0x07, 0xda, 0xd6, 0xf1, 0xcf, 0x0a, 0x7c, 0x30,
|
||||
0xa7, 0xd1, 0x66, 0x33, 0x8f, 0x57, 0xf3, 0xdb, 0x22, 0xce, 0xb6, 0xf2, 0xec, 0x69, 0x0e, 0x0e,
|
||||
0x68, 0xe8, 0xc5, 0x81, 0x4e, 0xd3, 0xa0, 0x17, 0xe0, 0x58, 0x86, 0xbd, 0x97, 0x7d, 0xf2, 0x12,
|
||||
0xc2, 0xd6, 0xfc, 0xfb, 0xfb, 0x4c, 0xfe, 0xf8, 0xb1, 0x52, 0x3d, 0x31, 0x86, 0xd3, 0x9f, 0x2a,
|
||||
0x07, 0x27, 0x99, 0x8e, 0x11, 0xd2, 0xa5, 0xaf, 0x0f, 0xcb, 0xa5, 0xfb, 0x72, 0xe9, 0xf3, 0xc3,
|
||||
0x5f, 0x0a, 0xc4, 0x85, 0x44, 0x5c, 0x94, 0x88, 0x0b, 0x89, 0xb8, 0x38, 0x3f, 0xbc, 0xac, 0xcb,
|
||||
0x55, 0x3f, 0xfa, 0x33, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x64, 0x42, 0x3c, 0xd6, 0x0a, 0x00, 0x00,
|
||||
}
|
@ -76,7 +76,7 @@ func (x OperationState) String() string {
|
||||
return proto.EnumName(OperationState_name, int32(x))
|
||||
}
|
||||
func (OperationState) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{0}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{0}
|
||||
}
|
||||
|
||||
// The type of index operation.
|
||||
@ -102,7 +102,7 @@ func (x IndexOperationMetadata_OperationType) String() string {
|
||||
return proto.EnumName(IndexOperationMetadata_OperationType_name, int32(x))
|
||||
}
|
||||
func (IndexOperationMetadata_OperationType) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{0, 0}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{0, 0}
|
||||
}
|
||||
|
||||
// Metadata for index operations. This metadata populates
|
||||
@ -133,7 +133,7 @@ func (m *IndexOperationMetadata) Reset() { *m = IndexOperationMetadata{}
|
||||
func (m *IndexOperationMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*IndexOperationMetadata) ProtoMessage() {}
|
||||
func (*IndexOperationMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{0}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{0}
|
||||
}
|
||||
func (m *IndexOperationMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_IndexOperationMetadata.Unmarshal(m, b)
|
||||
@ -212,7 +212,7 @@ 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_firestore_admin_09f1d024c210e695, []int{1}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{1}
|
||||
}
|
||||
func (m *Progress) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Progress.Unmarshal(m, b)
|
||||
@ -263,7 +263,7 @@ func (m *CreateIndexRequest) Reset() { *m = CreateIndexRequest{} }
|
||||
func (m *CreateIndexRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*CreateIndexRequest) ProtoMessage() {}
|
||||
func (*CreateIndexRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{2}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{2}
|
||||
}
|
||||
func (m *CreateIndexRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CreateIndexRequest.Unmarshal(m, b)
|
||||
@ -311,7 +311,7 @@ func (m *GetIndexRequest) Reset() { *m = GetIndexRequest{} }
|
||||
func (m *GetIndexRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetIndexRequest) ProtoMessage() {}
|
||||
func (*GetIndexRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{3}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{3}
|
||||
}
|
||||
func (m *GetIndexRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetIndexRequest.Unmarshal(m, b)
|
||||
@ -357,7 +357,7 @@ func (m *ListIndexesRequest) Reset() { *m = ListIndexesRequest{} }
|
||||
func (m *ListIndexesRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListIndexesRequest) ProtoMessage() {}
|
||||
func (*ListIndexesRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{4}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{4}
|
||||
}
|
||||
func (m *ListIndexesRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListIndexesRequest.Unmarshal(m, b)
|
||||
@ -419,7 +419,7 @@ func (m *DeleteIndexRequest) Reset() { *m = DeleteIndexRequest{} }
|
||||
func (m *DeleteIndexRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*DeleteIndexRequest) ProtoMessage() {}
|
||||
func (*DeleteIndexRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{5}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{5}
|
||||
}
|
||||
func (m *DeleteIndexRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DeleteIndexRequest.Unmarshal(m, b)
|
||||
@ -461,7 +461,7 @@ func (m *ListIndexesResponse) Reset() { *m = ListIndexesResponse{} }
|
||||
func (m *ListIndexesResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListIndexesResponse) ProtoMessage() {}
|
||||
func (*ListIndexesResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{6}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{6}
|
||||
}
|
||||
func (m *ListIndexesResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListIndexesResponse.Unmarshal(m, b)
|
||||
@ -520,7 +520,7 @@ func (m *ExportDocumentsRequest) Reset() { *m = ExportDocumentsRequest{}
|
||||
func (m *ExportDocumentsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportDocumentsRequest) ProtoMessage() {}
|
||||
func (*ExportDocumentsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{7}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{7}
|
||||
}
|
||||
func (m *ExportDocumentsRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportDocumentsRequest.Unmarshal(m, b)
|
||||
@ -584,7 +584,7 @@ func (m *ImportDocumentsRequest) Reset() { *m = ImportDocumentsRequest{}
|
||||
func (m *ImportDocumentsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ImportDocumentsRequest) ProtoMessage() {}
|
||||
func (*ImportDocumentsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{8}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{8}
|
||||
}
|
||||
func (m *ImportDocumentsRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ImportDocumentsRequest.Unmarshal(m, b)
|
||||
@ -640,7 +640,7 @@ func (m *ExportDocumentsResponse) Reset() { *m = ExportDocumentsResponse
|
||||
func (m *ExportDocumentsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportDocumentsResponse) ProtoMessage() {}
|
||||
func (*ExportDocumentsResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{9}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{9}
|
||||
}
|
||||
func (m *ExportDocumentsResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportDocumentsResponse.Unmarshal(m, b)
|
||||
@ -693,7 +693,7 @@ func (m *ExportDocumentsMetadata) Reset() { *m = ExportDocumentsMetadata
|
||||
func (m *ExportDocumentsMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportDocumentsMetadata) ProtoMessage() {}
|
||||
func (*ExportDocumentsMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{10}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{10}
|
||||
}
|
||||
func (m *ExportDocumentsMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportDocumentsMetadata.Unmarshal(m, b)
|
||||
@ -788,7 +788,7 @@ func (m *ImportDocumentsMetadata) Reset() { *m = ImportDocumentsMetadata
|
||||
func (m *ImportDocumentsMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*ImportDocumentsMetadata) ProtoMessage() {}
|
||||
func (*ImportDocumentsMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_09f1d024c210e695, []int{11}
|
||||
return fileDescriptor_firestore_admin_fc9ddf055db6d044, []int{11}
|
||||
}
|
||||
func (m *ImportDocumentsMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ImportDocumentsMetadata.Unmarshal(m, b)
|
||||
@ -1170,10 +1170,10 @@ var _FirestoreAdmin_serviceDesc = grpc.ServiceDesc{
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1beta1/firestore_admin.proto", fileDescriptor_firestore_admin_09f1d024c210e695)
|
||||
proto.RegisterFile("google/firestore/admin/v1beta1/firestore_admin.proto", fileDescriptor_firestore_admin_fc9ddf055db6d044)
|
||||
}
|
||||
|
||||
var fileDescriptor_firestore_admin_09f1d024c210e695 = []byte{
|
||||
var fileDescriptor_firestore_admin_fc9ddf055db6d044 = []byte{
|
||||
// 1183 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x57, 0xdd, 0x6e, 0xe3, 0xc4,
|
||||
0x17, 0xff, 0x3b, 0x69, 0x93, 0xe6, 0xf4, 0x9f, 0x34, 0x9d, 0x85, 0x6c, 0x94, 0xfd, 0x20, 0x32,
|
||||
|
12
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta1/index.pb.go
generated
vendored
12
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta1/index.pb.go
generated
vendored
@ -53,7 +53,7 @@ func (x IndexField_Mode) String() string {
|
||||
return proto.EnumName(IndexField_Mode_name, int32(x))
|
||||
}
|
||||
func (IndexField_Mode) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_1d76a8618e50431f, []int{0, 0}
|
||||
return fileDescriptor_index_fc07c0d41eedbbb3, []int{0, 0}
|
||||
}
|
||||
|
||||
// The state of an index. During index creation, an index will be in the
|
||||
@ -99,7 +99,7 @@ func (x Index_State) String() string {
|
||||
return proto.EnumName(Index_State_name, int32(x))
|
||||
}
|
||||
func (Index_State) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_1d76a8618e50431f, []int{1, 0}
|
||||
return fileDescriptor_index_fc07c0d41eedbbb3, []int{1, 0}
|
||||
}
|
||||
|
||||
// A field of an index.
|
||||
@ -120,7 +120,7 @@ func (m *IndexField) Reset() { *m = IndexField{} }
|
||||
func (m *IndexField) String() string { return proto.CompactTextString(m) }
|
||||
func (*IndexField) ProtoMessage() {}
|
||||
func (*IndexField) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_1d76a8618e50431f, []int{0}
|
||||
return fileDescriptor_index_fc07c0d41eedbbb3, []int{0}
|
||||
}
|
||||
func (m *IndexField) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_IndexField.Unmarshal(m, b)
|
||||
@ -175,7 +175,7 @@ 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_index_1d76a8618e50431f, []int{1}
|
||||
return fileDescriptor_index_fc07c0d41eedbbb3, []int{1}
|
||||
}
|
||||
func (m *Index) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Index.Unmarshal(m, b)
|
||||
@ -231,10 +231,10 @@ func init() {
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1beta1/index.proto", fileDescriptor_index_1d76a8618e50431f)
|
||||
proto.RegisterFile("google/firestore/admin/v1beta1/index.proto", fileDescriptor_index_fc07c0d41eedbbb3)
|
||||
}
|
||||
|
||||
var fileDescriptor_index_1d76a8618e50431f = []byte{
|
||||
var fileDescriptor_index_fc07c0d41eedbbb3 = []byte{
|
||||
// 438 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0x5d, 0x8b, 0xd3, 0x40,
|
||||
0x14, 0x35, 0x69, 0x52, 0xcc, 0x75, 0xb7, 0xc4, 0x41, 0xa1, 0x88, 0x4a, 0x89, 0x3e, 0x94, 0x15,
|
||||
|
78
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta1/location.pb.go
generated
vendored
Normal file
78
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta1/location.pb.go
generated
vendored
Normal file
@ -0,0 +1,78 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/firestore/admin/v1beta1/location.proto
|
||||
|
||||
package admin // import "google.golang.org/genproto/googleapis/firestore/admin/v1beta1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
import _ "google.golang.org/genproto/googleapis/type/latlng"
|
||||
|
||||
// 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
|
||||
|
||||
// The metadata message for [google.cloud.location.Location.metadata][google.cloud.location.Location.metadata].
|
||||
type LocationMetadata struct {
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *LocationMetadata) Reset() { *m = LocationMetadata{} }
|
||||
func (m *LocationMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*LocationMetadata) ProtoMessage() {}
|
||||
func (*LocationMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_location_f1b8c59cf03288d9, []int{0}
|
||||
}
|
||||
func (m *LocationMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_LocationMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *LocationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_LocationMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *LocationMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_LocationMetadata.Merge(dst, src)
|
||||
}
|
||||
func (m *LocationMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_LocationMetadata.Size(m)
|
||||
}
|
||||
func (m *LocationMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_LocationMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_LocationMetadata proto.InternalMessageInfo
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*LocationMetadata)(nil), "google.firestore.admin.v1beta1.LocationMetadata")
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1beta1/location.proto", fileDescriptor_location_f1b8c59cf03288d9)
|
||||
}
|
||||
|
||||
var fileDescriptor_location_f1b8c59cf03288d9 = []byte{
|
||||
// 217 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x8f, 0x31, 0x4b, 0xc0, 0x30,
|
||||
0x10, 0x85, 0x69, 0x11, 0x87, 0x82, 0x20, 0x9d, 0xa4, 0x88, 0x43, 0x71, 0x35, 0x47, 0x71, 0x74,
|
||||
0xb2, 0x85, 0x76, 0x51, 0x28, 0x08, 0x0e, 0x6e, 0xd7, 0x36, 0x86, 0x40, 0x9a, 0x0b, 0xe9, 0x29,
|
||||
0xf8, 0x77, 0x9c, 0xc4, 0x5f, 0x29, 0x4d, 0x62, 0x37, 0x1d, 0xc3, 0x7b, 0xdf, 0xf7, 0x2e, 0xc5,
|
||||
0x8d, 0x22, 0x52, 0x46, 0xc2, 0xab, 0xf6, 0x72, 0x63, 0xf2, 0x12, 0x70, 0x59, 0xb5, 0x85, 0xf7,
|
||||
0x66, 0x92, 0x8c, 0x0d, 0x18, 0x9a, 0x91, 0x35, 0x59, 0xe1, 0x3c, 0x31, 0x95, 0x57, 0xb1, 0x2e,
|
||||
0x8e, 0xba, 0x08, 0x75, 0x91, 0xea, 0xd5, 0x65, 0xd2, 0xa1, 0xd3, 0x80, 0xd6, 0x12, 0x07, 0x78,
|
||||
0x8b, 0x74, 0x75, 0x91, 0x52, 0xfe, 0x70, 0x12, 0x0c, 0xb2, 0xb1, 0x2a, 0x26, 0x75, 0x59, 0x9c,
|
||||
0x3f, 0xa4, 0xa5, 0x47, 0xc9, 0xb8, 0x20, 0x63, 0xfb, 0x95, 0x15, 0xf5, 0x4c, 0xab, 0xf8, 0x7f,
|
||||
0xb2, 0x3d, 0xfb, 0x05, 0xc7, 0xdd, 0x34, 0x66, 0x2f, 0x5d, 0x02, 0x14, 0x19, 0xb4, 0x4a, 0x90,
|
||||
0x57, 0xa0, 0xa4, 0x0d, 0x3b, 0x10, 0x23, 0x74, 0x7a, 0xfb, 0xeb, 0xc7, 0x77, 0xe1, 0xf5, 0x99,
|
||||
0x9f, 0x0c, 0x5d, 0xff, 0xf4, 0x9d, 0x5f, 0x0f, 0x51, 0xd6, 0x19, 0x7a, 0x5b, 0x44, 0x7f, 0xdc,
|
||||
0x70, 0x1f, 0x6e, 0x78, 0x6e, 0xda, 0x9d, 0x99, 0x4e, 0x83, 0xfd, 0xf6, 0x27, 0x00, 0x00, 0xff,
|
||||
0xff, 0x3c, 0x05, 0x73, 0x2c, 0x4e, 0x01, 0x00, 0x00,
|
||||
}
|
8
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta2/field.pb.go
generated
vendored
8
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta2/field.pb.go
generated
vendored
@ -65,7 +65,7 @@ func (m *Field) Reset() { *m = Field{} }
|
||||
func (m *Field) String() string { return proto.CompactTextString(m) }
|
||||
func (*Field) ProtoMessage() {}
|
||||
func (*Field) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_field_eabd3bc03800743e, []int{0}
|
||||
return fileDescriptor_field_6bc9249960293f54, []int{0}
|
||||
}
|
||||
func (m *Field) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Field.Unmarshal(m, b)
|
||||
@ -129,7 +129,7 @@ func (m *Field_IndexConfig) Reset() { *m = Field_IndexConfig{} }
|
||||
func (m *Field_IndexConfig) String() string { return proto.CompactTextString(m) }
|
||||
func (*Field_IndexConfig) ProtoMessage() {}
|
||||
func (*Field_IndexConfig) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_field_eabd3bc03800743e, []int{0, 0}
|
||||
return fileDescriptor_field_6bc9249960293f54, []int{0, 0}
|
||||
}
|
||||
func (m *Field_IndexConfig) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Field_IndexConfig.Unmarshal(m, b)
|
||||
@ -183,10 +183,10 @@ func init() {
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1beta2/field.proto", fileDescriptor_field_eabd3bc03800743e)
|
||||
proto.RegisterFile("google/firestore/admin/v1beta2/field.proto", fileDescriptor_field_6bc9249960293f54)
|
||||
}
|
||||
|
||||
var fileDescriptor_field_eabd3bc03800743e = []byte{
|
||||
var fileDescriptor_field_6bc9249960293f54 = []byte{
|
||||
// 346 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x91, 0xcf, 0x4a, 0xf3, 0x40,
|
||||
0x14, 0xc5, 0x99, 0xb4, 0xdf, 0xa7, 0x9d, 0xa8, 0x8b, 0xc1, 0x45, 0x28, 0x45, 0x4a, 0xb1, 0x50,
|
||||
|
747
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta2/firestore_admin.pb.go
generated
vendored
747
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta2/firestore_admin.pb.go
generated
vendored
@ -6,7 +6,7 @@ package admin // import "google.golang.org/genproto/googleapis/firestore/admin/v
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "github.com/golang/protobuf/ptypes/empty"
|
||||
import empty "github.com/golang/protobuf/ptypes/empty"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
import longrunning "google.golang.org/genproto/googleapis/longrunning"
|
||||
import field_mask "google.golang.org/genproto/protobuf/field_mask"
|
||||
@ -27,6 +27,258 @@ var _ = math.Inf
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
// The request for [FirestoreAdmin.CreateIndex][google.firestore.admin.v1beta2.FirestoreAdmin.CreateIndex].
|
||||
type CreateIndexRequest struct {
|
||||
// A parent name of the form
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}`
|
||||
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
|
||||
// The composite index to create.
|
||||
Index *Index `protobuf:"bytes,2,opt,name=index,proto3" json:"index,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *CreateIndexRequest) Reset() { *m = CreateIndexRequest{} }
|
||||
func (m *CreateIndexRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*CreateIndexRequest) ProtoMessage() {}
|
||||
func (*CreateIndexRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{0}
|
||||
}
|
||||
func (m *CreateIndexRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CreateIndexRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *CreateIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_CreateIndexRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *CreateIndexRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_CreateIndexRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *CreateIndexRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_CreateIndexRequest.Size(m)
|
||||
}
|
||||
func (m *CreateIndexRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_CreateIndexRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_CreateIndexRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *CreateIndexRequest) GetParent() string {
|
||||
if m != nil {
|
||||
return m.Parent
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *CreateIndexRequest) GetIndex() *Index {
|
||||
if m != nil {
|
||||
return m.Index
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// The request for [FirestoreAdmin.ListIndexes][google.firestore.admin.v1beta2.FirestoreAdmin.ListIndexes].
|
||||
type ListIndexesRequest struct {
|
||||
// A parent name of the form
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}`
|
||||
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
|
||||
// The filter to apply to list results.
|
||||
Filter string `protobuf:"bytes,2,opt,name=filter,proto3" json:"filter,omitempty"`
|
||||
// The number of results to return.
|
||||
PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
|
||||
// A page token, returned from a previous call to
|
||||
// [FirestoreAdmin.ListIndexes][google.firestore.admin.v1beta2.FirestoreAdmin.ListIndexes], that may be used to get the next
|
||||
// page of results.
|
||||
PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ListIndexesRequest) Reset() { *m = ListIndexesRequest{} }
|
||||
func (m *ListIndexesRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListIndexesRequest) ProtoMessage() {}
|
||||
func (*ListIndexesRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{1}
|
||||
}
|
||||
func (m *ListIndexesRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListIndexesRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ListIndexesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ListIndexesRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ListIndexesRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ListIndexesRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *ListIndexesRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_ListIndexesRequest.Size(m)
|
||||
}
|
||||
func (m *ListIndexesRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ListIndexesRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ListIndexesRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *ListIndexesRequest) GetParent() string {
|
||||
if m != nil {
|
||||
return m.Parent
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *ListIndexesRequest) GetFilter() string {
|
||||
if m != nil {
|
||||
return m.Filter
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *ListIndexesRequest) GetPageSize() int32 {
|
||||
if m != nil {
|
||||
return m.PageSize
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *ListIndexesRequest) GetPageToken() string {
|
||||
if m != nil {
|
||||
return m.PageToken
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// The response for [FirestoreAdmin.ListIndexes][google.firestore.admin.v1beta2.FirestoreAdmin.ListIndexes].
|
||||
type ListIndexesResponse struct {
|
||||
// The requested indexes.
|
||||
Indexes []*Index `protobuf:"bytes,1,rep,name=indexes,proto3" json:"indexes,omitempty"`
|
||||
// A page token that may be used to request another page of results. If blank,
|
||||
// this is the last page.
|
||||
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ListIndexesResponse) Reset() { *m = ListIndexesResponse{} }
|
||||
func (m *ListIndexesResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListIndexesResponse) ProtoMessage() {}
|
||||
func (*ListIndexesResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{2}
|
||||
}
|
||||
func (m *ListIndexesResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListIndexesResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ListIndexesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ListIndexesResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ListIndexesResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ListIndexesResponse.Merge(dst, src)
|
||||
}
|
||||
func (m *ListIndexesResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_ListIndexesResponse.Size(m)
|
||||
}
|
||||
func (m *ListIndexesResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ListIndexesResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ListIndexesResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *ListIndexesResponse) GetIndexes() []*Index {
|
||||
if m != nil {
|
||||
return m.Indexes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ListIndexesResponse) GetNextPageToken() string {
|
||||
if m != nil {
|
||||
return m.NextPageToken
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// The request for [FirestoreAdmin.GetIndex][google.firestore.admin.v1beta2.FirestoreAdmin.GetIndex].
|
||||
type GetIndexRequest struct {
|
||||
// A name of the form
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}`
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *GetIndexRequest) Reset() { *m = GetIndexRequest{} }
|
||||
func (m *GetIndexRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetIndexRequest) ProtoMessage() {}
|
||||
func (*GetIndexRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{3}
|
||||
}
|
||||
func (m *GetIndexRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetIndexRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *GetIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_GetIndexRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *GetIndexRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_GetIndexRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *GetIndexRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_GetIndexRequest.Size(m)
|
||||
}
|
||||
func (m *GetIndexRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_GetIndexRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_GetIndexRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *GetIndexRequest) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// The request for [FirestoreAdmin.DeleteIndex][google.firestore.admin.v1beta2.FirestoreAdmin.DeleteIndex].
|
||||
type DeleteIndexRequest struct {
|
||||
// A name of the form
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}`
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DeleteIndexRequest) Reset() { *m = DeleteIndexRequest{} }
|
||||
func (m *DeleteIndexRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*DeleteIndexRequest) ProtoMessage() {}
|
||||
func (*DeleteIndexRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{4}
|
||||
}
|
||||
func (m *DeleteIndexRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DeleteIndexRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DeleteIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DeleteIndexRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *DeleteIndexRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DeleteIndexRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *DeleteIndexRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_DeleteIndexRequest.Size(m)
|
||||
}
|
||||
func (m *DeleteIndexRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DeleteIndexRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DeleteIndexRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *DeleteIndexRequest) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// The request for [FirestoreAdmin.UpdateField][google.firestore.admin.v1beta2.FirestoreAdmin.UpdateField].
|
||||
type UpdateFieldRequest struct {
|
||||
// The field to be updated.
|
||||
@ -43,7 +295,7 @@ func (m *UpdateFieldRequest) Reset() { *m = UpdateFieldRequest{} }
|
||||
func (m *UpdateFieldRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*UpdateFieldRequest) ProtoMessage() {}
|
||||
func (*UpdateFieldRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_1ffbeeca3c483e85, []int{0}
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{5}
|
||||
}
|
||||
func (m *UpdateFieldRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_UpdateFieldRequest.Unmarshal(m, b)
|
||||
@ -80,7 +332,7 @@ func (m *UpdateFieldRequest) GetUpdateMask() *field_mask.FieldMask {
|
||||
// The request for [FirestoreAdmin.GetField][google.firestore.admin.v1beta2.FirestoreAdmin.GetField].
|
||||
type GetFieldRequest struct {
|
||||
// A name of the form
|
||||
// `/projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/fields/{field_id}`
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/fields/{field_id}`
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
@ -91,7 +343,7 @@ func (m *GetFieldRequest) Reset() { *m = GetFieldRequest{} }
|
||||
func (m *GetFieldRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetFieldRequest) ProtoMessage() {}
|
||||
func (*GetFieldRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_1ffbeeca3c483e85, []int{1}
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{6}
|
||||
}
|
||||
func (m *GetFieldRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetFieldRequest.Unmarshal(m, b)
|
||||
@ -121,7 +373,7 @@ func (m *GetFieldRequest) GetName() string {
|
||||
// The request for [FirestoreAdmin.ListFields][google.firestore.admin.v1beta2.FirestoreAdmin.ListFields].
|
||||
type ListFieldsRequest struct {
|
||||
// A parent name of the form
|
||||
// `/projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}`
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}`
|
||||
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
|
||||
// The filter to apply to list results. Currently,
|
||||
// [FirestoreAdmin.ListFields][google.firestore.admin.v1beta2.FirestoreAdmin.ListFields] only supports listing fields
|
||||
@ -144,7 +396,7 @@ func (m *ListFieldsRequest) Reset() { *m = ListFieldsRequest{} }
|
||||
func (m *ListFieldsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListFieldsRequest) ProtoMessage() {}
|
||||
func (*ListFieldsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_1ffbeeca3c483e85, []int{2}
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{7}
|
||||
}
|
||||
func (m *ListFieldsRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListFieldsRequest.Unmarshal(m, b)
|
||||
@ -208,7 +460,7 @@ func (m *ListFieldsResponse) Reset() { *m = ListFieldsResponse{} }
|
||||
func (m *ListFieldsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListFieldsResponse) ProtoMessage() {}
|
||||
func (*ListFieldsResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_1ffbeeca3c483e85, []int{3}
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{8}
|
||||
}
|
||||
func (m *ListFieldsResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListFieldsResponse.Unmarshal(m, b)
|
||||
@ -242,11 +494,148 @@ func (m *ListFieldsResponse) GetNextPageToken() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
// The request for [FirestoreAdmin.ExportDocuments][google.firestore.admin.v1beta2.FirestoreAdmin.ExportDocuments].
|
||||
type ExportDocumentsRequest struct {
|
||||
// Database to export. Should be of the form:
|
||||
// `projects/{project_id}/databases/{database_id}`.
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
// Which collection ids to export. Unspecified means all collections.
|
||||
CollectionIds []string `protobuf:"bytes,2,rep,name=collection_ids,json=collectionIds,proto3" json:"collection_ids,omitempty"`
|
||||
// The output URI. Currently only supports Google Cloud Storage URIs of the
|
||||
// form: `gs://BUCKET_NAME[/NAMESPACE_PATH]`, where `BUCKET_NAME` is the name
|
||||
// of the Google Cloud Storage bucket and `NAMESPACE_PATH` is an optional
|
||||
// Google Cloud Storage namespace path. When
|
||||
// choosing a name, be sure to consider Google Cloud Storage naming
|
||||
// guidelines: https://cloud.google.com/storage/docs/naming.
|
||||
// If the URI is a bucket (without a namespace path), a prefix will be
|
||||
// generated based on the start time.
|
||||
OutputUriPrefix string `protobuf:"bytes,3,opt,name=output_uri_prefix,json=outputUriPrefix,proto3" json:"output_uri_prefix,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsRequest) Reset() { *m = ExportDocumentsRequest{} }
|
||||
func (m *ExportDocumentsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportDocumentsRequest) ProtoMessage() {}
|
||||
func (*ExportDocumentsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{9}
|
||||
}
|
||||
func (m *ExportDocumentsRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportDocumentsRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ExportDocumentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ExportDocumentsRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ExportDocumentsRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ExportDocumentsRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *ExportDocumentsRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_ExportDocumentsRequest.Size(m)
|
||||
}
|
||||
func (m *ExportDocumentsRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ExportDocumentsRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ExportDocumentsRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *ExportDocumentsRequest) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsRequest) GetCollectionIds() []string {
|
||||
if m != nil {
|
||||
return m.CollectionIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsRequest) GetOutputUriPrefix() string {
|
||||
if m != nil {
|
||||
return m.OutputUriPrefix
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// The request for [FirestoreAdmin.ImportDocuments][google.firestore.admin.v1beta2.FirestoreAdmin.ImportDocuments].
|
||||
type ImportDocumentsRequest struct {
|
||||
// Database to import into. Should be of the form:
|
||||
// `projects/{project_id}/databases/{database_id}`.
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
// Which collection ids to import. Unspecified means all collections included
|
||||
// in the import.
|
||||
CollectionIds []string `protobuf:"bytes,2,rep,name=collection_ids,json=collectionIds,proto3" json:"collection_ids,omitempty"`
|
||||
// Location of the exported files.
|
||||
// This must match the output_uri_prefix of an ExportDocumentsResponse from
|
||||
// an export that has completed successfully.
|
||||
// See:
|
||||
// [google.firestore.admin.v1beta2.ExportDocumentsResponse.output_uri_prefix][google.firestore.admin.v1beta2.ExportDocumentsResponse.output_uri_prefix].
|
||||
InputUriPrefix string `protobuf:"bytes,3,opt,name=input_uri_prefix,json=inputUriPrefix,proto3" json:"input_uri_prefix,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsRequest) Reset() { *m = ImportDocumentsRequest{} }
|
||||
func (m *ImportDocumentsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ImportDocumentsRequest) ProtoMessage() {}
|
||||
func (*ImportDocumentsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_admin_7145281113ae4e9b, []int{10}
|
||||
}
|
||||
func (m *ImportDocumentsRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ImportDocumentsRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ImportDocumentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ImportDocumentsRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ImportDocumentsRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ImportDocumentsRequest.Merge(dst, src)
|
||||
}
|
||||
func (m *ImportDocumentsRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_ImportDocumentsRequest.Size(m)
|
||||
}
|
||||
func (m *ImportDocumentsRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ImportDocumentsRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ImportDocumentsRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *ImportDocumentsRequest) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsRequest) GetCollectionIds() []string {
|
||||
if m != nil {
|
||||
return m.CollectionIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsRequest) GetInputUriPrefix() string {
|
||||
if m != nil {
|
||||
return m.InputUriPrefix
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*CreateIndexRequest)(nil), "google.firestore.admin.v1beta2.CreateIndexRequest")
|
||||
proto.RegisterType((*ListIndexesRequest)(nil), "google.firestore.admin.v1beta2.ListIndexesRequest")
|
||||
proto.RegisterType((*ListIndexesResponse)(nil), "google.firestore.admin.v1beta2.ListIndexesResponse")
|
||||
proto.RegisterType((*GetIndexRequest)(nil), "google.firestore.admin.v1beta2.GetIndexRequest")
|
||||
proto.RegisterType((*DeleteIndexRequest)(nil), "google.firestore.admin.v1beta2.DeleteIndexRequest")
|
||||
proto.RegisterType((*UpdateFieldRequest)(nil), "google.firestore.admin.v1beta2.UpdateFieldRequest")
|
||||
proto.RegisterType((*GetFieldRequest)(nil), "google.firestore.admin.v1beta2.GetFieldRequest")
|
||||
proto.RegisterType((*ListFieldsRequest)(nil), "google.firestore.admin.v1beta2.ListFieldsRequest")
|
||||
proto.RegisterType((*ListFieldsResponse)(nil), "google.firestore.admin.v1beta2.ListFieldsResponse")
|
||||
proto.RegisterType((*ExportDocumentsRequest)(nil), "google.firestore.admin.v1beta2.ExportDocumentsRequest")
|
||||
proto.RegisterType((*ImportDocumentsRequest)(nil), "google.firestore.admin.v1beta2.ImportDocumentsRequest")
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
@ -261,6 +650,16 @@ const _ = grpc.SupportPackageIsVersion4
|
||||
//
|
||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
||||
type FirestoreAdminClient interface {
|
||||
// Creates a composite index. This returns a [google.longrunning.Operation][google.longrunning.Operation]
|
||||
// which may be used to track the status of the creation. The metadata for
|
||||
// the operation will be the type [IndexOperationMetadata][google.firestore.admin.v1beta2.IndexOperationMetadata].
|
||||
CreateIndex(ctx context.Context, in *CreateIndexRequest, opts ...grpc.CallOption) (*longrunning.Operation, error)
|
||||
// Lists composite indexes.
|
||||
ListIndexes(ctx context.Context, in *ListIndexesRequest, opts ...grpc.CallOption) (*ListIndexesResponse, error)
|
||||
// Gets a composite index.
|
||||
GetIndex(ctx context.Context, in *GetIndexRequest, opts ...grpc.CallOption) (*Index, error)
|
||||
// Deletes a composite index.
|
||||
DeleteIndex(ctx context.Context, in *DeleteIndexRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
||||
// Gets the metadata and configuration for a Field.
|
||||
GetField(ctx context.Context, in *GetFieldRequest, opts ...grpc.CallOption) (*Field, error)
|
||||
// Updates a field configuration. Currently, field updates apply only to
|
||||
@ -275,7 +674,7 @@ type FirestoreAdminClient interface {
|
||||
//
|
||||
// To configure the default field settings for the database, use
|
||||
// the special `Field` with resource name:
|
||||
// `/projects/{project_id}/databases/{database_id}/collectionGroups/__default__/fields/*`.
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/__default__/fields/*`.
|
||||
UpdateField(ctx context.Context, in *UpdateFieldRequest, opts ...grpc.CallOption) (*longrunning.Operation, error)
|
||||
// Lists the field configuration and metadata for this database.
|
||||
//
|
||||
@ -284,6 +683,21 @@ type FirestoreAdminClient interface {
|
||||
// [FirestoreAdmin.ListFields][google.firestore.admin.v1beta2.FirestoreAdmin.ListFields] with the filter set to
|
||||
// `indexConfig.usesAncestorConfig:false`.
|
||||
ListFields(ctx context.Context, in *ListFieldsRequest, opts ...grpc.CallOption) (*ListFieldsResponse, error)
|
||||
// Exports a copy of all or a subset of documents from Google Cloud Firestore
|
||||
// to another storage system, such as Google Cloud Storage. Recent updates to
|
||||
// documents 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.
|
||||
ExportDocuments(ctx context.Context, in *ExportDocumentsRequest, opts ...grpc.CallOption) (*longrunning.Operation, error)
|
||||
// Imports documents into Google Cloud Firestore. Existing documents with the
|
||||
// same name 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 ImportDocuments operation is cancelled, it is possible
|
||||
// that a subset of the data has already been imported to Cloud Firestore.
|
||||
ImportDocuments(ctx context.Context, in *ImportDocumentsRequest, opts ...grpc.CallOption) (*longrunning.Operation, error)
|
||||
}
|
||||
|
||||
type firestoreAdminClient struct {
|
||||
@ -294,6 +708,42 @@ func NewFirestoreAdminClient(cc *grpc.ClientConn) FirestoreAdminClient {
|
||||
return &firestoreAdminClient{cc}
|
||||
}
|
||||
|
||||
func (c *firestoreAdminClient) CreateIndex(ctx context.Context, in *CreateIndexRequest, opts ...grpc.CallOption) (*longrunning.Operation, error) {
|
||||
out := new(longrunning.Operation)
|
||||
err := c.cc.Invoke(ctx, "/google.firestore.admin.v1beta2.FirestoreAdmin/CreateIndex", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *firestoreAdminClient) ListIndexes(ctx context.Context, in *ListIndexesRequest, opts ...grpc.CallOption) (*ListIndexesResponse, error) {
|
||||
out := new(ListIndexesResponse)
|
||||
err := c.cc.Invoke(ctx, "/google.firestore.admin.v1beta2.FirestoreAdmin/ListIndexes", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *firestoreAdminClient) GetIndex(ctx context.Context, in *GetIndexRequest, opts ...grpc.CallOption) (*Index, error) {
|
||||
out := new(Index)
|
||||
err := c.cc.Invoke(ctx, "/google.firestore.admin.v1beta2.FirestoreAdmin/GetIndex", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *firestoreAdminClient) DeleteIndex(ctx context.Context, in *DeleteIndexRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
||||
out := new(empty.Empty)
|
||||
err := c.cc.Invoke(ctx, "/google.firestore.admin.v1beta2.FirestoreAdmin/DeleteIndex", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *firestoreAdminClient) GetField(ctx context.Context, in *GetFieldRequest, opts ...grpc.CallOption) (*Field, error) {
|
||||
out := new(Field)
|
||||
err := c.cc.Invoke(ctx, "/google.firestore.admin.v1beta2.FirestoreAdmin/GetField", in, out, opts...)
|
||||
@ -321,8 +771,36 @@ func (c *firestoreAdminClient) ListFields(ctx context.Context, in *ListFieldsReq
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *firestoreAdminClient) ExportDocuments(ctx context.Context, in *ExportDocumentsRequest, opts ...grpc.CallOption) (*longrunning.Operation, error) {
|
||||
out := new(longrunning.Operation)
|
||||
err := c.cc.Invoke(ctx, "/google.firestore.admin.v1beta2.FirestoreAdmin/ExportDocuments", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *firestoreAdminClient) ImportDocuments(ctx context.Context, in *ImportDocumentsRequest, opts ...grpc.CallOption) (*longrunning.Operation, error) {
|
||||
out := new(longrunning.Operation)
|
||||
err := c.cc.Invoke(ctx, "/google.firestore.admin.v1beta2.FirestoreAdmin/ImportDocuments", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
// FirestoreAdminServer is the server API for FirestoreAdmin service.
|
||||
type FirestoreAdminServer interface {
|
||||
// Creates a composite index. This returns a [google.longrunning.Operation][google.longrunning.Operation]
|
||||
// which may be used to track the status of the creation. The metadata for
|
||||
// the operation will be the type [IndexOperationMetadata][google.firestore.admin.v1beta2.IndexOperationMetadata].
|
||||
CreateIndex(context.Context, *CreateIndexRequest) (*longrunning.Operation, error)
|
||||
// Lists composite indexes.
|
||||
ListIndexes(context.Context, *ListIndexesRequest) (*ListIndexesResponse, error)
|
||||
// Gets a composite index.
|
||||
GetIndex(context.Context, *GetIndexRequest) (*Index, error)
|
||||
// Deletes a composite index.
|
||||
DeleteIndex(context.Context, *DeleteIndexRequest) (*empty.Empty, error)
|
||||
// Gets the metadata and configuration for a Field.
|
||||
GetField(context.Context, *GetFieldRequest) (*Field, error)
|
||||
// Updates a field configuration. Currently, field updates apply only to
|
||||
@ -337,7 +815,7 @@ type FirestoreAdminServer interface {
|
||||
//
|
||||
// To configure the default field settings for the database, use
|
||||
// the special `Field` with resource name:
|
||||
// `/projects/{project_id}/databases/{database_id}/collectionGroups/__default__/fields/*`.
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/__default__/fields/*`.
|
||||
UpdateField(context.Context, *UpdateFieldRequest) (*longrunning.Operation, error)
|
||||
// Lists the field configuration and metadata for this database.
|
||||
//
|
||||
@ -346,12 +824,99 @@ type FirestoreAdminServer interface {
|
||||
// [FirestoreAdmin.ListFields][google.firestore.admin.v1beta2.FirestoreAdmin.ListFields] with the filter set to
|
||||
// `indexConfig.usesAncestorConfig:false`.
|
||||
ListFields(context.Context, *ListFieldsRequest) (*ListFieldsResponse, error)
|
||||
// Exports a copy of all or a subset of documents from Google Cloud Firestore
|
||||
// to another storage system, such as Google Cloud Storage. Recent updates to
|
||||
// documents 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.
|
||||
ExportDocuments(context.Context, *ExportDocumentsRequest) (*longrunning.Operation, error)
|
||||
// Imports documents into Google Cloud Firestore. Existing documents with the
|
||||
// same name 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 ImportDocuments operation is cancelled, it is possible
|
||||
// that a subset of the data has already been imported to Cloud Firestore.
|
||||
ImportDocuments(context.Context, *ImportDocumentsRequest) (*longrunning.Operation, error)
|
||||
}
|
||||
|
||||
func RegisterFirestoreAdminServer(s *grpc.Server, srv FirestoreAdminServer) {
|
||||
s.RegisterService(&_FirestoreAdmin_serviceDesc, srv)
|
||||
}
|
||||
|
||||
func _FirestoreAdmin_CreateIndex_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(CreateIndexRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(FirestoreAdminServer).CreateIndex(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.firestore.admin.v1beta2.FirestoreAdmin/CreateIndex",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(FirestoreAdminServer).CreateIndex(ctx, req.(*CreateIndexRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _FirestoreAdmin_ListIndexes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(ListIndexesRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(FirestoreAdminServer).ListIndexes(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.firestore.admin.v1beta2.FirestoreAdmin/ListIndexes",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(FirestoreAdminServer).ListIndexes(ctx, req.(*ListIndexesRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _FirestoreAdmin_GetIndex_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(GetIndexRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(FirestoreAdminServer).GetIndex(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.firestore.admin.v1beta2.FirestoreAdmin/GetIndex",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(FirestoreAdminServer).GetIndex(ctx, req.(*GetIndexRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _FirestoreAdmin_DeleteIndex_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(DeleteIndexRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(FirestoreAdminServer).DeleteIndex(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.firestore.admin.v1beta2.FirestoreAdmin/DeleteIndex",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(FirestoreAdminServer).DeleteIndex(ctx, req.(*DeleteIndexRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _FirestoreAdmin_GetField_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(GetFieldRequest)
|
||||
if err := dec(in); err != nil {
|
||||
@ -406,10 +971,62 @@ func _FirestoreAdmin_ListFields_Handler(srv interface{}, ctx context.Context, de
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _FirestoreAdmin_ExportDocuments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(ExportDocumentsRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(FirestoreAdminServer).ExportDocuments(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.firestore.admin.v1beta2.FirestoreAdmin/ExportDocuments",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(FirestoreAdminServer).ExportDocuments(ctx, req.(*ExportDocumentsRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _FirestoreAdmin_ImportDocuments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(ImportDocumentsRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(FirestoreAdminServer).ImportDocuments(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/google.firestore.admin.v1beta2.FirestoreAdmin/ImportDocuments",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(FirestoreAdminServer).ImportDocuments(ctx, req.(*ImportDocumentsRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
var _FirestoreAdmin_serviceDesc = grpc.ServiceDesc{
|
||||
ServiceName: "google.firestore.admin.v1beta2.FirestoreAdmin",
|
||||
HandlerType: (*FirestoreAdminServer)(nil),
|
||||
Methods: []grpc.MethodDesc{
|
||||
{
|
||||
MethodName: "CreateIndex",
|
||||
Handler: _FirestoreAdmin_CreateIndex_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "ListIndexes",
|
||||
Handler: _FirestoreAdmin_ListIndexes_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetIndex",
|
||||
Handler: _FirestoreAdmin_GetIndex_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "DeleteIndex",
|
||||
Handler: _FirestoreAdmin_DeleteIndex_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetField",
|
||||
Handler: _FirestoreAdmin_GetField_Handler,
|
||||
@ -422,54 +1039,82 @@ var _FirestoreAdmin_serviceDesc = grpc.ServiceDesc{
|
||||
MethodName: "ListFields",
|
||||
Handler: _FirestoreAdmin_ListFields_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "ExportDocuments",
|
||||
Handler: _FirestoreAdmin_ExportDocuments_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "ImportDocuments",
|
||||
Handler: _FirestoreAdmin_ImportDocuments_Handler,
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "google/firestore/admin/v1beta2/firestore_admin.proto",
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1beta2/firestore_admin.proto", fileDescriptor_firestore_admin_1ffbeeca3c483e85)
|
||||
proto.RegisterFile("google/firestore/admin/v1beta2/firestore_admin.proto", fileDescriptor_firestore_admin_7145281113ae4e9b)
|
||||
}
|
||||
|
||||
var fileDescriptor_firestore_admin_1ffbeeca3c483e85 = []byte{
|
||||
// 610 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcd, 0x6e, 0xd3, 0x4c,
|
||||
0x14, 0x95, 0xd3, 0xb4, 0x6a, 0xa7, 0xfa, 0xbe, 0x8a, 0x41, 0x42, 0x91, 0x4b, 0x51, 0x64, 0x28,
|
||||
0xaa, 0xba, 0xf0, 0x28, 0x86, 0x15, 0x51, 0x17, 0x24, 0x28, 0x41, 0x08, 0x44, 0x48, 0xf9, 0x91,
|
||||
0xd8, 0x44, 0x93, 0xf8, 0xc6, 0x32, 0x71, 0x66, 0x8c, 0x67, 0x8c, 0x4a, 0xab, 0x0a, 0x89, 0x07,
|
||||
0x60, 0xc3, 0x1b, 0xb0, 0x64, 0xd1, 0x3d, 0xab, 0x3e, 0x04, 0xaf, 0xc0, 0x83, 0xa0, 0xf9, 0x71,
|
||||
0x7e, 0x5a, 0x20, 0x81, 0xdd, 0xcc, 0xbd, 0xe7, 0xdc, 0x7b, 0xe6, 0xfa, 0x5c, 0xa3, 0xbb, 0x11,
|
||||
0xe7, 0x51, 0x02, 0x64, 0x18, 0x67, 0x20, 0x24, 0xcf, 0x80, 0xd0, 0x70, 0x1c, 0x33, 0xf2, 0xae,
|
||||
0xd6, 0x07, 0x49, 0x83, 0x69, 0xbc, 0xa7, 0xe3, 0x7e, 0x9a, 0x71, 0xc9, 0xf1, 0x0d, 0xc3, 0xf2,
|
||||
0x27, 0x59, 0xdf, 0x64, 0x2d, 0xcb, 0xbd, 0x6e, 0xab, 0xd2, 0x34, 0x26, 0x94, 0x31, 0x2e, 0xa9,
|
||||
0x8c, 0x39, 0x13, 0x86, 0xed, 0xee, 0x2f, 0xec, 0x09, 0x49, 0xb8, 0x24, 0x36, 0x66, 0x21, 0x1c,
|
||||
0x59, 0xec, 0x4d, 0x8b, 0x4d, 0x38, 0x8b, 0xb2, 0x9c, 0xb1, 0x98, 0x45, 0x84, 0xa7, 0x90, 0xcd,
|
||||
0x35, 0xdf, 0xb6, 0x20, 0x7d, 0xeb, 0xe7, 0x43, 0x02, 0xe3, 0x54, 0xbe, 0xb7, 0xc9, 0xea, 0xc5,
|
||||
0xa4, 0x96, 0xd2, 0x1b, 0x53, 0x31, 0x32, 0x08, 0xef, 0x93, 0x83, 0xf0, 0x8b, 0x34, 0xa4, 0x12,
|
||||
0x5a, 0x2a, 0xd5, 0x85, 0xb7, 0x39, 0x08, 0x89, 0xeb, 0x68, 0x55, 0x43, 0x2b, 0x4e, 0xd5, 0xd9,
|
||||
0xdb, 0x0c, 0x76, 0xfd, 0x3f, 0x0f, 0xc8, 0x37, 0x64, 0xc3, 0xc1, 0x75, 0xb4, 0x99, 0xeb, 0x92,
|
||||
0xba, 0x51, 0xa5, 0xa4, 0x4b, 0xb8, 0x45, 0x89, 0x42, 0x8b, 0xe1, 0x3c, 0xa1, 0x62, 0xd4, 0x45,
|
||||
0x06, 0xae, 0xce, 0xde, 0x2e, 0xda, 0x6a, 0x83, 0x9c, 0x13, 0x83, 0x51, 0x99, 0xd1, 0x31, 0x68,
|
||||
0x2d, 0x1b, 0x5d, 0x7d, 0xf6, 0x3e, 0xa0, 0x2b, 0x8f, 0x63, 0x61, 0x70, 0xa2, 0x00, 0x5e, 0x43,
|
||||
0x6b, 0x29, 0xcd, 0x80, 0x49, 0x0b, 0xb5, 0x37, 0x15, 0x1f, 0xc6, 0x89, 0x84, 0x4c, 0x6b, 0xd9,
|
||||
0xe8, 0xda, 0x1b, 0xde, 0x46, 0x1b, 0x29, 0x8d, 0xa0, 0x27, 0xe2, 0x63, 0xa8, 0xac, 0x54, 0x9d,
|
||||
0xbd, 0xd5, 0xee, 0xba, 0x0a, 0x1c, 0xc6, 0xc7, 0x80, 0x77, 0x10, 0xd2, 0x49, 0xc9, 0x47, 0xc0,
|
||||
0x2a, 0x65, 0x4d, 0xd4, 0xf0, 0xe7, 0x2a, 0xe0, 0x9d, 0x20, 0x3c, 0x2b, 0x40, 0xa4, 0x9c, 0x09,
|
||||
0xc0, 0x07, 0xaa, 0x93, 0x8a, 0x54, 0x9c, 0xea, 0xca, 0xf2, 0x83, 0xb3, 0x24, 0x7c, 0x1b, 0x6d,
|
||||
0x31, 0x38, 0x92, 0xbd, 0x99, 0xc6, 0x46, 0xf1, 0x7f, 0x2a, 0xdc, 0x29, 0x9a, 0x07, 0xe7, 0x65,
|
||||
0xf4, 0x7f, 0xab, 0xa8, 0x78, 0x5f, 0x15, 0xc4, 0x67, 0x0e, 0x5a, 0x2f, 0x06, 0x87, 0xc9, 0xa2,
|
||||
0xb6, 0x17, 0x46, 0xec, 0x2e, 0xa7, 0xd3, 0x7b, 0xf4, 0xf1, 0xfb, 0x8f, 0xcf, 0xa5, 0x07, 0xb8,
|
||||
0x31, 0xf1, 0xeb, 0x89, 0xfa, 0x1a, 0x07, 0x69, 0xc6, 0xdf, 0xc0, 0x40, 0x0a, 0xb2, 0x4f, 0x42,
|
||||
0x2a, 0x69, 0x9f, 0x0a, 0x50, 0xe7, 0x01, 0x4f, 0x12, 0x18, 0x28, 0xb7, 0xb6, 0x33, 0x9e, 0xa7,
|
||||
0x2a, 0x64, 0x1e, 0x4a, 0xf6, 0x4f, 0xf1, 0x37, 0x07, 0x6d, 0xce, 0x38, 0x0f, 0x07, 0x8b, 0x24,
|
||||
0x5c, 0xb6, 0xa9, 0xbb, 0x53, 0x70, 0x66, 0x56, 0xc4, 0x7f, 0x5a, 0xac, 0x88, 0xf7, 0x4a, 0xcb,
|
||||
0x7d, 0x16, 0x3c, 0x9c, 0xca, 0x35, 0xbb, 0xf8, 0xaf, 0xa2, 0xef, 0x59, 0x87, 0x9f, 0x3b, 0x08,
|
||||
0x4d, 0xbf, 0x3e, 0xae, 0x2d, 0x92, 0x7e, 0xc9, 0xaa, 0x6e, 0xf0, 0x37, 0x14, 0x63, 0xae, 0x5f,
|
||||
0x4d, 0xdf, 0x18, 0x7c, 0xf9, 0xa7, 0x9c, 0xda, 0xb7, 0x34, 0xce, 0x1c, 0xe4, 0x0d, 0xf8, 0x78,
|
||||
0x81, 0x8a, 0xc6, 0xd5, 0x79, 0x97, 0x75, 0xd4, 0xee, 0x76, 0x9c, 0xd7, 0x4d, 0x4b, 0x8b, 0x78,
|
||||
0x42, 0x59, 0xe4, 0xf3, 0x2c, 0x22, 0x11, 0x30, 0xbd, 0xd9, 0xc4, 0xa4, 0x68, 0x1a, 0x8b, 0xdf,
|
||||
0xfd, 0xe4, 0xea, 0xfa, 0xf6, 0xa5, 0x54, 0x6e, 0x37, 0x5b, 0x87, 0x5f, 0x4b, 0xb7, 0xda, 0xa6,
|
||||
0x58, 0x33, 0xe1, 0x79, 0xe8, 0x4f, 0x1a, 0xfa, 0xba, 0xa3, 0xff, 0xb2, 0xd6, 0x50, 0x9c, 0xfe,
|
||||
0x9a, 0xae, 0x7e, 0xe7, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc6, 0xf6, 0x28, 0xdf, 0xe1, 0x05,
|
||||
0x00, 0x00,
|
||||
var fileDescriptor_firestore_admin_7145281113ae4e9b = []byte{
|
||||
// 940 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0xcb, 0x6e, 0x1c, 0x45,
|
||||
0x17, 0x56, 0x8d, 0x2f, 0x7f, 0x7c, 0xe6, 0xc7, 0x26, 0x15, 0x69, 0x34, 0xea, 0x10, 0x34, 0x6a,
|
||||
0x30, 0x1a, 0xcd, 0xa2, 0x5b, 0x9e, 0xa0, 0x2c, 0x3c, 0x8a, 0x50, 0x3c, 0xbe, 0x60, 0x08, 0xc2,
|
||||
0x4c, 0x08, 0x48, 0x6c, 0x46, 0xe5, 0x99, 0x72, 0xab, 0x70, 0x4f, 0x55, 0xd3, 0x55, 0x8d, 0x4c,
|
||||
0x22, 0x13, 0xc4, 0x03, 0xb0, 0xe1, 0x0d, 0x58, 0xb0, 0x00, 0x29, 0x6c, 0xd8, 0xb0, 0x62, 0xc1,
|
||||
0x23, 0xf0, 0x0a, 0xbc, 0x01, 0x2f, 0x80, 0xea, 0xd2, 0x73, 0x27, 0xdd, 0x8e, 0x2c, 0xb1, 0xeb,
|
||||
0x3a, 0x75, 0xbe, 0x3a, 0xdf, 0x39, 0x75, 0xea, 0x3b, 0x0d, 0x6f, 0x47, 0x42, 0x44, 0x31, 0x0d,
|
||||
0xcf, 0x58, 0x4a, 0xa5, 0x12, 0x29, 0x0d, 0xc9, 0x70, 0xc4, 0x78, 0xf8, 0xe5, 0xce, 0x29, 0x55,
|
||||
0xa4, 0x3d, 0xb1, 0xf7, 0x8d, 0x3d, 0x48, 0x52, 0xa1, 0x04, 0x7e, 0xdd, 0xa2, 0x82, 0xf1, 0x6e,
|
||||
0x60, 0x77, 0x1d, 0xca, 0x7b, 0xcd, 0x9d, 0x4a, 0x12, 0x16, 0x12, 0xce, 0x85, 0x22, 0x8a, 0x09,
|
||||
0x2e, 0x2d, 0xda, 0x6b, 0x15, 0xc6, 0xa4, 0xf1, 0xb0, 0xa4, 0x2f, 0xe3, 0x43, 0x7a, 0xe1, 0x7c,
|
||||
0xdf, 0x70, 0xbe, 0xb1, 0xe0, 0x51, 0x9a, 0x71, 0xce, 0x78, 0x14, 0x8a, 0x84, 0xa6, 0x33, 0xc1,
|
||||
0x6f, 0x3b, 0x27, 0xb3, 0x3a, 0xcd, 0xce, 0x42, 0x3a, 0x4a, 0xd4, 0x57, 0x6e, 0xb3, 0x31, 0xbf,
|
||||
0x69, 0xa8, 0xf4, 0x47, 0x44, 0x9e, 0x5b, 0x0f, 0x9f, 0x01, 0xee, 0xa6, 0x94, 0x28, 0x7a, 0xac,
|
||||
0x03, 0xf7, 0xe8, 0x17, 0x19, 0x95, 0x0a, 0xd7, 0x60, 0x3d, 0x21, 0x29, 0xe5, 0xaa, 0x8e, 0x1a,
|
||||
0xa8, 0xb9, 0xd1, 0x73, 0x2b, 0xdc, 0x81, 0x35, 0x43, 0xb0, 0x5e, 0x69, 0xa0, 0x66, 0xb5, 0xbd,
|
||||
0x1d, 0xbc, 0xb8, 0x6e, 0x81, 0x3d, 0xd4, 0x62, 0xfc, 0x6f, 0x10, 0xe0, 0x87, 0x4c, 0x2a, 0x63,
|
||||
0xa4, 0xb2, 0x28, 0x56, 0x0d, 0xd6, 0xcf, 0x58, 0xac, 0x68, 0x6a, 0x82, 0x6d, 0xf4, 0xdc, 0x0a,
|
||||
0xdf, 0x86, 0x8d, 0x84, 0x44, 0xb4, 0x2f, 0xd9, 0x13, 0x5a, 0x5f, 0x69, 0xa0, 0xe6, 0x5a, 0xef,
|
||||
0x86, 0x36, 0x3c, 0x62, 0x4f, 0x28, 0xbe, 0x03, 0x60, 0x36, 0x95, 0x38, 0xa7, 0xbc, 0xbe, 0x6a,
|
||||
0x80, 0xc6, 0xfd, 0x63, 0x6d, 0xf0, 0xbf, 0x86, 0x5b, 0x33, 0x0c, 0x64, 0x22, 0xb8, 0xa4, 0xf8,
|
||||
0x1d, 0xf8, 0x1f, 0xb3, 0xa6, 0x3a, 0x6a, 0xac, 0x94, 0x4f, 0x2c, 0x47, 0xe1, 0xb7, 0x60, 0x8b,
|
||||
0xd3, 0x0b, 0xd5, 0x9f, 0x8a, 0x6d, 0x49, 0xbf, 0xa2, 0xcd, 0x27, 0xe3, 0xf8, 0xdb, 0xb0, 0x75,
|
||||
0x44, 0xd5, 0x4c, 0xa9, 0x31, 0xac, 0x72, 0x32, 0xa2, 0x2e, 0x79, 0xf3, 0xed, 0x37, 0x01, 0xef,
|
||||
0xd3, 0x98, 0xce, 0x5d, 0xca, 0x32, 0xcf, 0xef, 0x10, 0xe0, 0xc7, 0xc9, 0x90, 0x28, 0x7a, 0xa8,
|
||||
0x6f, 0x36, 0x77, 0xed, 0xc0, 0x9a, 0xb9, 0x69, 0xe3, 0x5b, 0x22, 0x1d, 0x0b, 0xb6, 0x18, 0xdc,
|
||||
0x81, 0x6a, 0x66, 0x8e, 0x34, 0x7d, 0xe2, 0xae, 0xda, 0xcb, 0x8f, 0xc8, 0x5b, 0xc9, 0x62, 0x3e,
|
||||
0x20, 0xf2, 0xbc, 0x07, 0xd6, 0x5d, 0x7f, 0xbb, 0x0c, 0x67, 0xc8, 0x2c, 0xe3, 0xfd, 0x0c, 0x6e,
|
||||
0xea, 0x8b, 0x30, 0x7e, 0xff, 0x49, 0x27, 0x3c, 0xb5, 0xbd, 0x98, 0x13, 0x70, 0x8d, 0x70, 0x5f,
|
||||
0x47, 0xd2, 0x96, 0xb2, 0x7d, 0x60, 0x13, 0x75, 0xa0, 0xd2, 0x6d, 0xf0, 0x0c, 0x6a, 0x07, 0x17,
|
||||
0x89, 0x48, 0xd5, 0xbe, 0x18, 0x64, 0x23, 0xca, 0x95, 0x7c, 0x41, 0xad, 0xf0, 0x36, 0x6c, 0x0e,
|
||||
0x44, 0x1c, 0xd3, 0x81, 0x7e, 0xf6, 0x7d, 0x36, 0x94, 0xf5, 0x4a, 0x63, 0x45, 0x1f, 0x3a, 0xb1,
|
||||
0x1e, 0x0f, 0x25, 0x6e, 0xc1, 0x4d, 0x91, 0xa9, 0x24, 0x53, 0xfd, 0x2c, 0x65, 0xfd, 0x24, 0xa5,
|
||||
0x67, 0xec, 0xc2, 0x54, 0x65, 0xa3, 0xb7, 0x65, 0x37, 0x1e, 0xa7, 0xec, 0xc4, 0x98, 0xfd, 0x4b,
|
||||
0xa8, 0x1d, 0x8f, 0xae, 0x9b, 0x40, 0x13, 0x5e, 0x65, 0x7c, 0x69, 0xfc, 0x4d, 0x63, 0x1f, 0x87,
|
||||
0x6f, 0xff, 0xfd, 0x7f, 0xd8, 0x3c, 0xcc, 0x2b, 0xfa, 0x40, 0x17, 0x14, 0xff, 0x8a, 0xa0, 0x3a,
|
||||
0x25, 0x44, 0xb8, 0x5d, 0x54, 0xf9, 0x45, 0xd5, 0xf2, 0xee, 0xe4, 0x98, 0x29, 0xc1, 0x0c, 0x3e,
|
||||
0xcc, 0x05, 0xd3, 0xef, 0x7d, 0xfb, 0xe7, 0x5f, 0xdf, 0x57, 0x1e, 0xfa, 0xdd, 0xb1, 0xd8, 0x3e,
|
||||
0xb5, 0x0d, 0x76, 0x3f, 0x49, 0xc5, 0xe7, 0x74, 0xa0, 0x64, 0xd8, 0x0a, 0x87, 0x44, 0x91, 0x53,
|
||||
0x22, 0xa9, 0xfe, 0x9e, 0xa4, 0x77, 0x94, 0x8a, 0x2c, 0x91, 0x61, 0xeb, 0x32, 0x74, 0x2f, 0x7e,
|
||||
0xd7, 0x6a, 0x1a, 0xfe, 0x03, 0x41, 0x75, 0x4a, 0x51, 0x8a, 0x69, 0x2f, 0x0a, 0xa0, 0x77, 0xf7,
|
||||
0x4a, 0x18, 0xdb, 0xa9, 0xfe, 0xfb, 0x26, 0x99, 0x03, 0x7c, 0x1d, 0xc9, 0xe0, 0x5f, 0x10, 0xdc,
|
||||
0xc8, 0x75, 0x09, 0x87, 0x45, 0x74, 0xe6, 0x14, 0xcc, 0x2b, 0x27, 0x96, 0xcb, 0x18, 0xeb, 0xee,
|
||||
0x2a, 0xcf, 0x37, 0xa7, 0x1b, 0xb6, 0x2e, 0xf1, 0x8f, 0x08, 0xaa, 0x53, 0x12, 0x59, 0x5c, 0xf7,
|
||||
0x45, 0x3d, 0xf5, 0x6a, 0x0b, 0x92, 0x76, 0xa0, 0x47, 0x67, 0x4e, 0xb4, 0x75, 0x2d, 0x44, 0x9f,
|
||||
0xdb, 0xd2, 0x1a, 0x9d, 0x28, 0x55, 0xda, 0x69, 0xe9, 0xf4, 0xca, 0xe9, 0x8f, 0xff, 0x9e, 0x61,
|
||||
0xbc, 0x8f, 0xf7, 0x5e, 0x9a, 0xb1, 0x15, 0x30, 0x4d, 0xf8, 0x37, 0x04, 0xd5, 0xa9, 0x89, 0x52,
|
||||
0x5c, 0xd9, 0xc5, 0xf1, 0x53, 0xf4, 0x10, 0x3f, 0x35, 0x74, 0x3f, 0x6a, 0xbf, 0x3b, 0xa1, 0x6b,
|
||||
0x7f, 0x91, 0x5e, 0x96, 0xf4, 0xae, 0x9b, 0x5c, 0xbf, 0x23, 0x80, 0x89, 0xaa, 0xe3, 0x9d, 0x32,
|
||||
0x0f, 0x6b, 0x66, 0x04, 0x79, 0xed, 0xab, 0x40, 0xdc, 0x53, 0x5c, 0x52, 0xfd, 0xab, 0x3f, 0x45,
|
||||
0x37, 0x41, 0x7e, 0x46, 0xb0, 0x35, 0x37, 0x1a, 0xf0, 0xbd, 0x22, 0x4e, 0xcb, 0x67, 0x49, 0xd1,
|
||||
0x2d, 0x3c, 0x30, 0xb4, 0x3b, 0xfe, 0xbd, 0x52, 0x4d, 0x73, 0xb9, 0x4b, 0x67, 0xa3, 0xec, 0xa2,
|
||||
0x96, 0x61, 0x3b, 0x37, 0x47, 0x8a, 0xd9, 0x2e, 0x1f, 0x3c, 0xd7, 0xcd, 0x96, 0x8d, 0xe6, 0xd9,
|
||||
0xee, 0x3d, 0x47, 0xe0, 0x0f, 0xc4, 0xa8, 0x80, 0xdf, 0xde, 0xad, 0xd9, 0xc9, 0x74, 0xa2, 0xc5,
|
||||
0xe1, 0x04, 0x7d, 0xd6, 0x75, 0xb0, 0x48, 0xc4, 0x84, 0x47, 0x81, 0x48, 0xa3, 0x30, 0xa2, 0xdc,
|
||||
0x48, 0x47, 0x68, 0xb7, 0x48, 0xc2, 0xe4, 0xbf, 0xfd, 0xd7, 0x77, 0xcc, 0xea, 0x87, 0xca, 0xea,
|
||||
0x51, 0xf7, 0xf0, 0xd1, 0x4f, 0x95, 0x37, 0x8f, 0xec, 0x61, 0xdd, 0x58, 0x64, 0xc3, 0x60, 0x1c,
|
||||
0x30, 0x30, 0x11, 0x83, 0x4f, 0x76, 0xf6, 0x34, 0xe6, 0x74, 0xdd, 0x9c, 0x7e, 0xf7, 0x9f, 0x00,
|
||||
0x00, 0x00, 0xff, 0xff, 0xc9, 0xcc, 0x19, 0xb3, 0xd4, 0x0c, 0x00, 0x00,
|
||||
}
|
||||
|
16
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta2/index.pb.go
generated
vendored
16
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta2/index.pb.go
generated
vendored
@ -45,7 +45,7 @@ func (x Index_QueryScope) String() string {
|
||||
return proto.EnumName(Index_QueryScope_name, int32(x))
|
||||
}
|
||||
func (Index_QueryScope) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_47cf3a5e57bc9ffa, []int{0, 0}
|
||||
return fileDescriptor_index_30c0e9bfd16ff693, []int{0, 0}
|
||||
}
|
||||
|
||||
// The state of an index. During index creation, an index will be in the
|
||||
@ -94,7 +94,7 @@ func (x Index_State) String() string {
|
||||
return proto.EnumName(Index_State_name, int32(x))
|
||||
}
|
||||
func (Index_State) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_47cf3a5e57bc9ffa, []int{0, 1}
|
||||
return fileDescriptor_index_30c0e9bfd16ff693, []int{0, 1}
|
||||
}
|
||||
|
||||
// The supported orderings.
|
||||
@ -124,7 +124,7 @@ func (x Index_IndexField_Order) String() string {
|
||||
return proto.EnumName(Index_IndexField_Order_name, int32(x))
|
||||
}
|
||||
func (Index_IndexField_Order) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_47cf3a5e57bc9ffa, []int{0, 0, 0}
|
||||
return fileDescriptor_index_30c0e9bfd16ff693, []int{0, 0, 0}
|
||||
}
|
||||
|
||||
// The supported array value configurations.
|
||||
@ -150,7 +150,7 @@ func (x Index_IndexField_ArrayConfig) String() string {
|
||||
return proto.EnumName(Index_IndexField_ArrayConfig_name, int32(x))
|
||||
}
|
||||
func (Index_IndexField_ArrayConfig) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_47cf3a5e57bc9ffa, []int{0, 0, 1}
|
||||
return fileDescriptor_index_30c0e9bfd16ff693, []int{0, 0, 1}
|
||||
}
|
||||
|
||||
// Cloud Firestore indexes enable simple and complex queries against
|
||||
@ -194,7 +194,7 @@ 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_index_47cf3a5e57bc9ffa, []int{0}
|
||||
return fileDescriptor_index_30c0e9bfd16ff693, []int{0}
|
||||
}
|
||||
func (m *Index) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Index.Unmarshal(m, b)
|
||||
@ -265,7 +265,7 @@ func (m *Index_IndexField) Reset() { *m = Index_IndexField{} }
|
||||
func (m *Index_IndexField) String() string { return proto.CompactTextString(m) }
|
||||
func (*Index_IndexField) ProtoMessage() {}
|
||||
func (*Index_IndexField) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_index_47cf3a5e57bc9ffa, []int{0, 0}
|
||||
return fileDescriptor_index_30c0e9bfd16ff693, []int{0, 0}
|
||||
}
|
||||
func (m *Index_IndexField) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Index_IndexField.Unmarshal(m, b)
|
||||
@ -403,10 +403,10 @@ func init() {
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1beta2/index.proto", fileDescriptor_index_47cf3a5e57bc9ffa)
|
||||
proto.RegisterFile("google/firestore/admin/v1beta2/index.proto", fileDescriptor_index_30c0e9bfd16ff693)
|
||||
}
|
||||
|
||||
var fileDescriptor_index_47cf3a5e57bc9ffa = []byte{
|
||||
var fileDescriptor_index_30c0e9bfd16ff693 = []byte{
|
||||
// 545 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x4f, 0x6b, 0xdb, 0x4c,
|
||||
0x10, 0xc6, 0x23, 0x39, 0x0a, 0xaf, 0xc7, 0x7e, 0x83, 0xba, 0x50, 0x2a, 0xd2, 0xb4, 0x18, 0xd1,
|
||||
|
438
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta2/operation.pb.go
generated
vendored
438
vendor/google.golang.org/genproto/googleapis/firestore/admin/v1beta2/operation.pb.go
generated
vendored
@ -69,7 +69,7 @@ func (x OperationState) String() string {
|
||||
return proto.EnumName(OperationState_name, int32(x))
|
||||
}
|
||||
func (OperationState) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_3f6f641f194f3566, []int{0}
|
||||
return fileDescriptor_operation_027e42d27180be05, []int{0}
|
||||
}
|
||||
|
||||
// Specifies how the index is changing.
|
||||
@ -99,7 +99,95 @@ func (x FieldOperationMetadata_IndexConfigDelta_ChangeType) String() string {
|
||||
return proto.EnumName(FieldOperationMetadata_IndexConfigDelta_ChangeType_name, int32(x))
|
||||
}
|
||||
func (FieldOperationMetadata_IndexConfigDelta_ChangeType) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_3f6f641f194f3566, []int{0, 0, 0}
|
||||
return fileDescriptor_operation_027e42d27180be05, []int{1, 0, 0}
|
||||
}
|
||||
|
||||
// Metadata for [google.longrunning.Operation][google.longrunning.Operation] results from
|
||||
// [FirestoreAdmin.CreateIndex][google.firestore.admin.v1beta2.FirestoreAdmin.CreateIndex].
|
||||
type IndexOperationMetadata struct {
|
||||
// The time this operation started.
|
||||
StartTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
||||
// The time this operation completed. Will be unset if operation still in
|
||||
// progress.
|
||||
EndTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
||||
// The index resource that this operation is acting on. For example:
|
||||
// `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}`
|
||||
Index string `protobuf:"bytes,3,opt,name=index,proto3" json:"index,omitempty"`
|
||||
// The state of the operation.
|
||||
State OperationState `protobuf:"varint,4,opt,name=state,proto3,enum=google.firestore.admin.v1beta2.OperationState" json:"state,omitempty"`
|
||||
// The progress, in documents, of this operation.
|
||||
ProgressDocuments *Progress `protobuf:"bytes,5,opt,name=progress_documents,json=progressDocuments,proto3" json:"progress_documents,omitempty"`
|
||||
// The progress, in bytes, of this operation.
|
||||
ProgressBytes *Progress `protobuf:"bytes,6,opt,name=progress_bytes,json=progressBytes,proto3" json:"progress_bytes,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) Reset() { *m = IndexOperationMetadata{} }
|
||||
func (m *IndexOperationMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*IndexOperationMetadata) ProtoMessage() {}
|
||||
func (*IndexOperationMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_027e42d27180be05, []int{0}
|
||||
}
|
||||
func (m *IndexOperationMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_IndexOperationMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *IndexOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_IndexOperationMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *IndexOperationMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_IndexOperationMetadata.Merge(dst, src)
|
||||
}
|
||||
func (m *IndexOperationMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_IndexOperationMetadata.Size(m)
|
||||
}
|
||||
func (m *IndexOperationMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_IndexOperationMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_IndexOperationMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *IndexOperationMetadata) GetStartTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.StartTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) GetEndTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.EndTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) GetIndex() string {
|
||||
if m != nil {
|
||||
return m.Index
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) GetState() OperationState {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return OperationState_OPERATION_STATE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) GetProgressDocuments() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressDocuments
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *IndexOperationMetadata) GetProgressBytes() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressBytes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Metadata for [google.longrunning.Operation][google.longrunning.Operation] results from
|
||||
@ -131,7 +219,7 @@ func (m *FieldOperationMetadata) Reset() { *m = FieldOperationMetadata{}
|
||||
func (m *FieldOperationMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*FieldOperationMetadata) ProtoMessage() {}
|
||||
func (*FieldOperationMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_3f6f641f194f3566, []int{0}
|
||||
return fileDescriptor_operation_027e42d27180be05, []int{1}
|
||||
}
|
||||
func (m *FieldOperationMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_FieldOperationMetadata.Unmarshal(m, b)
|
||||
@ -217,7 +305,7 @@ func (m *FieldOperationMetadata_IndexConfigDelta) Reset() {
|
||||
func (m *FieldOperationMetadata_IndexConfigDelta) String() string { return proto.CompactTextString(m) }
|
||||
func (*FieldOperationMetadata_IndexConfigDelta) ProtoMessage() {}
|
||||
func (*FieldOperationMetadata_IndexConfigDelta) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_3f6f641f194f3566, []int{0, 0}
|
||||
return fileDescriptor_operation_027e42d27180be05, []int{1, 0}
|
||||
}
|
||||
func (m *FieldOperationMetadata_IndexConfigDelta) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_FieldOperationMetadata_IndexConfigDelta.Unmarshal(m, b)
|
||||
@ -251,6 +339,240 @@ func (m *FieldOperationMetadata_IndexConfigDelta) GetIndex() *Index {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Metadata for [google.longrunning.Operation][google.longrunning.Operation] results from
|
||||
// [FirestoreAdmin.ExportDocuments][google.firestore.admin.v1beta2.FirestoreAdmin.ExportDocuments].
|
||||
type ExportDocumentsMetadata struct {
|
||||
// The time this operation started.
|
||||
StartTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
||||
// The time this operation completed. Will be unset if operation still in
|
||||
// progress.
|
||||
EndTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
||||
// The state of the export operation.
|
||||
OperationState OperationState `protobuf:"varint,3,opt,name=operation_state,json=operationState,proto3,enum=google.firestore.admin.v1beta2.OperationState" json:"operation_state,omitempty"`
|
||||
// The progress, in documents, of this operation.
|
||||
ProgressDocuments *Progress `protobuf:"bytes,4,opt,name=progress_documents,json=progressDocuments,proto3" json:"progress_documents,omitempty"`
|
||||
// The progress, in bytes, of this operation.
|
||||
ProgressBytes *Progress `protobuf:"bytes,5,opt,name=progress_bytes,json=progressBytes,proto3" json:"progress_bytes,omitempty"`
|
||||
// Which collection ids are being exported.
|
||||
CollectionIds []string `protobuf:"bytes,6,rep,name=collection_ids,json=collectionIds,proto3" json:"collection_ids,omitempty"`
|
||||
// Where the entities are being exported to.
|
||||
OutputUriPrefix string `protobuf:"bytes,7,opt,name=output_uri_prefix,json=outputUriPrefix,proto3" json:"output_uri_prefix,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) Reset() { *m = ExportDocumentsMetadata{} }
|
||||
func (m *ExportDocumentsMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportDocumentsMetadata) ProtoMessage() {}
|
||||
func (*ExportDocumentsMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_027e42d27180be05, []int{2}
|
||||
}
|
||||
func (m *ExportDocumentsMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportDocumentsMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ExportDocumentsMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ExportDocumentsMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ExportDocumentsMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ExportDocumentsMetadata.Merge(dst, src)
|
||||
}
|
||||
func (m *ExportDocumentsMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_ExportDocumentsMetadata.Size(m)
|
||||
}
|
||||
func (m *ExportDocumentsMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ExportDocumentsMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ExportDocumentsMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetStartTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.StartTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetEndTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.EndTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetOperationState() OperationState {
|
||||
if m != nil {
|
||||
return m.OperationState
|
||||
}
|
||||
return OperationState_OPERATION_STATE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetProgressDocuments() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressDocuments
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetProgressBytes() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressBytes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetCollectionIds() []string {
|
||||
if m != nil {
|
||||
return m.CollectionIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsMetadata) GetOutputUriPrefix() string {
|
||||
if m != nil {
|
||||
return m.OutputUriPrefix
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Metadata for [google.longrunning.Operation][google.longrunning.Operation] results from
|
||||
// [FirestoreAdmin.ImportDocuments][google.firestore.admin.v1beta2.FirestoreAdmin.ImportDocuments].
|
||||
type ImportDocumentsMetadata struct {
|
||||
// The time this operation started.
|
||||
StartTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
||||
// The time this operation completed. Will be unset if operation still in
|
||||
// progress.
|
||||
EndTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
||||
// The state of the import operation.
|
||||
OperationState OperationState `protobuf:"varint,3,opt,name=operation_state,json=operationState,proto3,enum=google.firestore.admin.v1beta2.OperationState" json:"operation_state,omitempty"`
|
||||
// The progress, in documents, of this operation.
|
||||
ProgressDocuments *Progress `protobuf:"bytes,4,opt,name=progress_documents,json=progressDocuments,proto3" json:"progress_documents,omitempty"`
|
||||
// The progress, in bytes, of this operation.
|
||||
ProgressBytes *Progress `protobuf:"bytes,5,opt,name=progress_bytes,json=progressBytes,proto3" json:"progress_bytes,omitempty"`
|
||||
// Which collection ids are being imported.
|
||||
CollectionIds []string `protobuf:"bytes,6,rep,name=collection_ids,json=collectionIds,proto3" json:"collection_ids,omitempty"`
|
||||
// The location of the documents being imported.
|
||||
InputUriPrefix string `protobuf:"bytes,7,opt,name=input_uri_prefix,json=inputUriPrefix,proto3" json:"input_uri_prefix,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) Reset() { *m = ImportDocumentsMetadata{} }
|
||||
func (m *ImportDocumentsMetadata) String() string { return proto.CompactTextString(m) }
|
||||
func (*ImportDocumentsMetadata) ProtoMessage() {}
|
||||
func (*ImportDocumentsMetadata) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_027e42d27180be05, []int{3}
|
||||
}
|
||||
func (m *ImportDocumentsMetadata) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ImportDocumentsMetadata.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ImportDocumentsMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ImportDocumentsMetadata.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ImportDocumentsMetadata) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ImportDocumentsMetadata.Merge(dst, src)
|
||||
}
|
||||
func (m *ImportDocumentsMetadata) XXX_Size() int {
|
||||
return xxx_messageInfo_ImportDocumentsMetadata.Size(m)
|
||||
}
|
||||
func (m *ImportDocumentsMetadata) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ImportDocumentsMetadata.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ImportDocumentsMetadata proto.InternalMessageInfo
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetStartTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.StartTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetEndTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.EndTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetOperationState() OperationState {
|
||||
if m != nil {
|
||||
return m.OperationState
|
||||
}
|
||||
return OperationState_OPERATION_STATE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetProgressDocuments() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressDocuments
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetProgressBytes() *Progress {
|
||||
if m != nil {
|
||||
return m.ProgressBytes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetCollectionIds() []string {
|
||||
if m != nil {
|
||||
return m.CollectionIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ImportDocumentsMetadata) GetInputUriPrefix() string {
|
||||
if m != nil {
|
||||
return m.InputUriPrefix
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Returned in the [google.longrunning.Operation][google.longrunning.Operation] response field.
|
||||
type ExportDocumentsResponse struct {
|
||||
// Location of the output files. This can be used to begin an import
|
||||
// into Cloud Firestore (this project or another project) after the operation
|
||||
// completes successfully.
|
||||
OutputUriPrefix string `protobuf:"bytes,1,opt,name=output_uri_prefix,json=outputUriPrefix,proto3" json:"output_uri_prefix,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ExportDocumentsResponse) Reset() { *m = ExportDocumentsResponse{} }
|
||||
func (m *ExportDocumentsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExportDocumentsResponse) ProtoMessage() {}
|
||||
func (*ExportDocumentsResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_operation_027e42d27180be05, []int{4}
|
||||
}
|
||||
func (m *ExportDocumentsResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExportDocumentsResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ExportDocumentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ExportDocumentsResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ExportDocumentsResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ExportDocumentsResponse.Merge(dst, src)
|
||||
}
|
||||
func (m *ExportDocumentsResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_ExportDocumentsResponse.Size(m)
|
||||
}
|
||||
func (m *ExportDocumentsResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ExportDocumentsResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ExportDocumentsResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *ExportDocumentsResponse) GetOutputUriPrefix() string {
|
||||
if m != nil {
|
||||
return m.OutputUriPrefix
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Describes the progress of the operation.
|
||||
// Unit of work is generic and must be interpreted based on where [Progress][google.firestore.admin.v1beta2.Progress]
|
||||
// is used.
|
||||
@ -268,7 +590,7 @@ 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_operation_3f6f641f194f3566, []int{1}
|
||||
return fileDescriptor_operation_027e42d27180be05, []int{5}
|
||||
}
|
||||
func (m *Progress) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Progress.Unmarshal(m, b)
|
||||
@ -303,59 +625,75 @@ func (m *Progress) GetCompletedWork() int64 {
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*IndexOperationMetadata)(nil), "google.firestore.admin.v1beta2.IndexOperationMetadata")
|
||||
proto.RegisterType((*FieldOperationMetadata)(nil), "google.firestore.admin.v1beta2.FieldOperationMetadata")
|
||||
proto.RegisterType((*FieldOperationMetadata_IndexConfigDelta)(nil), "google.firestore.admin.v1beta2.FieldOperationMetadata.IndexConfigDelta")
|
||||
proto.RegisterType((*ExportDocumentsMetadata)(nil), "google.firestore.admin.v1beta2.ExportDocumentsMetadata")
|
||||
proto.RegisterType((*ImportDocumentsMetadata)(nil), "google.firestore.admin.v1beta2.ImportDocumentsMetadata")
|
||||
proto.RegisterType((*ExportDocumentsResponse)(nil), "google.firestore.admin.v1beta2.ExportDocumentsResponse")
|
||||
proto.RegisterType((*Progress)(nil), "google.firestore.admin.v1beta2.Progress")
|
||||
proto.RegisterEnum("google.firestore.admin.v1beta2.OperationState", OperationState_name, OperationState_value)
|
||||
proto.RegisterEnum("google.firestore.admin.v1beta2.FieldOperationMetadata_IndexConfigDelta_ChangeType", FieldOperationMetadata_IndexConfigDelta_ChangeType_name, FieldOperationMetadata_IndexConfigDelta_ChangeType_value)
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/admin/v1beta2/operation.proto", fileDescriptor_operation_3f6f641f194f3566)
|
||||
proto.RegisterFile("google/firestore/admin/v1beta2/operation.proto", fileDescriptor_operation_027e42d27180be05)
|
||||
}
|
||||
|
||||
var fileDescriptor_operation_3f6f641f194f3566 = []byte{
|
||||
// 665 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0x4f, 0x6f, 0x12, 0x4f,
|
||||
0x1c, 0xc6, 0x7f, 0x0b, 0x05, 0xda, 0x6f, 0x7f, 0x25, 0xdb, 0xd1, 0x28, 0xa1, 0xc6, 0x12, 0x62,
|
||||
0x13, 0xd2, 0xc3, 0x6c, 0x8a, 0xf1, 0x60, 0x9a, 0x98, 0x6c, 0x97, 0x05, 0x37, 0xa1, 0x40, 0x16,
|
||||
0xa8, 0xda, 0xcb, 0x66, 0x60, 0x87, 0x75, 0x53, 0x76, 0x67, 0xb3, 0x3b, 0xb5, 0xf6, 0xee, 0xd9,
|
||||
0x97, 0xe0, 0xc1, 0x9b, 0xbe, 0x4a, 0x33, 0xb3, 0x7f, 0x1a, 0x1b, 0x95, 0x98, 0x78, 0xe3, 0x19,
|
||||
0x9e, 0xe7, 0xf3, 0xfd, 0xc3, 0x0c, 0x80, 0x3d, 0xc6, 0xbc, 0x35, 0xd5, 0x56, 0x7e, 0x4c, 0x13,
|
||||
0xce, 0x62, 0xaa, 0x11, 0x37, 0xf0, 0x43, 0xed, 0xc3, 0xc9, 0x82, 0x72, 0xd2, 0xd5, 0x58, 0x44,
|
||||
0x63, 0xc2, 0x7d, 0x16, 0xe2, 0x28, 0x66, 0x9c, 0xa1, 0xa7, 0xa9, 0x1f, 0x17, 0x7e, 0x2c, 0xfd,
|
||||
0x38, 0xf3, 0x37, 0x9f, 0x64, 0x3c, 0x12, 0xf9, 0x1a, 0x09, 0x43, 0xc6, 0x65, 0x38, 0x49, 0xd3,
|
||||
0xcd, 0xe3, 0x0d, 0xd5, 0xfc, 0xd0, 0xa5, 0x1f, 0x33, 0xef, 0x61, 0xe6, 0x95, 0x6a, 0x71, 0xbd,
|
||||
0xd2, 0xb8, 0x1f, 0xd0, 0x84, 0x93, 0x20, 0x4a, 0x0d, 0xed, 0xcf, 0x55, 0x78, 0xd4, 0xf7, 0xe9,
|
||||
0xda, 0x1d, 0xe7, 0x3d, 0x9e, 0x53, 0x4e, 0x5c, 0xc2, 0x09, 0x7a, 0x09, 0x90, 0x70, 0x12, 0x73,
|
||||
0x47, 0x64, 0x1a, 0x4a, 0x4b, 0xe9, 0xec, 0x76, 0x9b, 0xd9, 0xa8, 0x38, 0x07, 0xe2, 0x59, 0x0e,
|
||||
0xb4, 0x77, 0xa4, 0x5b, 0x68, 0xf4, 0x02, 0xb6, 0x69, 0xe8, 0xa6, 0xc1, 0xd2, 0xc6, 0x60, 0x8d,
|
||||
0x86, 0xae, 0x8c, 0x3d, 0x84, 0xca, 0x4a, 0xf4, 0xd2, 0x28, 0xb7, 0x94, 0xce, 0x8e, 0x9d, 0x0a,
|
||||
0x74, 0x03, 0x0f, 0xe4, 0x48, 0xce, 0x92, 0x85, 0x2b, 0xdf, 0x73, 0x5c, 0xba, 0xe6, 0x24, 0x69,
|
||||
0x6c, 0xb5, 0xca, 0x9d, 0xdd, 0xee, 0x00, 0xff, 0x79, 0x97, 0xf8, 0xd7, 0xc3, 0x61, 0x4b, 0x10,
|
||||
0x0d, 0x09, 0xec, 0x09, 0x9e, 0xbd, 0xef, 0xdf, 0x3b, 0x49, 0x50, 0x0f, 0x2a, 0x09, 0x27, 0x9c,
|
||||
0x36, 0x2a, 0x2d, 0xa5, 0x53, 0xef, 0xe2, 0x4d, 0xa5, 0x8a, 0x2a, 0x53, 0x91, 0xb2, 0xd3, 0x30,
|
||||
0x9a, 0xc3, 0xbe, 0xcb, 0x96, 0xd7, 0x01, 0x0d, 0xb9, 0x13, 0xc5, 0xcc, 0x8b, 0x69, 0x92, 0x34,
|
||||
0xaa, 0x72, 0x29, 0x9d, 0x4d, 0xc4, 0x49, 0xe6, 0xb7, 0xd5, 0x1c, 0x91, 0x9f, 0xa0, 0x31, 0xd4,
|
||||
0x17, 0xb7, 0x9c, 0x26, 0x77, 0xcc, 0xda, 0x5f, 0x32, 0xf7, 0x64, 0x3e, 0x97, 0xcd, 0x4f, 0x25,
|
||||
0x50, 0xef, 0x6f, 0x05, 0x25, 0xb0, 0xbb, 0x7c, 0x4f, 0x42, 0x8f, 0x3a, 0xfc, 0x36, 0x4a, 0x2f,
|
||||
0x41, 0xbd, 0x6b, 0xff, 0xa3, 0x9d, 0x63, 0x43, 0xa2, 0x67, 0xb7, 0x11, 0xb5, 0x61, 0x59, 0x7c,
|
||||
0x46, 0xa7, 0x50, 0x91, 0x3f, 0x46, 0x76, 0x75, 0x8e, 0x36, 0x95, 0x93, 0x5c, 0x3b, 0xcd, 0xb4,
|
||||
0x5f, 0x01, 0xdc, 0x61, 0xd1, 0x01, 0x3c, 0x36, 0x5e, 0xeb, 0xa3, 0x81, 0xe9, 0xcc, 0xde, 0x4d,
|
||||
0x4c, 0x67, 0x3e, 0x9a, 0x4e, 0x4c, 0xc3, 0xea, 0x5b, 0x66, 0x4f, 0xfd, 0x0f, 0xd5, 0xa0, 0xac,
|
||||
0xf7, 0x7a, 0xaa, 0x82, 0x00, 0xaa, 0xb6, 0x79, 0x3e, 0xbe, 0x30, 0xd5, 0x52, 0xfb, 0x2d, 0x6c,
|
||||
0x17, 0x3b, 0x3e, 0x82, 0x3a, 0x4d, 0xb8, 0x1f, 0x10, 0x4e, 0x5d, 0xe7, 0x86, 0xc5, 0x57, 0x72,
|
||||
0x01, 0x65, 0x7b, 0xaf, 0x38, 0x7d, 0xc3, 0xe2, 0x2b, 0x61, 0x5b, 0xb2, 0x20, 0x5a, 0xd3, 0xc2,
|
||||
0x56, 0x4a, 0x6d, 0xc5, 0xa9, 0xb0, 0x1d, 0x7f, 0x51, 0xa0, 0xfe, 0xf3, 0x15, 0x41, 0x87, 0x70,
|
||||
0x30, 0x9e, 0x98, 0xb6, 0x3e, 0xb3, 0xc6, 0x23, 0x67, 0x3a, 0xd3, 0x67, 0xf7, 0x5b, 0x54, 0xe1,
|
||||
0x7f, 0x6b, 0x64, 0xcd, 0x2c, 0x7d, 0x68, 0x5d, 0x5a, 0xa3, 0x81, 0xaa, 0xa0, 0x3a, 0xc0, 0xc4,
|
||||
0x1e, 0x1b, 0xe6, 0x74, 0x2a, 0x74, 0x49, 0x68, 0x43, 0x1f, 0x19, 0xe6, 0x70, 0x28, 0x74, 0x59,
|
||||
0xe8, 0xbe, 0x35, 0xca, 0xfd, 0x5b, 0x42, 0x4f, 0xe7, 0x86, 0xf0, 0xf7, 0xe7, 0x43, 0xb5, 0x22,
|
||||
0x66, 0xed, 0xeb, 0xd6, 0xd0, 0xec, 0xa9, 0x55, 0xb4, 0x07, 0x3b, 0x59, 0xd6, 0xec, 0xa9, 0xb5,
|
||||
0xb3, 0x6f, 0x0a, 0xb4, 0x97, 0x2c, 0xd8, 0xb0, 0xee, 0xb3, 0xbb, 0x21, 0x26, 0xe2, 0x2d, 0x4f,
|
||||
0x94, 0x4b, 0x23, 0x4b, 0x78, 0x6c, 0x4d, 0x42, 0x0f, 0xb3, 0xd8, 0xd3, 0x3c, 0x1a, 0xca, 0x97,
|
||||
0xae, 0xa5, 0x5f, 0x91, 0xc8, 0x4f, 0x7e, 0xf7, 0x87, 0x75, 0x2a, 0xd5, 0xd7, 0xd2, 0xd6, 0xc0,
|
||||
0xe8, 0x4f, 0xbf, 0x97, 0x9e, 0x0d, 0x52, 0x98, 0xb1, 0x66, 0xd7, 0x2e, 0xee, 0x17, 0x4d, 0xe8,
|
||||
0xb2, 0x89, 0x8b, 0x93, 0x33, 0x91, 0x59, 0x54, 0x25, 0xfd, 0xf9, 0x8f, 0x00, 0x00, 0x00, 0xff,
|
||||
0xff, 0x2e, 0x32, 0x9e, 0x39, 0x7b, 0x05, 0x00, 0x00,
|
||||
var fileDescriptor_operation_027e42d27180be05 = []byte{
|
||||
// 857 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0x5d, 0x6f, 0xe3, 0x44,
|
||||
0x14, 0xc5, 0x71, 0x92, 0x6e, 0x6e, 0xa9, 0xd7, 0x1d, 0xd0, 0x36, 0xea, 0x22, 0xb6, 0x8a, 0xa8,
|
||||
0x14, 0xf5, 0xc1, 0xd1, 0x06, 0xf1, 0x80, 0x56, 0x42, 0x4a, 0x1d, 0x27, 0x58, 0xca, 0x26, 0x91,
|
||||
0x93, 0x6c, 0x61, 0x5f, 0xac, 0x69, 0x3c, 0x31, 0xa3, 0x8d, 0x3d, 0x96, 0x67, 0xc2, 0xb6, 0xef,
|
||||
0x3c, 0x23, 0x7e, 0x01, 0x0f, 0xbc, 0xc1, 0x9f, 0x42, 0xfc, 0x13, 0x34, 0xe3, 0x8f, 0x68, 0x4b,
|
||||
0x97, 0xa8, 0x14, 0x04, 0x48, 0xfb, 0xd6, 0x73, 0x73, 0xce, 0xf1, 0xcc, 0xdc, 0x73, 0xaf, 0x0a,
|
||||
0x56, 0xc8, 0x58, 0xb8, 0x26, 0x9d, 0x15, 0x4d, 0x09, 0x17, 0x2c, 0x25, 0x1d, 0x1c, 0x44, 0x34,
|
||||
0xee, 0x7c, 0xfb, 0xf4, 0x92, 0x08, 0xdc, 0xed, 0xb0, 0x84, 0xa4, 0x58, 0x50, 0x16, 0x5b, 0x49,
|
||||
0xca, 0x04, 0x43, 0x1f, 0x67, 0x7c, 0xab, 0xe4, 0x5b, 0x8a, 0x6f, 0xe5, 0xfc, 0xe3, 0x8f, 0x72,
|
||||
0x3f, 0x9c, 0xd0, 0x0e, 0x8e, 0x63, 0x26, 0x94, 0x98, 0x67, 0xea, 0xe3, 0xb3, 0x1d, 0x5f, 0xa3,
|
||||
0x71, 0x40, 0xae, 0x72, 0xee, 0x93, 0x9c, 0xab, 0xd0, 0xe5, 0x66, 0xd5, 0x11, 0x34, 0x22, 0x5c,
|
||||
0xe0, 0x28, 0xc9, 0x08, 0xad, 0x1f, 0x74, 0x78, 0xe4, 0x4a, 0xc1, 0xa4, 0x38, 0xe3, 0x73, 0x22,
|
||||
0x70, 0x80, 0x05, 0x46, 0x9f, 0x03, 0x70, 0x81, 0x53, 0xe1, 0x4b, 0x4d, 0x53, 0x3b, 0xd1, 0xda,
|
||||
0xfb, 0xdd, 0xe3, 0xfc, 0xaa, 0x56, 0x61, 0x68, 0xcd, 0x0b, 0x43, 0xaf, 0xa1, 0xd8, 0x12, 0xa3,
|
||||
0xcf, 0xe0, 0x01, 0x89, 0x83, 0x4c, 0x58, 0xd9, 0x29, 0xdc, 0x23, 0x71, 0xa0, 0x64, 0x1f, 0x42,
|
||||
0x4d, 0x1d, 0xbe, 0xa9, 0x9f, 0x68, 0xed, 0x86, 0x97, 0x01, 0xd4, 0x87, 0x1a, 0x17, 0x58, 0x90,
|
||||
0x66, 0xf5, 0x44, 0x6b, 0x1b, 0x5d, 0xcb, 0xfa, 0xf3, 0xd7, 0xb3, 0xca, 0x9b, 0xcc, 0xa4, 0xca,
|
||||
0xcb, 0xc4, 0xe8, 0x02, 0x50, 0x92, 0xb2, 0x30, 0x25, 0x9c, 0xfb, 0x01, 0x5b, 0x6e, 0x22, 0x12,
|
||||
0x0b, 0xde, 0xac, 0xa9, 0xc3, 0xb5, 0x77, 0x59, 0x4e, 0x73, 0xa5, 0x77, 0x58, 0x78, 0xf4, 0x0b,
|
||||
0x0b, 0x34, 0x01, 0xa3, 0x34, 0xbe, 0xbc, 0x16, 0x84, 0x37, 0xeb, 0x77, 0x34, 0x3d, 0x28, 0xf4,
|
||||
0xe7, 0x52, 0xde, 0xfa, 0xbe, 0x0e, 0x8f, 0x06, 0x94, 0xac, 0x83, 0xff, 0x48, 0x4b, 0x56, 0xf2,
|
||||
0x2c, 0x45, 0x4b, 0x14, 0x40, 0xaf, 0xe1, 0x03, 0xd5, 0x1b, 0x7f, 0xc9, 0xe2, 0x15, 0x0d, 0xfd,
|
||||
0x80, 0xac, 0x05, 0xe6, 0xcd, 0xea, 0x89, 0xde, 0xde, 0xef, 0x0e, 0x77, 0x5d, 0xfc, 0xf6, 0xcb,
|
||||
0x59, 0x2a, 0x86, 0xb6, 0x32, 0xec, 0x4b, 0x3f, 0xef, 0x90, 0xde, 0xa8, 0xf0, 0x6d, 0x16, 0x6a,
|
||||
0xf7, 0xc9, 0xc2, 0x02, 0x0e, 0x8b, 0x08, 0xf8, 0xc5, 0xdb, 0xdf, 0xb9, 0x6b, 0x66, 0x61, 0x51,
|
||||
0x54, 0x64, 0x12, 0x54, 0x00, 0xb6, 0x9e, 0x7b, 0x77, 0x4d, 0x82, 0xd2, 0x17, 0xf0, 0xf8, 0xbb,
|
||||
0x0a, 0x98, 0x37, 0x5f, 0x05, 0x71, 0xd8, 0x5f, 0x7e, 0x83, 0xe3, 0x90, 0xf8, 0xe2, 0x3a, 0xc9,
|
||||
0x42, 0x60, 0x74, 0xbd, 0xbf, 0xe9, 0xcd, 0x2d, 0x5b, 0x59, 0xcf, 0xaf, 0x13, 0xe2, 0xc1, 0xb2,
|
||||
0xfc, 0x1b, 0x3d, 0x2b, 0x26, 0x33, 0x8b, 0xce, 0xe9, 0xae, 0xcf, 0x29, 0xdf, 0x7c, 0x80, 0x5b,
|
||||
0x5f, 0x00, 0x6c, 0x6d, 0xd1, 0x63, 0x38, 0xb2, 0xbf, 0xec, 0x8d, 0x87, 0x8e, 0x3f, 0xff, 0x7a,
|
||||
0xea, 0xf8, 0x8b, 0xf1, 0x6c, 0xea, 0xd8, 0xee, 0xc0, 0x75, 0xfa, 0xe6, 0x7b, 0x68, 0x0f, 0xf4,
|
||||
0x5e, 0xbf, 0x6f, 0x6a, 0x08, 0xa0, 0xee, 0x39, 0xcf, 0x27, 0x2f, 0x1c, 0xb3, 0xd2, 0xfa, 0x4d,
|
||||
0x87, 0x23, 0xe7, 0x2a, 0x61, 0xa9, 0x28, 0xa7, 0xee, 0x5f, 0x9c, 0x88, 0x0b, 0x78, 0x58, 0xee,
|
||||
0x73, 0x3f, 0x0b, 0xa3, 0xfe, 0x97, 0xc2, 0x68, 0xb0, 0x37, 0xf0, 0x5b, 0x36, 0x54, 0xf5, 0x9f,
|
||||
0xd8, 0x50, 0xb5, 0x7b, 0x6d, 0x28, 0x74, 0x0a, 0xc6, 0x92, 0xad, 0xd7, 0x64, 0xa9, 0xde, 0x80,
|
||||
0x06, 0x72, 0x78, 0xf4, 0x76, 0xc3, 0x3b, 0xd8, 0x56, 0xdd, 0x80, 0xa3, 0x33, 0x38, 0x64, 0x1b,
|
||||
0x91, 0x6c, 0x84, 0xbf, 0x49, 0xa9, 0x9f, 0xa4, 0x64, 0x45, 0xaf, 0xd4, 0x48, 0x34, 0xbc, 0x87,
|
||||
0xd9, 0x0f, 0x8b, 0x94, 0x4e, 0x55, 0xb9, 0xf5, 0xab, 0x0e, 0x47, 0x6e, 0xf4, 0xae, 0xc7, 0xff,
|
||||
0xb7, 0x1e, 0xb7, 0xc1, 0xa4, 0xf1, 0xad, 0x2d, 0x36, 0x54, 0x7d, 0xdb, 0x61, 0xe7, 0x0f, 0x43,
|
||||
0xec, 0x11, 0x9e, 0xb0, 0x98, 0x93, 0xdb, 0x83, 0xa2, 0xdd, 0x1e, 0x94, 0xaf, 0xe0, 0x41, 0xb9,
|
||||
0x70, 0x4f, 0xc1, 0x20, 0x5c, 0xd0, 0x08, 0x0b, 0x12, 0xf8, 0xaf, 0x59, 0xfa, 0x4a, 0x89, 0x74,
|
||||
0xef, 0xa0, 0xac, 0x5e, 0xb0, 0xf4, 0x55, 0x76, 0x95, 0x28, 0x59, 0x93, 0x92, 0x56, 0xc9, 0x68,
|
||||
0x65, 0x55, 0xd2, 0xce, 0x7e, 0xd4, 0xc0, 0x78, 0xb3, 0x7d, 0xe8, 0x09, 0x3c, 0x9e, 0x4c, 0x1d,
|
||||
0xaf, 0x37, 0x77, 0x27, 0x63, 0x7f, 0x36, 0xef, 0xcd, 0x6f, 0xee, 0x2b, 0x13, 0xde, 0x77, 0xc7,
|
||||
0xee, 0xdc, 0xed, 0x8d, 0xdc, 0x97, 0xee, 0x78, 0x68, 0x6a, 0xc8, 0x00, 0x98, 0x7a, 0x13, 0xdb,
|
||||
0x99, 0xcd, 0x24, 0xae, 0x48, 0x6c, 0xf7, 0xc6, 0xb6, 0x33, 0x1a, 0x49, 0xac, 0x4b, 0x3c, 0x70,
|
||||
0xc7, 0x05, 0xbf, 0x2a, 0xf1, 0x6c, 0x61, 0x4b, 0xfe, 0x60, 0x31, 0x32, 0x6b, 0x72, 0xf1, 0x0d,
|
||||
0x7a, 0xee, 0xc8, 0xe9, 0x9b, 0x75, 0x74, 0x00, 0x8d, 0x5c, 0xeb, 0xf4, 0xcd, 0xbd, 0xf3, 0x9f,
|
||||
0x35, 0x68, 0x2d, 0x59, 0xb4, 0xa3, 0xa3, 0xe7, 0xdb, 0x4b, 0x4c, 0x65, 0xc4, 0xa7, 0xda, 0x4b,
|
||||
0x3b, 0x57, 0x84, 0x6c, 0x8d, 0xe3, 0xd0, 0x62, 0x69, 0xd8, 0x09, 0x49, 0xac, 0x06, 0xa0, 0x93,
|
||||
0xfd, 0x84, 0x13, 0xca, 0xdf, 0xf6, 0x0f, 0xe5, 0x33, 0x85, 0x7e, 0xaa, 0x54, 0x87, 0xf6, 0x60,
|
||||
0xf6, 0x4b, 0xe5, 0x93, 0x61, 0x66, 0x66, 0xaf, 0xd9, 0x26, 0xb0, 0x06, 0xe5, 0x21, 0x7a, 0xea,
|
||||
0x10, 0x2f, 0x9e, 0x9e, 0x4b, 0xcd, 0x65, 0x5d, 0xb9, 0x7f, 0xfa, 0x7b, 0x00, 0x00, 0x00, 0xff,
|
||||
0xff, 0x66, 0x9c, 0x3d, 0x65, 0x1b, 0x0b, 0x00, 0x00,
|
||||
}
|
||||
|
562
vendor/google.golang.org/genproto/googleapis/firestore/v1/common.pb.go
generated
vendored
Normal file
562
vendor/google.golang.org/genproto/googleapis/firestore/v1/common.pb.go
generated
vendored
Normal file
@ -0,0 +1,562 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/firestore/v1/common.proto
|
||||
|
||||
package firestore // import "google.golang.org/genproto/googleapis/firestore/v1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
|
||||
// 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 set of field paths on a document.
|
||||
// Used to restrict a get or update operation on a document to a subset of its
|
||||
// fields.
|
||||
// This is different from standard field masks, as this is always scoped to a
|
||||
// [Document][google.firestore.v1.Document], and takes in account the dynamic nature of [Value][google.firestore.v1.Value].
|
||||
type DocumentMask struct {
|
||||
// The list of field paths in the mask. See [Document.fields][google.firestore.v1.Document.fields] for a field
|
||||
// path syntax reference.
|
||||
FieldPaths []string `protobuf:"bytes,1,rep,name=field_paths,json=fieldPaths,proto3" json:"field_paths,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DocumentMask) Reset() { *m = DocumentMask{} }
|
||||
func (m *DocumentMask) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentMask) ProtoMessage() {}
|
||||
func (*DocumentMask) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_common_d742b1674d6d5f16, []int{0}
|
||||
}
|
||||
func (m *DocumentMask) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentMask.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DocumentMask) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DocumentMask.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *DocumentMask) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DocumentMask.Merge(dst, src)
|
||||
}
|
||||
func (m *DocumentMask) XXX_Size() int {
|
||||
return xxx_messageInfo_DocumentMask.Size(m)
|
||||
}
|
||||
func (m *DocumentMask) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DocumentMask.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DocumentMask proto.InternalMessageInfo
|
||||
|
||||
func (m *DocumentMask) GetFieldPaths() []string {
|
||||
if m != nil {
|
||||
return m.FieldPaths
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A precondition on a document, used for conditional operations.
|
||||
type Precondition struct {
|
||||
// The type of precondition.
|
||||
//
|
||||
// Types that are valid to be assigned to ConditionType:
|
||||
// *Precondition_Exists
|
||||
// *Precondition_UpdateTime
|
||||
ConditionType isPrecondition_ConditionType `protobuf_oneof:"condition_type"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Precondition) Reset() { *m = Precondition{} }
|
||||
func (m *Precondition) String() string { return proto.CompactTextString(m) }
|
||||
func (*Precondition) ProtoMessage() {}
|
||||
func (*Precondition) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_common_d742b1674d6d5f16, []int{1}
|
||||
}
|
||||
func (m *Precondition) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Precondition.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Precondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Precondition.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Precondition) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Precondition.Merge(dst, src)
|
||||
}
|
||||
func (m *Precondition) XXX_Size() int {
|
||||
return xxx_messageInfo_Precondition.Size(m)
|
||||
}
|
||||
func (m *Precondition) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Precondition.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Precondition proto.InternalMessageInfo
|
||||
|
||||
type isPrecondition_ConditionType interface {
|
||||
isPrecondition_ConditionType()
|
||||
}
|
||||
|
||||
type Precondition_Exists struct {
|
||||
Exists bool `protobuf:"varint,1,opt,name=exists,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Precondition_UpdateTime struct {
|
||||
UpdateTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=update_time,json=updateTime,proto3,oneof"`
|
||||
}
|
||||
|
||||
func (*Precondition_Exists) isPrecondition_ConditionType() {}
|
||||
|
||||
func (*Precondition_UpdateTime) isPrecondition_ConditionType() {}
|
||||
|
||||
func (m *Precondition) GetConditionType() isPrecondition_ConditionType {
|
||||
if m != nil {
|
||||
return m.ConditionType
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Precondition) GetExists() bool {
|
||||
if x, ok := m.GetConditionType().(*Precondition_Exists); ok {
|
||||
return x.Exists
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *Precondition) GetUpdateTime() *timestamp.Timestamp {
|
||||
if x, ok := m.GetConditionType().(*Precondition_UpdateTime); ok {
|
||||
return x.UpdateTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// XXX_OneofFuncs is for the internal use of the proto package.
|
||||
func (*Precondition) 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 _Precondition_OneofMarshaler, _Precondition_OneofUnmarshaler, _Precondition_OneofSizer, []interface{}{
|
||||
(*Precondition_Exists)(nil),
|
||||
(*Precondition_UpdateTime)(nil),
|
||||
}
|
||||
}
|
||||
|
||||
func _Precondition_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
||||
m := msg.(*Precondition)
|
||||
// condition_type
|
||||
switch x := m.ConditionType.(type) {
|
||||
case *Precondition_Exists:
|
||||
t := uint64(0)
|
||||
if x.Exists {
|
||||
t = 1
|
||||
}
|
||||
b.EncodeVarint(1<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(t)
|
||||
case *Precondition_UpdateTime:
|
||||
b.EncodeVarint(2<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.UpdateTime); err != nil {
|
||||
return err
|
||||
}
|
||||
case nil:
|
||||
default:
|
||||
return fmt.Errorf("Precondition.ConditionType has unexpected type %T", x)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func _Precondition_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
||||
m := msg.(*Precondition)
|
||||
switch tag {
|
||||
case 1: // condition_type.exists
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.ConditionType = &Precondition_Exists{x != 0}
|
||||
return true, err
|
||||
case 2: // condition_type.update_time
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(timestamp.Timestamp)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ConditionType = &Precondition_UpdateTime{msg}
|
||||
return true, err
|
||||
default:
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
|
||||
func _Precondition_OneofSizer(msg proto.Message) (n int) {
|
||||
m := msg.(*Precondition)
|
||||
// condition_type
|
||||
switch x := m.ConditionType.(type) {
|
||||
case *Precondition_Exists:
|
||||
n += 1 // tag and wire
|
||||
n += 1
|
||||
case *Precondition_UpdateTime:
|
||||
s := proto.Size(x.UpdateTime)
|
||||
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
|
||||
}
|
||||
|
||||
// Options for creating a new transaction.
|
||||
type TransactionOptions struct {
|
||||
// The mode of the transaction.
|
||||
//
|
||||
// Types that are valid to be assigned to Mode:
|
||||
// *TransactionOptions_ReadOnly_
|
||||
// *TransactionOptions_ReadWrite_
|
||||
Mode isTransactionOptions_Mode `protobuf_oneof:"mode"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *TransactionOptions) Reset() { *m = TransactionOptions{} }
|
||||
func (m *TransactionOptions) String() string { return proto.CompactTextString(m) }
|
||||
func (*TransactionOptions) ProtoMessage() {}
|
||||
func (*TransactionOptions) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_common_d742b1674d6d5f16, []int{2}
|
||||
}
|
||||
func (m *TransactionOptions) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_TransactionOptions.Unmarshal(m, b)
|
||||
}
|
||||
func (m *TransactionOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_TransactionOptions.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *TransactionOptions) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_TransactionOptions.Merge(dst, src)
|
||||
}
|
||||
func (m *TransactionOptions) XXX_Size() int {
|
||||
return xxx_messageInfo_TransactionOptions.Size(m)
|
||||
}
|
||||
func (m *TransactionOptions) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_TransactionOptions.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_TransactionOptions proto.InternalMessageInfo
|
||||
|
||||
type isTransactionOptions_Mode interface {
|
||||
isTransactionOptions_Mode()
|
||||
}
|
||||
|
||||
type TransactionOptions_ReadOnly_ struct {
|
||||
ReadOnly *TransactionOptions_ReadOnly `protobuf:"bytes,2,opt,name=read_only,json=readOnly,proto3,oneof"`
|
||||
}
|
||||
|
||||
type TransactionOptions_ReadWrite_ struct {
|
||||
ReadWrite *TransactionOptions_ReadWrite `protobuf:"bytes,3,opt,name=read_write,json=readWrite,proto3,oneof"`
|
||||
}
|
||||
|
||||
func (*TransactionOptions_ReadOnly_) isTransactionOptions_Mode() {}
|
||||
|
||||
func (*TransactionOptions_ReadWrite_) isTransactionOptions_Mode() {}
|
||||
|
||||
func (m *TransactionOptions) GetMode() isTransactionOptions_Mode {
|
||||
if m != nil {
|
||||
return m.Mode
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *TransactionOptions) GetReadOnly() *TransactionOptions_ReadOnly {
|
||||
if x, ok := m.GetMode().(*TransactionOptions_ReadOnly_); ok {
|
||||
return x.ReadOnly
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *TransactionOptions) GetReadWrite() *TransactionOptions_ReadWrite {
|
||||
if x, ok := m.GetMode().(*TransactionOptions_ReadWrite_); ok {
|
||||
return x.ReadWrite
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// XXX_OneofFuncs is for the internal use of the proto package.
|
||||
func (*TransactionOptions) 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 _TransactionOptions_OneofMarshaler, _TransactionOptions_OneofUnmarshaler, _TransactionOptions_OneofSizer, []interface{}{
|
||||
(*TransactionOptions_ReadOnly_)(nil),
|
||||
(*TransactionOptions_ReadWrite_)(nil),
|
||||
}
|
||||
}
|
||||
|
||||
func _TransactionOptions_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
||||
m := msg.(*TransactionOptions)
|
||||
// mode
|
||||
switch x := m.Mode.(type) {
|
||||
case *TransactionOptions_ReadOnly_:
|
||||
b.EncodeVarint(2<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.ReadOnly); err != nil {
|
||||
return err
|
||||
}
|
||||
case *TransactionOptions_ReadWrite_:
|
||||
b.EncodeVarint(3<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.ReadWrite); err != nil {
|
||||
return err
|
||||
}
|
||||
case nil:
|
||||
default:
|
||||
return fmt.Errorf("TransactionOptions.Mode has unexpected type %T", x)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func _TransactionOptions_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
||||
m := msg.(*TransactionOptions)
|
||||
switch tag {
|
||||
case 2: // mode.read_only
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(TransactionOptions_ReadOnly)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.Mode = &TransactionOptions_ReadOnly_{msg}
|
||||
return true, err
|
||||
case 3: // mode.read_write
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(TransactionOptions_ReadWrite)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.Mode = &TransactionOptions_ReadWrite_{msg}
|
||||
return true, err
|
||||
default:
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
|
||||
func _TransactionOptions_OneofSizer(msg proto.Message) (n int) {
|
||||
m := msg.(*TransactionOptions)
|
||||
// mode
|
||||
switch x := m.Mode.(type) {
|
||||
case *TransactionOptions_ReadOnly_:
|
||||
s := proto.Size(x.ReadOnly)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *TransactionOptions_ReadWrite_:
|
||||
s := proto.Size(x.ReadWrite)
|
||||
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
|
||||
}
|
||||
|
||||
// Options for a transaction that can be used to read and write documents.
|
||||
type TransactionOptions_ReadWrite struct {
|
||||
// An optional transaction to retry.
|
||||
RetryTransaction []byte `protobuf:"bytes,1,opt,name=retry_transaction,json=retryTransaction,proto3" json:"retry_transaction,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *TransactionOptions_ReadWrite) Reset() { *m = TransactionOptions_ReadWrite{} }
|
||||
func (m *TransactionOptions_ReadWrite) String() string { return proto.CompactTextString(m) }
|
||||
func (*TransactionOptions_ReadWrite) ProtoMessage() {}
|
||||
func (*TransactionOptions_ReadWrite) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_common_d742b1674d6d5f16, []int{2, 0}
|
||||
}
|
||||
func (m *TransactionOptions_ReadWrite) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_TransactionOptions_ReadWrite.Unmarshal(m, b)
|
||||
}
|
||||
func (m *TransactionOptions_ReadWrite) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_TransactionOptions_ReadWrite.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *TransactionOptions_ReadWrite) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_TransactionOptions_ReadWrite.Merge(dst, src)
|
||||
}
|
||||
func (m *TransactionOptions_ReadWrite) XXX_Size() int {
|
||||
return xxx_messageInfo_TransactionOptions_ReadWrite.Size(m)
|
||||
}
|
||||
func (m *TransactionOptions_ReadWrite) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_TransactionOptions_ReadWrite.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_TransactionOptions_ReadWrite proto.InternalMessageInfo
|
||||
|
||||
func (m *TransactionOptions_ReadWrite) GetRetryTransaction() []byte {
|
||||
if m != nil {
|
||||
return m.RetryTransaction
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Options for a transaction that can only be used to read documents.
|
||||
type TransactionOptions_ReadOnly struct {
|
||||
// The consistency mode for this transaction. If not set, defaults to strong
|
||||
// consistency.
|
||||
//
|
||||
// Types that are valid to be assigned to ConsistencySelector:
|
||||
// *TransactionOptions_ReadOnly_ReadTime
|
||||
ConsistencySelector isTransactionOptions_ReadOnly_ConsistencySelector `protobuf_oneof:"consistency_selector"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *TransactionOptions_ReadOnly) Reset() { *m = TransactionOptions_ReadOnly{} }
|
||||
func (m *TransactionOptions_ReadOnly) String() string { return proto.CompactTextString(m) }
|
||||
func (*TransactionOptions_ReadOnly) ProtoMessage() {}
|
||||
func (*TransactionOptions_ReadOnly) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_common_d742b1674d6d5f16, []int{2, 1}
|
||||
}
|
||||
func (m *TransactionOptions_ReadOnly) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_TransactionOptions_ReadOnly.Unmarshal(m, b)
|
||||
}
|
||||
func (m *TransactionOptions_ReadOnly) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_TransactionOptions_ReadOnly.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *TransactionOptions_ReadOnly) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_TransactionOptions_ReadOnly.Merge(dst, src)
|
||||
}
|
||||
func (m *TransactionOptions_ReadOnly) XXX_Size() int {
|
||||
return xxx_messageInfo_TransactionOptions_ReadOnly.Size(m)
|
||||
}
|
||||
func (m *TransactionOptions_ReadOnly) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_TransactionOptions_ReadOnly.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_TransactionOptions_ReadOnly proto.InternalMessageInfo
|
||||
|
||||
type isTransactionOptions_ReadOnly_ConsistencySelector interface {
|
||||
isTransactionOptions_ReadOnly_ConsistencySelector()
|
||||
}
|
||||
|
||||
type TransactionOptions_ReadOnly_ReadTime struct {
|
||||
ReadTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=read_time,json=readTime,proto3,oneof"`
|
||||
}
|
||||
|
||||
func (*TransactionOptions_ReadOnly_ReadTime) isTransactionOptions_ReadOnly_ConsistencySelector() {}
|
||||
|
||||
func (m *TransactionOptions_ReadOnly) GetConsistencySelector() isTransactionOptions_ReadOnly_ConsistencySelector {
|
||||
if m != nil {
|
||||
return m.ConsistencySelector
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *TransactionOptions_ReadOnly) GetReadTime() *timestamp.Timestamp {
|
||||
if x, ok := m.GetConsistencySelector().(*TransactionOptions_ReadOnly_ReadTime); ok {
|
||||
return x.ReadTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// XXX_OneofFuncs is for the internal use of the proto package.
|
||||
func (*TransactionOptions_ReadOnly) 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 _TransactionOptions_ReadOnly_OneofMarshaler, _TransactionOptions_ReadOnly_OneofUnmarshaler, _TransactionOptions_ReadOnly_OneofSizer, []interface{}{
|
||||
(*TransactionOptions_ReadOnly_ReadTime)(nil),
|
||||
}
|
||||
}
|
||||
|
||||
func _TransactionOptions_ReadOnly_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
||||
m := msg.(*TransactionOptions_ReadOnly)
|
||||
// consistency_selector
|
||||
switch x := m.ConsistencySelector.(type) {
|
||||
case *TransactionOptions_ReadOnly_ReadTime:
|
||||
b.EncodeVarint(2<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.ReadTime); err != nil {
|
||||
return err
|
||||
}
|
||||
case nil:
|
||||
default:
|
||||
return fmt.Errorf("TransactionOptions_ReadOnly.ConsistencySelector has unexpected type %T", x)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func _TransactionOptions_ReadOnly_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
||||
m := msg.(*TransactionOptions_ReadOnly)
|
||||
switch tag {
|
||||
case 2: // consistency_selector.read_time
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(timestamp.Timestamp)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ConsistencySelector = &TransactionOptions_ReadOnly_ReadTime{msg}
|
||||
return true, err
|
||||
default:
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
|
||||
func _TransactionOptions_ReadOnly_OneofSizer(msg proto.Message) (n int) {
|
||||
m := msg.(*TransactionOptions_ReadOnly)
|
||||
// consistency_selector
|
||||
switch x := m.ConsistencySelector.(type) {
|
||||
case *TransactionOptions_ReadOnly_ReadTime:
|
||||
s := proto.Size(x.ReadTime)
|
||||
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
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*DocumentMask)(nil), "google.firestore.v1.DocumentMask")
|
||||
proto.RegisterType((*Precondition)(nil), "google.firestore.v1.Precondition")
|
||||
proto.RegisterType((*TransactionOptions)(nil), "google.firestore.v1.TransactionOptions")
|
||||
proto.RegisterType((*TransactionOptions_ReadWrite)(nil), "google.firestore.v1.TransactionOptions.ReadWrite")
|
||||
proto.RegisterType((*TransactionOptions_ReadOnly)(nil), "google.firestore.v1.TransactionOptions.ReadOnly")
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/v1/common.proto", fileDescriptor_common_d742b1674d6d5f16)
|
||||
}
|
||||
|
||||
var fileDescriptor_common_d742b1674d6d5f16 = []byte{
|
||||
// 459 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0xd1, 0x8a, 0xd3, 0x40,
|
||||
0x14, 0x6d, 0xba, 0x4b, 0x69, 0x6f, 0x8b, 0xac, 0x51, 0xb4, 0x06, 0x61, 0x4b, 0x9f, 0x0a, 0xc2,
|
||||
0xc4, 0xe8, 0x8b, 0xa2, 0xbe, 0xb4, 0xb2, 0xdb, 0x17, 0x69, 0x89, 0xcb, 0x0a, 0x52, 0x09, 0xb3,
|
||||
0xc9, 0x6d, 0x1c, 0x4c, 0xe6, 0x86, 0x99, 0xe9, 0x6a, 0x7e, 0x47, 0xf0, 0xc5, 0x4f, 0xf1, 0x13,
|
||||
0xfc, 0x1a, 0xc9, 0x24, 0x8d, 0x8a, 0x7d, 0x70, 0xdf, 0xe6, 0xde, 0x73, 0xcf, 0x39, 0xf7, 0x5c,
|
||||
0x06, 0x26, 0x29, 0x51, 0x9a, 0xa1, 0xbf, 0x15, 0x0a, 0xb5, 0x21, 0x85, 0xfe, 0x75, 0xe0, 0xc7,
|
||||
0x94, 0xe7, 0x24, 0x59, 0xa1, 0xc8, 0x90, 0x7b, 0xa7, 0x9e, 0x60, 0xed, 0x04, 0xbb, 0x0e, 0xbc,
|
||||
0x87, 0x0d, 0x8d, 0x17, 0xc2, 0xe7, 0x52, 0x92, 0xe1, 0x46, 0x90, 0xd4, 0x35, 0xc5, 0x3b, 0x6d,
|
||||
0x50, 0x5b, 0x5d, 0xed, 0xb6, 0xbe, 0x11, 0x39, 0x6a, 0xc3, 0xf3, 0xa2, 0x1e, 0x98, 0xfa, 0x30,
|
||||
0x7a, 0x4d, 0xf1, 0x2e, 0x47, 0x69, 0xde, 0x70, 0xfd, 0xc9, 0x3d, 0x85, 0xe1, 0x56, 0x60, 0x96,
|
||||
0x44, 0x05, 0x37, 0x1f, 0xf5, 0xd8, 0x99, 0x1c, 0xcd, 0x06, 0x21, 0xd8, 0xd6, 0xba, 0xea, 0x4c,
|
||||
0x4b, 0x18, 0xad, 0x15, 0xc6, 0x24, 0x13, 0x51, 0x19, 0xb9, 0x63, 0xe8, 0xe1, 0x17, 0xa1, 0x4d,
|
||||
0x35, 0xeb, 0xcc, 0xfa, 0xcb, 0x4e, 0xd8, 0xd4, 0xee, 0x2b, 0x18, 0xee, 0x8a, 0x84, 0x1b, 0x8c,
|
||||
0x2a, 0xd3, 0x71, 0x77, 0xe2, 0xcc, 0x86, 0x4f, 0x3c, 0xd6, 0x84, 0xd8, 0x6f, 0xc4, 0x2e, 0xf6,
|
||||
0x1b, 0x2d, 0x3b, 0x21, 0xd4, 0x84, 0xaa, 0x35, 0x3f, 0x81, 0x5b, 0xad, 0x4b, 0x64, 0xca, 0x02,
|
||||
0xa7, 0x3f, 0xbb, 0xe0, 0x5e, 0x28, 0x2e, 0x35, 0x8f, 0xab, 0xe6, 0xaa, 0xb0, 0x49, 0xdd, 0x15,
|
||||
0x0c, 0x14, 0xf2, 0x24, 0x22, 0x99, 0x95, 0x8d, 0xcb, 0x63, 0x76, 0xe0, 0x54, 0xec, 0x5f, 0x2e,
|
||||
0x0b, 0x91, 0x27, 0x2b, 0x99, 0x95, 0xcb, 0x4e, 0xd8, 0x57, 0xcd, 0xdb, 0x0d, 0x01, 0xac, 0xe0,
|
||||
0x67, 0x25, 0x0c, 0x8e, 0x8f, 0xac, 0x62, 0x70, 0x13, 0xc5, 0x77, 0x15, 0x71, 0xd9, 0x09, 0xed,
|
||||
0x5e, 0xb6, 0xf0, 0x9e, 0xc1, 0xa0, 0x45, 0xdc, 0x47, 0x70, 0x5b, 0xa1, 0x51, 0x65, 0x64, 0x7e,
|
||||
0xf3, 0xed, 0xf9, 0x46, 0xe1, 0x89, 0x05, 0xfe, 0xd0, 0xf5, 0x3e, 0x40, 0x7f, 0xbf, 0xa5, 0xfb,
|
||||
0xbc, 0x89, 0xfa, 0xdf, 0x07, 0xb5, 0xa1, 0xec, 0x39, 0xef, 0xc1, 0xdd, 0x98, 0xa4, 0x16, 0xda,
|
||||
0xa0, 0x8c, 0xcb, 0x48, 0x63, 0x86, 0xb1, 0x21, 0x35, 0xef, 0xc1, 0x71, 0x4e, 0x09, 0xce, 0xbf,
|
||||
0x39, 0x70, 0x3f, 0xa6, 0xfc, 0x50, 0xcc, 0xf9, 0x70, 0x61, 0xbf, 0xe1, 0xba, 0x72, 0x58, 0x3b,
|
||||
0xef, 0x5f, 0x36, 0x33, 0x29, 0x65, 0x5c, 0xa6, 0x8c, 0x54, 0xea, 0xa7, 0x28, 0xad, 0xbf, 0x5f,
|
||||
0x43, 0xbc, 0x10, 0xfa, 0xaf, 0x8f, 0xfc, 0xa2, 0x2d, 0xbe, 0x76, 0x8f, 0xcf, 0x17, 0x67, 0x6f,
|
||||
0xbf, 0x77, 0x1f, 0x9c, 0xd7, 0x2a, 0x8b, 0x8c, 0x76, 0x09, 0x3b, 0x6b, 0xfd, 0x2e, 0x83, 0x1f,
|
||||
0x7b, 0x6c, 0x63, 0xb1, 0x4d, 0x8b, 0x6d, 0x2e, 0x83, 0xab, 0x9e, 0xf5, 0x79, 0xfa, 0x2b, 0x00,
|
||||
0x00, 0xff, 0xff, 0x6e, 0x90, 0xee, 0x09, 0x2f, 0x03, 0x00, 0x00,
|
||||
}
|
684
vendor/google.golang.org/genproto/googleapis/firestore/v1/document.pb.go
generated
vendored
Normal file
684
vendor/google.golang.org/genproto/googleapis/firestore/v1/document.pb.go
generated
vendored
Normal file
@ -0,0 +1,684 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/firestore/v1/document.proto
|
||||
|
||||
package firestore // import "google.golang.org/genproto/googleapis/firestore/v1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import _struct "github.com/golang/protobuf/ptypes/struct"
|
||||
import timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
import latlng "google.golang.org/genproto/googleapis/type/latlng"
|
||||
|
||||
// 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 Firestore document.
|
||||
//
|
||||
// Must not exceed 1 MiB - 4 bytes.
|
||||
type Document struct {
|
||||
// The resource name of the document, for example
|
||||
// `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
// The document's fields.
|
||||
//
|
||||
// The map keys represent field names.
|
||||
//
|
||||
// A simple field name contains only characters `a` to `z`, `A` to `Z`,
|
||||
// `0` to `9`, or `_`, and must not start with `0` to `9`. For example,
|
||||
// `foo_bar_17`.
|
||||
//
|
||||
// Field names matching the regular expression `__.*__` are reserved. Reserved
|
||||
// field names are forbidden except in certain documented contexts. The map
|
||||
// keys, represented as UTF-8, must not exceed 1,500 bytes and cannot be
|
||||
// empty.
|
||||
//
|
||||
// Field paths may be used in other contexts to refer to structured fields
|
||||
// defined here. For `map_value`, the field path is represented by the simple
|
||||
// or quoted field names of the containing fields, delimited by `.`. For
|
||||
// example, the structured field
|
||||
// `"foo" : { map_value: { "x&y" : { string_value: "hello" }}}` would be
|
||||
// represented by the field path `foo.x&y`.
|
||||
//
|
||||
// Within a field path, a quoted field name starts and ends with `` ` `` and
|
||||
// may contain any character. Some characters, including `` ` ``, must be
|
||||
// escaped using a `\`. For example, `` `x&y` `` represents `x&y` and
|
||||
// `` `bak\`tik` `` represents `` bak`tik ``.
|
||||
Fields map[string]*Value `protobuf:"bytes,2,rep,name=fields,proto3" json:"fields,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
// Output only. The time at which the document was created.
|
||||
//
|
||||
// This value increases monotonically when a document is deleted then
|
||||
// recreated. It can also be compared to values from other documents and
|
||||
// the `read_time` of a query.
|
||||
CreateTime *timestamp.Timestamp `protobuf:"bytes,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
|
||||
// Output only. The time at which the document was last changed.
|
||||
//
|
||||
// This value is initially set to the `create_time` then increases
|
||||
// monotonically with each change to the document. It can also be
|
||||
// compared to values from other documents and the `read_time` of a query.
|
||||
UpdateTime *timestamp.Timestamp `protobuf:"bytes,4,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Document) Reset() { *m = Document{} }
|
||||
func (m *Document) String() string { return proto.CompactTextString(m) }
|
||||
func (*Document) ProtoMessage() {}
|
||||
func (*Document) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_document_29c6fb566b77c4b5, []int{0}
|
||||
}
|
||||
func (m *Document) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Document.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Document) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Document.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Document) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Document.Merge(dst, src)
|
||||
}
|
||||
func (m *Document) XXX_Size() int {
|
||||
return xxx_messageInfo_Document.Size(m)
|
||||
}
|
||||
func (m *Document) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Document.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Document proto.InternalMessageInfo
|
||||
|
||||
func (m *Document) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Document) GetFields() map[string]*Value {
|
||||
if m != nil {
|
||||
return m.Fields
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Document) GetCreateTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.CreateTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Document) GetUpdateTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.UpdateTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A message that can hold any of the supported value types.
|
||||
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_StringValue
|
||||
// *Value_BytesValue
|
||||
// *Value_ReferenceValue
|
||||
// *Value_GeoPointValue
|
||||
// *Value_ArrayValue
|
||||
// *Value_MapValue
|
||||
ValueType isValue_ValueType `protobuf_oneof:"value_type"`
|
||||
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_document_29c6fb566b77c4b5, []int{1}
|
||||
}
|
||||
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 (dst *Value) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Value.Merge(dst, 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_StringValue struct {
|
||||
StringValue string `protobuf:"bytes,17,opt,name=string_value,json=stringValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_BytesValue struct {
|
||||
BytesValue []byte `protobuf:"bytes,18,opt,name=bytes_value,json=bytesValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_ReferenceValue struct {
|
||||
ReferenceValue string `protobuf:"bytes,5,opt,name=reference_value,json=referenceValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_GeoPointValue struct {
|
||||
GeoPointValue *latlng.LatLng `protobuf:"bytes,8,opt,name=geo_point_value,json=geoPointValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_ArrayValue struct {
|
||||
ArrayValue *ArrayValue `protobuf:"bytes,9,opt,name=array_value,json=arrayValue,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Value_MapValue struct {
|
||||
MapValue *MapValue `protobuf:"bytes,6,opt,name=map_value,json=mapValue,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_StringValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_BytesValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_ReferenceValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_GeoPointValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_ArrayValue) isValue_ValueType() {}
|
||||
|
||||
func (*Value_MapValue) 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) GetStringValue() string {
|
||||
if x, ok := m.GetValueType().(*Value_StringValue); ok {
|
||||
return x.StringValue
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Value) GetBytesValue() []byte {
|
||||
if x, ok := m.GetValueType().(*Value_BytesValue); ok {
|
||||
return x.BytesValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetReferenceValue() string {
|
||||
if x, ok := m.GetValueType().(*Value_ReferenceValue); ok {
|
||||
return x.ReferenceValue
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Value) GetGeoPointValue() *latlng.LatLng {
|
||||
if x, ok := m.GetValueType().(*Value_GeoPointValue); ok {
|
||||
return x.GeoPointValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetArrayValue() *ArrayValue {
|
||||
if x, ok := m.GetValueType().(*Value_ArrayValue); ok {
|
||||
return x.ArrayValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Value) GetMapValue() *MapValue {
|
||||
if x, ok := m.GetValueType().(*Value_MapValue); ok {
|
||||
return x.MapValue
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// 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_StringValue)(nil),
|
||||
(*Value_BytesValue)(nil),
|
||||
(*Value_ReferenceValue)(nil),
|
||||
(*Value_GeoPointValue)(nil),
|
||||
(*Value_ArrayValue)(nil),
|
||||
(*Value_MapValue)(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_StringValue:
|
||||
b.EncodeVarint(17<<3 | proto.WireBytes)
|
||||
b.EncodeStringBytes(x.StringValue)
|
||||
case *Value_BytesValue:
|
||||
b.EncodeVarint(18<<3 | proto.WireBytes)
|
||||
b.EncodeRawBytes(x.BytesValue)
|
||||
case *Value_ReferenceValue:
|
||||
b.EncodeVarint(5<<3 | proto.WireBytes)
|
||||
b.EncodeStringBytes(x.ReferenceValue)
|
||||
case *Value_GeoPointValue:
|
||||
b.EncodeVarint(8<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.GeoPointValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Value_ArrayValue:
|
||||
b.EncodeVarint(9<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.ArrayValue); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Value_MapValue:
|
||||
b.EncodeVarint(6<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.MapValue); 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 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.bytes_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeRawBytes(true)
|
||||
m.ValueType = &Value_BytesValue{x}
|
||||
return true, err
|
||||
case 5: // value_type.reference_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeStringBytes()
|
||||
m.ValueType = &Value_ReferenceValue{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 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
|
||||
case 6: // value_type.map_value
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(MapValue)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.ValueType = &Value_MapValue{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_StringValue:
|
||||
n += 2 // tag and wire
|
||||
n += proto.SizeVarint(uint64(len(x.StringValue)))
|
||||
n += len(x.StringValue)
|
||||
case *Value_BytesValue:
|
||||
n += 2 // tag and wire
|
||||
n += proto.SizeVarint(uint64(len(x.BytesValue)))
|
||||
n += len(x.BytesValue)
|
||||
case *Value_ReferenceValue:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(len(x.ReferenceValue)))
|
||||
n += len(x.ReferenceValue)
|
||||
case *Value_GeoPointValue:
|
||||
s := proto.Size(x.GeoPointValue)
|
||||
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 *Value_MapValue:
|
||||
s := proto.Size(x.MapValue)
|
||||
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
|
||||
}
|
||||
|
||||
// An array value.
|
||||
type ArrayValue struct {
|
||||
// Values in the array.
|
||||
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_document_29c6fb566b77c4b5, []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 (dst *ArrayValue) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ArrayValue.Merge(dst, 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 map value.
|
||||
type MapValue struct {
|
||||
// The map's fields.
|
||||
//
|
||||
// The map keys represent field names. Field names matching the regular
|
||||
// expression `__.*__` are reserved. Reserved field names are forbidden except
|
||||
// in certain documented contexts. The map keys, represented as UTF-8, must
|
||||
// not exceed 1,500 bytes and cannot be empty.
|
||||
Fields map[string]*Value `protobuf:"bytes,1,rep,name=fields,proto3" json:"fields,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 *MapValue) Reset() { *m = MapValue{} }
|
||||
func (m *MapValue) String() string { return proto.CompactTextString(m) }
|
||||
func (*MapValue) ProtoMessage() {}
|
||||
func (*MapValue) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_document_29c6fb566b77c4b5, []int{3}
|
||||
}
|
||||
func (m *MapValue) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_MapValue.Unmarshal(m, b)
|
||||
}
|
||||
func (m *MapValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_MapValue.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *MapValue) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_MapValue.Merge(dst, src)
|
||||
}
|
||||
func (m *MapValue) XXX_Size() int {
|
||||
return xxx_messageInfo_MapValue.Size(m)
|
||||
}
|
||||
func (m *MapValue) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_MapValue.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_MapValue proto.InternalMessageInfo
|
||||
|
||||
func (m *MapValue) GetFields() map[string]*Value {
|
||||
if m != nil {
|
||||
return m.Fields
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*Document)(nil), "google.firestore.v1.Document")
|
||||
proto.RegisterMapType((map[string]*Value)(nil), "google.firestore.v1.Document.FieldsEntry")
|
||||
proto.RegisterType((*Value)(nil), "google.firestore.v1.Value")
|
||||
proto.RegisterType((*ArrayValue)(nil), "google.firestore.v1.ArrayValue")
|
||||
proto.RegisterType((*MapValue)(nil), "google.firestore.v1.MapValue")
|
||||
proto.RegisterMapType((map[string]*Value)(nil), "google.firestore.v1.MapValue.FieldsEntry")
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/v1/document.proto", fileDescriptor_document_29c6fb566b77c4b5)
|
||||
}
|
||||
|
||||
var fileDescriptor_document_29c6fb566b77c4b5 = []byte{
|
||||
// 649 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0xcf, 0x6e, 0xd3, 0x4c,
|
||||
0x14, 0xc5, 0xe3, 0x24, 0x8d, 0x92, 0xeb, 0xb4, 0xfd, 0x3e, 0x77, 0x41, 0x88, 0x40, 0x0d, 0x41,
|
||||
0x48, 0xe9, 0xc6, 0x26, 0x65, 0x83, 0x68, 0x91, 0x68, 0x4a, 0xdb, 0x2c, 0x0a, 0xaa, 0x0c, 0x74,
|
||||
0x81, 0x2a, 0x45, 0x93, 0x64, 0x62, 0x59, 0x8c, 0x67, 0xac, 0xf1, 0xb8, 0x52, 0x5e, 0x07, 0x21,
|
||||
0x21, 0xb1, 0xe4, 0x09, 0x58, 0xf3, 0x54, 0x68, 0xfe, 0xb6, 0x41, 0x51, 0xbb, 0x62, 0xe7, 0xb9,
|
||||
0xf7, 0x77, 0xce, 0x3d, 0x1e, 0xcf, 0x18, 0xfa, 0x09, 0x63, 0x09, 0xc1, 0xd1, 0x22, 0xe5, 0xb8,
|
||||
0x10, 0x8c, 0xe3, 0xe8, 0x7a, 0x18, 0xcd, 0xd9, 0xac, 0xcc, 0x30, 0x15, 0x61, 0xce, 0x99, 0x60,
|
||||
0xc1, 0x8e, 0x66, 0x42, 0xc7, 0x84, 0xd7, 0xc3, 0xee, 0x23, 0x23, 0x44, 0x79, 0x1a, 0x21, 0x4a,
|
||||
0x99, 0x40, 0x22, 0x65, 0xb4, 0xd0, 0x12, 0xd7, 0x55, 0xab, 0x69, 0xb9, 0x88, 0x0a, 0xc1, 0xcb,
|
||||
0x99, 0x31, 0xec, 0xee, 0xfe, 0xdd, 0x15, 0x69, 0x86, 0x0b, 0x81, 0xb2, 0xdc, 0x00, 0x1d, 0x03,
|
||||
0x88, 0x65, 0x8e, 0x23, 0x82, 0x04, 0xa1, 0x89, 0xee, 0xf4, 0x7f, 0x56, 0xa1, 0xf9, 0xd6, 0xc4,
|
||||
0x0b, 0x02, 0xa8, 0x53, 0x94, 0xe1, 0x8e, 0xd7, 0xf3, 0x06, 0xad, 0x58, 0x3d, 0x07, 0x47, 0xd0,
|
||||
0x58, 0xa4, 0x98, 0xcc, 0x8b, 0x4e, 0xb5, 0x57, 0x1b, 0xf8, 0xfb, 0x7b, 0xe1, 0x9a, 0xf4, 0xa1,
|
||||
0xb5, 0x08, 0x4f, 0x15, 0x7b, 0x42, 0x05, 0x5f, 0xc6, 0x46, 0x18, 0x1c, 0x80, 0x3f, 0xe3, 0x18,
|
||||
0x09, 0x3c, 0x91, 0xb9, 0x3a, 0xb5, 0x9e, 0x37, 0xf0, 0xf7, 0xbb, 0xd6, 0xc7, 0x86, 0x0e, 0x3f,
|
||||
0xda, 0xd0, 0x31, 0x68, 0x5c, 0x16, 0xa4, 0xb8, 0xcc, 0xe7, 0x4e, 0x5c, 0xbf, 0x5f, 0xac, 0x71,
|
||||
0x59, 0xe8, 0x7e, 0x02, 0xff, 0x56, 0xa0, 0xe0, 0x3f, 0xa8, 0x7d, 0xc1, 0x4b, 0xf3, 0x7a, 0xf2,
|
||||
0x31, 0x78, 0x0e, 0x1b, 0xd7, 0x88, 0x94, 0xb8, 0x53, 0x5d, 0xf5, 0x5d, 0x79, 0xb9, 0x4b, 0x49,
|
||||
0xc4, 0x1a, 0x7c, 0x55, 0x7d, 0xe9, 0xf5, 0x7f, 0xd5, 0x61, 0x43, 0x15, 0x83, 0x03, 0x00, 0x5a,
|
||||
0x12, 0x32, 0xd1, 0x26, 0x7e, 0xcf, 0x1b, 0x6c, 0xad, 0x09, 0xf7, 0xbe, 0x24, 0x44, 0xf1, 0xe3,
|
||||
0x4a, 0xdc, 0xa2, 0x76, 0x11, 0x3c, 0x83, 0xcd, 0x29, 0x63, 0x04, 0x23, 0x6a, 0xf4, 0x32, 0x58,
|
||||
0x73, 0x5c, 0x89, 0xdb, 0xa6, 0xec, 0xb0, 0x94, 0x0a, 0x9c, 0x60, 0x3e, 0xb9, 0xc9, 0x5a, 0x93,
|
||||
0x98, 0x29, 0x6b, 0xec, 0x29, 0xb4, 0xe7, 0xac, 0x9c, 0x12, 0x6c, 0x28, 0xb9, 0xcd, 0xde, 0xb8,
|
||||
0x12, 0xfb, 0xba, 0xaa, 0xa1, 0x13, 0xd8, 0x76, 0x67, 0xc3, 0x70, 0x70, 0xdf, 0x8e, 0x8e, 0x2b,
|
||||
0xf1, 0x96, 0x13, 0xb9, 0x59, 0x85, 0xe0, 0x29, 0x4d, 0x8c, 0xc7, 0xff, 0x72, 0x47, 0xe5, 0x2c,
|
||||
0x5d, 0xd5, 0xd0, 0x13, 0xf0, 0xa7, 0x4b, 0x81, 0x0b, 0xc3, 0x04, 0x3d, 0x6f, 0xd0, 0x1e, 0x57,
|
||||
0x62, 0x50, 0x45, 0x8d, 0xec, 0xc1, 0x36, 0xc7, 0x0b, 0xcc, 0x31, 0x9d, 0xd9, 0xd8, 0x1b, 0xc6,
|
||||
0x6a, 0xcb, 0x35, 0x34, 0xfa, 0x1a, 0xb6, 0x13, 0xcc, 0x26, 0x39, 0x4b, 0xa9, 0x30, 0x68, 0x53,
|
||||
0x25, 0xdf, 0xb1, 0xc9, 0xe5, 0xe1, 0x0e, 0xcf, 0x91, 0x38, 0xa7, 0xc9, 0xb8, 0x12, 0x6f, 0x26,
|
||||
0x98, 0x5d, 0x48, 0x58, 0xcb, 0x47, 0xe0, 0x23, 0xce, 0xd1, 0xd2, 0x48, 0x5b, 0x4a, 0xba, 0xbb,
|
||||
0xf6, 0x73, 0x1f, 0x49, 0xce, 0x7e, 0x2e, 0x40, 0x6e, 0x15, 0x1c, 0x42, 0x2b, 0x43, 0x76, 0xdb,
|
||||
0x1a, 0xca, 0xe1, 0xf1, 0x5a, 0x87, 0x77, 0x28, 0xb7, 0xfa, 0x66, 0x66, 0x9e, 0x47, 0x6d, 0x00,
|
||||
0xa5, 0x9c, 0xc8, 0x9c, 0xfd, 0x37, 0x00, 0x37, 0x73, 0x82, 0x7d, 0x68, 0xa8, 0x5e, 0xd1, 0xf1,
|
||||
0xd4, 0x25, 0xbb, 0xeb, 0x1c, 0x1a, 0xb2, 0xff, 0xcd, 0x83, 0xa6, 0x1d, 0x74, 0xeb, 0x96, 0x7a,
|
||||
0x77, 0xdc, 0x52, 0x8b, 0xaf, 0xbb, 0xa5, 0xff, 0xe8, 0xae, 0x8c, 0xbe, 0x7b, 0xf0, 0x60, 0xc6,
|
||||
0xb2, 0x75, 0xf0, 0x68, 0xd3, 0xfe, 0x36, 0x2e, 0xe4, 0xa1, 0xbb, 0xf0, 0x3e, 0x1f, 0x1a, 0x2a,
|
||||
0x61, 0x04, 0xd1, 0x24, 0x64, 0x3c, 0x89, 0x12, 0x4c, 0xd5, 0x91, 0x8c, 0x74, 0x0b, 0xe5, 0x69,
|
||||
0xb1, 0xf2, 0x73, 0x3d, 0x70, 0x8b, 0xaf, 0xd5, 0xfa, 0xd9, 0xf1, 0xe9, 0x87, 0x1f, 0xd5, 0x87,
|
||||
0x67, 0xda, 0xe5, 0x98, 0xb0, 0x72, 0x1e, 0x9e, 0xba, 0x89, 0x97, 0xc3, 0xdf, 0xb6, 0x77, 0xa5,
|
||||
0x7a, 0x57, 0xae, 0x77, 0x75, 0x39, 0x9c, 0x36, 0xd4, 0x9c, 0x17, 0x7f, 0x02, 0x00, 0x00, 0xff,
|
||||
0xff, 0x36, 0xf3, 0xbc, 0x13, 0xc3, 0x05, 0x00, 0x00,
|
||||
}
|
3721
vendor/google.golang.org/genproto/googleapis/firestore/v1/firestore.pb.go
generated
vendored
Normal file
3721
vendor/google.golang.org/genproto/googleapis/firestore/v1/firestore.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1016
vendor/google.golang.org/genproto/googleapis/firestore/v1/query.pb.go
generated
vendored
Normal file
1016
vendor/google.golang.org/genproto/googleapis/firestore/v1/query.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
973
vendor/google.golang.org/genproto/googleapis/firestore/v1/write.pb.go
generated
vendored
Normal file
973
vendor/google.golang.org/genproto/googleapis/firestore/v1/write.pb.go
generated
vendored
Normal file
@ -0,0 +1,973 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/firestore/v1/write.proto
|
||||
|
||||
package firestore // import "google.golang.org/genproto/googleapis/firestore/v1"
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
|
||||
// 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 value that is calculated by the server.
|
||||
type DocumentTransform_FieldTransform_ServerValue int32
|
||||
|
||||
const (
|
||||
// Unspecified. This value must not be used.
|
||||
DocumentTransform_FieldTransform_SERVER_VALUE_UNSPECIFIED DocumentTransform_FieldTransform_ServerValue = 0
|
||||
// The time at which the server processed the request, with millisecond
|
||||
// precision.
|
||||
DocumentTransform_FieldTransform_REQUEST_TIME DocumentTransform_FieldTransform_ServerValue = 1
|
||||
)
|
||||
|
||||
var DocumentTransform_FieldTransform_ServerValue_name = map[int32]string{
|
||||
0: "SERVER_VALUE_UNSPECIFIED",
|
||||
1: "REQUEST_TIME",
|
||||
}
|
||||
var DocumentTransform_FieldTransform_ServerValue_value = map[string]int32{
|
||||
"SERVER_VALUE_UNSPECIFIED": 0,
|
||||
"REQUEST_TIME": 1,
|
||||
}
|
||||
|
||||
func (x DocumentTransform_FieldTransform_ServerValue) String() string {
|
||||
return proto.EnumName(DocumentTransform_FieldTransform_ServerValue_name, int32(x))
|
||||
}
|
||||
func (DocumentTransform_FieldTransform_ServerValue) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_ea987fb0680fd003, []int{1, 0, 0}
|
||||
}
|
||||
|
||||
// A write on a document.
|
||||
type Write struct {
|
||||
// The operation to execute.
|
||||
//
|
||||
// Types that are valid to be assigned to Operation:
|
||||
// *Write_Update
|
||||
// *Write_Delete
|
||||
// *Write_Transform
|
||||
Operation isWrite_Operation `protobuf_oneof:"operation"`
|
||||
// The fields to update in this write.
|
||||
//
|
||||
// This field can be set only when the operation is `update`.
|
||||
// If the mask is not set for an `update` and the document exists, any
|
||||
// existing data will be overwritten.
|
||||
// If the mask is set and the document on the server has fields not covered by
|
||||
// the mask, they are left unchanged.
|
||||
// Fields referenced in the mask, but not present in the input document, are
|
||||
// deleted from the document on the server.
|
||||
// The field paths in this mask must not contain a reserved field name.
|
||||
UpdateMask *DocumentMask `protobuf:"bytes,3,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
|
||||
// An optional precondition on the document.
|
||||
//
|
||||
// The write will fail if this is set and not met by the target document.
|
||||
CurrentDocument *Precondition `protobuf:"bytes,4,opt,name=current_document,json=currentDocument,proto3" json:"current_document,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Write) Reset() { *m = Write{} }
|
||||
func (m *Write) String() string { return proto.CompactTextString(m) }
|
||||
func (*Write) ProtoMessage() {}
|
||||
func (*Write) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_ea987fb0680fd003, []int{0}
|
||||
}
|
||||
func (m *Write) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Write.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Write) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Write.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *Write) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Write.Merge(dst, src)
|
||||
}
|
||||
func (m *Write) XXX_Size() int {
|
||||
return xxx_messageInfo_Write.Size(m)
|
||||
}
|
||||
func (m *Write) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Write.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Write proto.InternalMessageInfo
|
||||
|
||||
type isWrite_Operation interface {
|
||||
isWrite_Operation()
|
||||
}
|
||||
|
||||
type Write_Update struct {
|
||||
Update *Document `protobuf:"bytes,1,opt,name=update,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Write_Delete struct {
|
||||
Delete string `protobuf:"bytes,2,opt,name=delete,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Write_Transform struct {
|
||||
Transform *DocumentTransform `protobuf:"bytes,6,opt,name=transform,proto3,oneof"`
|
||||
}
|
||||
|
||||
func (*Write_Update) isWrite_Operation() {}
|
||||
|
||||
func (*Write_Delete) isWrite_Operation() {}
|
||||
|
||||
func (*Write_Transform) isWrite_Operation() {}
|
||||
|
||||
func (m *Write) GetOperation() isWrite_Operation {
|
||||
if m != nil {
|
||||
return m.Operation
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Write) GetUpdate() *Document {
|
||||
if x, ok := m.GetOperation().(*Write_Update); ok {
|
||||
return x.Update
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Write) GetDelete() string {
|
||||
if x, ok := m.GetOperation().(*Write_Delete); ok {
|
||||
return x.Delete
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Write) GetTransform() *DocumentTransform {
|
||||
if x, ok := m.GetOperation().(*Write_Transform); ok {
|
||||
return x.Transform
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Write) GetUpdateMask() *DocumentMask {
|
||||
if m != nil {
|
||||
return m.UpdateMask
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Write) GetCurrentDocument() *Precondition {
|
||||
if m != nil {
|
||||
return m.CurrentDocument
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// XXX_OneofFuncs is for the internal use of the proto package.
|
||||
func (*Write) 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 _Write_OneofMarshaler, _Write_OneofUnmarshaler, _Write_OneofSizer, []interface{}{
|
||||
(*Write_Update)(nil),
|
||||
(*Write_Delete)(nil),
|
||||
(*Write_Transform)(nil),
|
||||
}
|
||||
}
|
||||
|
||||
func _Write_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
||||
m := msg.(*Write)
|
||||
// operation
|
||||
switch x := m.Operation.(type) {
|
||||
case *Write_Update:
|
||||
b.EncodeVarint(1<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.Update); err != nil {
|
||||
return err
|
||||
}
|
||||
case *Write_Delete:
|
||||
b.EncodeVarint(2<<3 | proto.WireBytes)
|
||||
b.EncodeStringBytes(x.Delete)
|
||||
case *Write_Transform:
|
||||
b.EncodeVarint(6<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.Transform); err != nil {
|
||||
return err
|
||||
}
|
||||
case nil:
|
||||
default:
|
||||
return fmt.Errorf("Write.Operation has unexpected type %T", x)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func _Write_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
||||
m := msg.(*Write)
|
||||
switch tag {
|
||||
case 1: // operation.update
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Document)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.Operation = &Write_Update{msg}
|
||||
return true, err
|
||||
case 2: // operation.delete
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeStringBytes()
|
||||
m.Operation = &Write_Delete{x}
|
||||
return true, err
|
||||
case 6: // operation.transform
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(DocumentTransform)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.Operation = &Write_Transform{msg}
|
||||
return true, err
|
||||
default:
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
|
||||
func _Write_OneofSizer(msg proto.Message) (n int) {
|
||||
m := msg.(*Write)
|
||||
// operation
|
||||
switch x := m.Operation.(type) {
|
||||
case *Write_Update:
|
||||
s := proto.Size(x.Update)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *Write_Delete:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(len(x.Delete)))
|
||||
n += len(x.Delete)
|
||||
case *Write_Transform:
|
||||
s := proto.Size(x.Transform)
|
||||
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 transformation of a document.
|
||||
type DocumentTransform struct {
|
||||
// The name of the document to transform.
|
||||
Document string `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
|
||||
// The list of transformations to apply to the fields of the document, in
|
||||
// order.
|
||||
// This must not be empty.
|
||||
FieldTransforms []*DocumentTransform_FieldTransform `protobuf:"bytes,2,rep,name=field_transforms,json=fieldTransforms,proto3" json:"field_transforms,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DocumentTransform) Reset() { *m = DocumentTransform{} }
|
||||
func (m *DocumentTransform) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentTransform) ProtoMessage() {}
|
||||
func (*DocumentTransform) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_ea987fb0680fd003, []int{1}
|
||||
}
|
||||
func (m *DocumentTransform) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentTransform.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DocumentTransform) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DocumentTransform.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *DocumentTransform) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DocumentTransform.Merge(dst, src)
|
||||
}
|
||||
func (m *DocumentTransform) XXX_Size() int {
|
||||
return xxx_messageInfo_DocumentTransform.Size(m)
|
||||
}
|
||||
func (m *DocumentTransform) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DocumentTransform.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DocumentTransform proto.InternalMessageInfo
|
||||
|
||||
func (m *DocumentTransform) GetDocument() string {
|
||||
if m != nil {
|
||||
return m.Document
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *DocumentTransform) GetFieldTransforms() []*DocumentTransform_FieldTransform {
|
||||
if m != nil {
|
||||
return m.FieldTransforms
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A transformation of a field of the document.
|
||||
type DocumentTransform_FieldTransform struct {
|
||||
// The path of the field. See [Document.fields][google.firestore.v1.Document.fields] for the field path syntax
|
||||
// reference.
|
||||
FieldPath string `protobuf:"bytes,1,opt,name=field_path,json=fieldPath,proto3" json:"field_path,omitempty"`
|
||||
// The transformation to apply on the field.
|
||||
//
|
||||
// Types that are valid to be assigned to TransformType:
|
||||
// *DocumentTransform_FieldTransform_SetToServerValue
|
||||
// *DocumentTransform_FieldTransform_Increment
|
||||
// *DocumentTransform_FieldTransform_Maximum
|
||||
// *DocumentTransform_FieldTransform_Minimum
|
||||
// *DocumentTransform_FieldTransform_AppendMissingElements
|
||||
// *DocumentTransform_FieldTransform_RemoveAllFromArray
|
||||
TransformType isDocumentTransform_FieldTransform_TransformType `protobuf_oneof:"transform_type"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) Reset() { *m = DocumentTransform_FieldTransform{} }
|
||||
func (m *DocumentTransform_FieldTransform) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentTransform_FieldTransform) ProtoMessage() {}
|
||||
func (*DocumentTransform_FieldTransform) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_ea987fb0680fd003, []int{1, 0}
|
||||
}
|
||||
func (m *DocumentTransform_FieldTransform) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentTransform_FieldTransform.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DocumentTransform_FieldTransform) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DocumentTransform_FieldTransform.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *DocumentTransform_FieldTransform) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DocumentTransform_FieldTransform.Merge(dst, src)
|
||||
}
|
||||
func (m *DocumentTransform_FieldTransform) XXX_Size() int {
|
||||
return xxx_messageInfo_DocumentTransform_FieldTransform.Size(m)
|
||||
}
|
||||
func (m *DocumentTransform_FieldTransform) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DocumentTransform_FieldTransform.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DocumentTransform_FieldTransform proto.InternalMessageInfo
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetFieldPath() string {
|
||||
if m != nil {
|
||||
return m.FieldPath
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type isDocumentTransform_FieldTransform_TransformType interface {
|
||||
isDocumentTransform_FieldTransform_TransformType()
|
||||
}
|
||||
|
||||
type DocumentTransform_FieldTransform_SetToServerValue struct {
|
||||
SetToServerValue DocumentTransform_FieldTransform_ServerValue `protobuf:"varint,2,opt,name=set_to_server_value,json=setToServerValue,proto3,enum=google.firestore.v1.DocumentTransform_FieldTransform_ServerValue,oneof"`
|
||||
}
|
||||
|
||||
type DocumentTransform_FieldTransform_Increment struct {
|
||||
Increment *Value `protobuf:"bytes,3,opt,name=increment,proto3,oneof"`
|
||||
}
|
||||
|
||||
type DocumentTransform_FieldTransform_Maximum struct {
|
||||
Maximum *Value `protobuf:"bytes,4,opt,name=maximum,proto3,oneof"`
|
||||
}
|
||||
|
||||
type DocumentTransform_FieldTransform_Minimum struct {
|
||||
Minimum *Value `protobuf:"bytes,5,opt,name=minimum,proto3,oneof"`
|
||||
}
|
||||
|
||||
type DocumentTransform_FieldTransform_AppendMissingElements struct {
|
||||
AppendMissingElements *ArrayValue `protobuf:"bytes,6,opt,name=append_missing_elements,json=appendMissingElements,proto3,oneof"`
|
||||
}
|
||||
|
||||
type DocumentTransform_FieldTransform_RemoveAllFromArray struct {
|
||||
RemoveAllFromArray *ArrayValue `protobuf:"bytes,7,opt,name=remove_all_from_array,json=removeAllFromArray,proto3,oneof"`
|
||||
}
|
||||
|
||||
func (*DocumentTransform_FieldTransform_SetToServerValue) isDocumentTransform_FieldTransform_TransformType() {
|
||||
}
|
||||
|
||||
func (*DocumentTransform_FieldTransform_Increment) isDocumentTransform_FieldTransform_TransformType() {
|
||||
}
|
||||
|
||||
func (*DocumentTransform_FieldTransform_Maximum) isDocumentTransform_FieldTransform_TransformType() {}
|
||||
|
||||
func (*DocumentTransform_FieldTransform_Minimum) isDocumentTransform_FieldTransform_TransformType() {}
|
||||
|
||||
func (*DocumentTransform_FieldTransform_AppendMissingElements) isDocumentTransform_FieldTransform_TransformType() {
|
||||
}
|
||||
|
||||
func (*DocumentTransform_FieldTransform_RemoveAllFromArray) isDocumentTransform_FieldTransform_TransformType() {
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetTransformType() isDocumentTransform_FieldTransform_TransformType {
|
||||
if m != nil {
|
||||
return m.TransformType
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetSetToServerValue() DocumentTransform_FieldTransform_ServerValue {
|
||||
if x, ok := m.GetTransformType().(*DocumentTransform_FieldTransform_SetToServerValue); ok {
|
||||
return x.SetToServerValue
|
||||
}
|
||||
return DocumentTransform_FieldTransform_SERVER_VALUE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetIncrement() *Value {
|
||||
if x, ok := m.GetTransformType().(*DocumentTransform_FieldTransform_Increment); ok {
|
||||
return x.Increment
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetMaximum() *Value {
|
||||
if x, ok := m.GetTransformType().(*DocumentTransform_FieldTransform_Maximum); ok {
|
||||
return x.Maximum
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetMinimum() *Value {
|
||||
if x, ok := m.GetTransformType().(*DocumentTransform_FieldTransform_Minimum); ok {
|
||||
return x.Minimum
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetAppendMissingElements() *ArrayValue {
|
||||
if x, ok := m.GetTransformType().(*DocumentTransform_FieldTransform_AppendMissingElements); ok {
|
||||
return x.AppendMissingElements
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetRemoveAllFromArray() *ArrayValue {
|
||||
if x, ok := m.GetTransformType().(*DocumentTransform_FieldTransform_RemoveAllFromArray); ok {
|
||||
return x.RemoveAllFromArray
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// XXX_OneofFuncs is for the internal use of the proto package.
|
||||
func (*DocumentTransform_FieldTransform) 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 _DocumentTransform_FieldTransform_OneofMarshaler, _DocumentTransform_FieldTransform_OneofUnmarshaler, _DocumentTransform_FieldTransform_OneofSizer, []interface{}{
|
||||
(*DocumentTransform_FieldTransform_SetToServerValue)(nil),
|
||||
(*DocumentTransform_FieldTransform_Increment)(nil),
|
||||
(*DocumentTransform_FieldTransform_Maximum)(nil),
|
||||
(*DocumentTransform_FieldTransform_Minimum)(nil),
|
||||
(*DocumentTransform_FieldTransform_AppendMissingElements)(nil),
|
||||
(*DocumentTransform_FieldTransform_RemoveAllFromArray)(nil),
|
||||
}
|
||||
}
|
||||
|
||||
func _DocumentTransform_FieldTransform_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
||||
m := msg.(*DocumentTransform_FieldTransform)
|
||||
// transform_type
|
||||
switch x := m.TransformType.(type) {
|
||||
case *DocumentTransform_FieldTransform_SetToServerValue:
|
||||
b.EncodeVarint(2<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(uint64(x.SetToServerValue))
|
||||
case *DocumentTransform_FieldTransform_Increment:
|
||||
b.EncodeVarint(3<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.Increment); err != nil {
|
||||
return err
|
||||
}
|
||||
case *DocumentTransform_FieldTransform_Maximum:
|
||||
b.EncodeVarint(4<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.Maximum); err != nil {
|
||||
return err
|
||||
}
|
||||
case *DocumentTransform_FieldTransform_Minimum:
|
||||
b.EncodeVarint(5<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.Minimum); err != nil {
|
||||
return err
|
||||
}
|
||||
case *DocumentTransform_FieldTransform_AppendMissingElements:
|
||||
b.EncodeVarint(6<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.AppendMissingElements); err != nil {
|
||||
return err
|
||||
}
|
||||
case *DocumentTransform_FieldTransform_RemoveAllFromArray:
|
||||
b.EncodeVarint(7<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.RemoveAllFromArray); err != nil {
|
||||
return err
|
||||
}
|
||||
case nil:
|
||||
default:
|
||||
return fmt.Errorf("DocumentTransform_FieldTransform.TransformType has unexpected type %T", x)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func _DocumentTransform_FieldTransform_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
||||
m := msg.(*DocumentTransform_FieldTransform)
|
||||
switch tag {
|
||||
case 2: // transform_type.set_to_server_value
|
||||
if wire != proto.WireVarint {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
x, err := b.DecodeVarint()
|
||||
m.TransformType = &DocumentTransform_FieldTransform_SetToServerValue{DocumentTransform_FieldTransform_ServerValue(x)}
|
||||
return true, err
|
||||
case 3: // transform_type.increment
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Value)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.TransformType = &DocumentTransform_FieldTransform_Increment{msg}
|
||||
return true, err
|
||||
case 4: // transform_type.maximum
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Value)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.TransformType = &DocumentTransform_FieldTransform_Maximum{msg}
|
||||
return true, err
|
||||
case 5: // transform_type.minimum
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Value)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.TransformType = &DocumentTransform_FieldTransform_Minimum{msg}
|
||||
return true, err
|
||||
case 6: // transform_type.append_missing_elements
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(ArrayValue)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.TransformType = &DocumentTransform_FieldTransform_AppendMissingElements{msg}
|
||||
return true, err
|
||||
case 7: // transform_type.remove_all_from_array
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(ArrayValue)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.TransformType = &DocumentTransform_FieldTransform_RemoveAllFromArray{msg}
|
||||
return true, err
|
||||
default:
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
|
||||
func _DocumentTransform_FieldTransform_OneofSizer(msg proto.Message) (n int) {
|
||||
m := msg.(*DocumentTransform_FieldTransform)
|
||||
// transform_type
|
||||
switch x := m.TransformType.(type) {
|
||||
case *DocumentTransform_FieldTransform_SetToServerValue:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(x.SetToServerValue))
|
||||
case *DocumentTransform_FieldTransform_Increment:
|
||||
s := proto.Size(x.Increment)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *DocumentTransform_FieldTransform_Maximum:
|
||||
s := proto.Size(x.Maximum)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *DocumentTransform_FieldTransform_Minimum:
|
||||
s := proto.Size(x.Minimum)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *DocumentTransform_FieldTransform_AppendMissingElements:
|
||||
s := proto.Size(x.AppendMissingElements)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *DocumentTransform_FieldTransform_RemoveAllFromArray:
|
||||
s := proto.Size(x.RemoveAllFromArray)
|
||||
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
|
||||
}
|
||||
|
||||
// The result of applying a write.
|
||||
type WriteResult struct {
|
||||
// The last update time of the document after applying the write. Not set
|
||||
// after a `delete`.
|
||||
//
|
||||
// If the write did not actually change the document, this will be the
|
||||
// previous update_time.
|
||||
UpdateTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
|
||||
// The results of applying each [DocumentTransform.FieldTransform][google.firestore.v1.DocumentTransform.FieldTransform], in the
|
||||
// same order.
|
||||
TransformResults []*Value `protobuf:"bytes,2,rep,name=transform_results,json=transformResults,proto3" json:"transform_results,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *WriteResult) Reset() { *m = WriteResult{} }
|
||||
func (m *WriteResult) String() string { return proto.CompactTextString(m) }
|
||||
func (*WriteResult) ProtoMessage() {}
|
||||
func (*WriteResult) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_ea987fb0680fd003, []int{2}
|
||||
}
|
||||
func (m *WriteResult) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_WriteResult.Unmarshal(m, b)
|
||||
}
|
||||
func (m *WriteResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_WriteResult.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *WriteResult) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_WriteResult.Merge(dst, src)
|
||||
}
|
||||
func (m *WriteResult) XXX_Size() int {
|
||||
return xxx_messageInfo_WriteResult.Size(m)
|
||||
}
|
||||
func (m *WriteResult) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_WriteResult.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_WriteResult proto.InternalMessageInfo
|
||||
|
||||
func (m *WriteResult) GetUpdateTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.UpdateTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *WriteResult) GetTransformResults() []*Value {
|
||||
if m != nil {
|
||||
return m.TransformResults
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A [Document][google.firestore.v1.Document] has changed.
|
||||
//
|
||||
// May be the result of multiple [writes][google.firestore.v1.Write], including deletes, that
|
||||
// ultimately resulted in a new value for the [Document][google.firestore.v1.Document].
|
||||
//
|
||||
// Multiple [DocumentChange][google.firestore.v1.DocumentChange] messages may be returned for the same logical
|
||||
// change, if multiple targets are affected.
|
||||
type DocumentChange struct {
|
||||
// The new state of the [Document][google.firestore.v1.Document].
|
||||
//
|
||||
// If `mask` is set, contains only fields that were updated or added.
|
||||
Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
|
||||
// A set of target IDs of targets that match this document.
|
||||
TargetIds []int32 `protobuf:"varint,5,rep,packed,name=target_ids,json=targetIds,proto3" json:"target_ids,omitempty"`
|
||||
// A set of target IDs for targets that no longer match this document.
|
||||
RemovedTargetIds []int32 `protobuf:"varint,6,rep,packed,name=removed_target_ids,json=removedTargetIds,proto3" json:"removed_target_ids,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DocumentChange) Reset() { *m = DocumentChange{} }
|
||||
func (m *DocumentChange) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentChange) ProtoMessage() {}
|
||||
func (*DocumentChange) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_ea987fb0680fd003, []int{3}
|
||||
}
|
||||
func (m *DocumentChange) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentChange.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DocumentChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DocumentChange.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *DocumentChange) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DocumentChange.Merge(dst, src)
|
||||
}
|
||||
func (m *DocumentChange) XXX_Size() int {
|
||||
return xxx_messageInfo_DocumentChange.Size(m)
|
||||
}
|
||||
func (m *DocumentChange) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DocumentChange.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DocumentChange proto.InternalMessageInfo
|
||||
|
||||
func (m *DocumentChange) GetDocument() *Document {
|
||||
if m != nil {
|
||||
return m.Document
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentChange) GetTargetIds() []int32 {
|
||||
if m != nil {
|
||||
return m.TargetIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentChange) GetRemovedTargetIds() []int32 {
|
||||
if m != nil {
|
||||
return m.RemovedTargetIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A [Document][google.firestore.v1.Document] has been deleted.
|
||||
//
|
||||
// May be the result of multiple [writes][google.firestore.v1.Write], including updates, the
|
||||
// last of which deleted the [Document][google.firestore.v1.Document].
|
||||
//
|
||||
// Multiple [DocumentDelete][google.firestore.v1.DocumentDelete] messages may be returned for the same logical
|
||||
// delete, if multiple targets are affected.
|
||||
type DocumentDelete struct {
|
||||
// The resource name of the [Document][google.firestore.v1.Document] that was deleted.
|
||||
Document string `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
|
||||
// A set of target IDs for targets that previously matched this entity.
|
||||
RemovedTargetIds []int32 `protobuf:"varint,6,rep,packed,name=removed_target_ids,json=removedTargetIds,proto3" json:"removed_target_ids,omitempty"`
|
||||
// The read timestamp at which the delete was observed.
|
||||
//
|
||||
// Greater or equal to the `commit_time` of the delete.
|
||||
ReadTime *timestamp.Timestamp `protobuf:"bytes,4,opt,name=read_time,json=readTime,proto3" json:"read_time,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DocumentDelete) Reset() { *m = DocumentDelete{} }
|
||||
func (m *DocumentDelete) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentDelete) ProtoMessage() {}
|
||||
func (*DocumentDelete) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_ea987fb0680fd003, []int{4}
|
||||
}
|
||||
func (m *DocumentDelete) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentDelete.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DocumentDelete) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DocumentDelete.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *DocumentDelete) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DocumentDelete.Merge(dst, src)
|
||||
}
|
||||
func (m *DocumentDelete) XXX_Size() int {
|
||||
return xxx_messageInfo_DocumentDelete.Size(m)
|
||||
}
|
||||
func (m *DocumentDelete) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DocumentDelete.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DocumentDelete proto.InternalMessageInfo
|
||||
|
||||
func (m *DocumentDelete) GetDocument() string {
|
||||
if m != nil {
|
||||
return m.Document
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *DocumentDelete) GetRemovedTargetIds() []int32 {
|
||||
if m != nil {
|
||||
return m.RemovedTargetIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentDelete) GetReadTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.ReadTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A [Document][google.firestore.v1.Document] has been removed from the view of the targets.
|
||||
//
|
||||
// Sent if the document is no longer relevant to a target and is out of view.
|
||||
// Can be sent instead of a DocumentDelete or a DocumentChange if the server
|
||||
// can not send the new value of the document.
|
||||
//
|
||||
// Multiple [DocumentRemove][google.firestore.v1.DocumentRemove] messages may be returned for the same logical
|
||||
// write or delete, if multiple targets are affected.
|
||||
type DocumentRemove struct {
|
||||
// The resource name of the [Document][google.firestore.v1.Document] that has gone out of view.
|
||||
Document string `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
|
||||
// A set of target IDs for targets that previously matched this document.
|
||||
RemovedTargetIds []int32 `protobuf:"varint,2,rep,packed,name=removed_target_ids,json=removedTargetIds,proto3" json:"removed_target_ids,omitempty"`
|
||||
// The read timestamp at which the remove was observed.
|
||||
//
|
||||
// Greater or equal to the `commit_time` of the change/delete/remove.
|
||||
ReadTime *timestamp.Timestamp `protobuf:"bytes,4,opt,name=read_time,json=readTime,proto3" json:"read_time,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DocumentRemove) Reset() { *m = DocumentRemove{} }
|
||||
func (m *DocumentRemove) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentRemove) ProtoMessage() {}
|
||||
func (*DocumentRemove) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_ea987fb0680fd003, []int{5}
|
||||
}
|
||||
func (m *DocumentRemove) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentRemove.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DocumentRemove) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DocumentRemove.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *DocumentRemove) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DocumentRemove.Merge(dst, src)
|
||||
}
|
||||
func (m *DocumentRemove) XXX_Size() int {
|
||||
return xxx_messageInfo_DocumentRemove.Size(m)
|
||||
}
|
||||
func (m *DocumentRemove) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DocumentRemove.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DocumentRemove proto.InternalMessageInfo
|
||||
|
||||
func (m *DocumentRemove) GetDocument() string {
|
||||
if m != nil {
|
||||
return m.Document
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *DocumentRemove) GetRemovedTargetIds() []int32 {
|
||||
if m != nil {
|
||||
return m.RemovedTargetIds
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentRemove) GetReadTime() *timestamp.Timestamp {
|
||||
if m != nil {
|
||||
return m.ReadTime
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// A digest of all the documents that match a given target.
|
||||
type ExistenceFilter struct {
|
||||
// The target ID to which this filter applies.
|
||||
TargetId int32 `protobuf:"varint,1,opt,name=target_id,json=targetId,proto3" json:"target_id,omitempty"`
|
||||
// The total count of documents that match [target_id][google.firestore.v1.ExistenceFilter.target_id].
|
||||
//
|
||||
// If different from the count of documents in the client that match, the
|
||||
// client must manually determine which documents no longer match the target.
|
||||
Count int32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ExistenceFilter) Reset() { *m = ExistenceFilter{} }
|
||||
func (m *ExistenceFilter) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExistenceFilter) ProtoMessage() {}
|
||||
func (*ExistenceFilter) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_ea987fb0680fd003, []int{6}
|
||||
}
|
||||
func (m *ExistenceFilter) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExistenceFilter.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ExistenceFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ExistenceFilter.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (dst *ExistenceFilter) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ExistenceFilter.Merge(dst, src)
|
||||
}
|
||||
func (m *ExistenceFilter) XXX_Size() int {
|
||||
return xxx_messageInfo_ExistenceFilter.Size(m)
|
||||
}
|
||||
func (m *ExistenceFilter) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ExistenceFilter.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ExistenceFilter proto.InternalMessageInfo
|
||||
|
||||
func (m *ExistenceFilter) GetTargetId() int32 {
|
||||
if m != nil {
|
||||
return m.TargetId
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *ExistenceFilter) GetCount() int32 {
|
||||
if m != nil {
|
||||
return m.Count
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*Write)(nil), "google.firestore.v1.Write")
|
||||
proto.RegisterType((*DocumentTransform)(nil), "google.firestore.v1.DocumentTransform")
|
||||
proto.RegisterType((*DocumentTransform_FieldTransform)(nil), "google.firestore.v1.DocumentTransform.FieldTransform")
|
||||
proto.RegisterType((*WriteResult)(nil), "google.firestore.v1.WriteResult")
|
||||
proto.RegisterType((*DocumentChange)(nil), "google.firestore.v1.DocumentChange")
|
||||
proto.RegisterType((*DocumentDelete)(nil), "google.firestore.v1.DocumentDelete")
|
||||
proto.RegisterType((*DocumentRemove)(nil), "google.firestore.v1.DocumentRemove")
|
||||
proto.RegisterType((*ExistenceFilter)(nil), "google.firestore.v1.ExistenceFilter")
|
||||
proto.RegisterEnum("google.firestore.v1.DocumentTransform_FieldTransform_ServerValue", DocumentTransform_FieldTransform_ServerValue_name, DocumentTransform_FieldTransform_ServerValue_value)
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/v1/write.proto", fileDescriptor_write_ea987fb0680fd003)
|
||||
}
|
||||
|
||||
var fileDescriptor_write_ea987fb0680fd003 = []byte{
|
||||
// 853 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x41, 0x6f, 0xe3, 0x44,
|
||||
0x14, 0x6e, 0xd2, 0x26, 0x5b, 0xbf, 0xa0, 0xd6, 0x3b, 0xcb, 0x6a, 0x4d, 0xd8, 0x6a, 0x43, 0x0e,
|
||||
0xa8, 0x07, 0xe4, 0xa8, 0x45, 0xb0, 0x82, 0x85, 0x43, 0xd3, 0x3a, 0x6d, 0xa5, 0x2d, 0x0a, 0x4e,
|
||||
0x1a, 0x04, 0xaa, 0x34, 0xcc, 0xda, 0x13, 0xd7, 0x5a, 0x7b, 0xc6, 0x9a, 0x19, 0x87, 0xdd, 0xdf,
|
||||
0xc1, 0x85, 0x33, 0xe2, 0xc4, 0xbf, 0xe0, 0xca, 0x8d, 0x1f, 0xc1, 0xff, 0x40, 0x9e, 0xb1, 0xdd,
|
||||
0x06, 0xa2, 0x6c, 0x59, 0xed, 0x2d, 0x6f, 0xde, 0xf7, 0x7d, 0xef, 0xf3, 0x7b, 0x33, 0x2f, 0xf0,
|
||||
0x24, 0xe2, 0x3c, 0x4a, 0xe8, 0x60, 0x1e, 0x0b, 0x2a, 0x15, 0x17, 0x74, 0xb0, 0x38, 0x18, 0xfc,
|
||||
0x24, 0x62, 0x45, 0xdd, 0x4c, 0x70, 0xc5, 0xd1, 0x03, 0x03, 0x70, 0x6b, 0x80, 0xbb, 0x38, 0xe8,
|
||||
0x3e, 0x2e, 0x59, 0x24, 0x8b, 0x07, 0x84, 0x31, 0xae, 0x88, 0x8a, 0x39, 0x93, 0x86, 0xd2, 0xed,
|
||||
0xad, 0xd2, 0x0c, 0x78, 0x9a, 0x72, 0x56, 0x22, 0xfa, 0xab, 0x10, 0x21, 0x0f, 0xf2, 0x94, 0x32,
|
||||
0x55, 0x62, 0x2a, 0x67, 0x3a, 0x7a, 0x91, 0xcf, 0x07, 0x2a, 0x4e, 0xa9, 0x54, 0x24, 0xcd, 0x0c,
|
||||
0xa0, 0xff, 0x47, 0x13, 0x5a, 0xdf, 0x15, 0x4e, 0xd1, 0x53, 0x68, 0xe7, 0x59, 0x48, 0x14, 0x75,
|
||||
0x1a, 0xbd, 0xc6, 0x7e, 0xe7, 0x70, 0xcf, 0x5d, 0x61, 0xda, 0x3d, 0x29, 0xf5, 0xcf, 0x36, 0xfc,
|
||||
0x12, 0x8e, 0x1c, 0x68, 0x87, 0x34, 0xa1, 0x8a, 0x3a, 0xcd, 0x5e, 0x63, 0xdf, 0x2a, 0x32, 0x26,
|
||||
0x46, 0x23, 0xb0, 0x94, 0x20, 0x4c, 0xce, 0xb9, 0x48, 0x9d, 0xb6, 0x56, 0xfd, 0x78, 0xad, 0xea,
|
||||
0xb4, 0x42, 0x9f, 0x6d, 0xf8, 0x37, 0x54, 0x34, 0x84, 0x8e, 0xa9, 0x85, 0x53, 0x22, 0x5f, 0x3a,
|
||||
0x9b, 0x5a, 0xe9, 0xa3, 0xb5, 0x4a, 0x17, 0x44, 0xbe, 0xf4, 0xc1, 0xb0, 0x8a, 0xdf, 0xe8, 0x39,
|
||||
0xd8, 0x41, 0x2e, 0x04, 0x65, 0x0a, 0x57, 0x3d, 0x72, 0xb6, 0xd6, 0x08, 0x8d, 0x05, 0x0d, 0x38,
|
||||
0x0b, 0xe3, 0x62, 0x26, 0xfe, 0x6e, 0x49, 0xad, 0xd4, 0x87, 0x1d, 0xb0, 0x78, 0x46, 0x85, 0x9e,
|
||||
0x58, 0xff, 0xef, 0x16, 0xdc, 0xff, 0xcf, 0x17, 0xa0, 0x2e, 0x6c, 0xd7, 0x85, 0x8a, 0x8e, 0x5a,
|
||||
0x7e, 0x1d, 0xa3, 0x1f, 0xc1, 0x9e, 0xc7, 0x34, 0x09, 0x71, 0xfd, 0x8d, 0xd2, 0x69, 0xf6, 0x36,
|
||||
0xf7, 0x3b, 0x87, 0x9f, 0xdd, 0xad, 0x3f, 0xee, 0xa8, 0xa0, 0xd7, 0xa1, 0xbf, 0x3b, 0x5f, 0x8a,
|
||||
0x65, 0xf7, 0xaf, 0x2d, 0xd8, 0x59, 0xc6, 0xa0, 0x3d, 0x00, 0x53, 0x34, 0x23, 0xea, 0xba, 0xb4,
|
||||
0x64, 0xe9, 0x93, 0x31, 0x51, 0xd7, 0x48, 0xc0, 0x03, 0x49, 0x15, 0x56, 0x1c, 0x4b, 0x2a, 0x16,
|
||||
0x54, 0xe0, 0x05, 0x49, 0x72, 0x33, 0xd3, 0x9d, 0xc3, 0xa3, 0xb7, 0xb2, 0xe5, 0x4e, 0xb4, 0xd2,
|
||||
0xac, 0x10, 0x3a, 0xdb, 0xf0, 0x6d, 0x49, 0xd5, 0x94, 0xdf, 0x3a, 0x43, 0x5f, 0x82, 0x15, 0xb3,
|
||||
0x40, 0x50, 0xdd, 0x24, 0x33, 0xd6, 0xee, 0xca, 0x4a, 0x95, 0xc4, 0x0d, 0x1c, 0x7d, 0x0e, 0xf7,
|
||||
0x52, 0xf2, 0x2a, 0x4e, 0xf3, 0xb4, 0x9c, 0xe3, 0x7a, 0x66, 0x05, 0xd6, 0xbc, 0x98, 0x69, 0x5e,
|
||||
0xeb, 0x4e, 0x3c, 0x03, 0x46, 0xdf, 0xc3, 0x23, 0x92, 0x65, 0x94, 0x85, 0x38, 0x8d, 0xa5, 0x8c,
|
||||
0x59, 0x84, 0x69, 0xa2, 0x9d, 0xc8, 0xf2, 0x6a, 0x3f, 0x59, 0xa9, 0x73, 0x24, 0x04, 0x79, 0x5d,
|
||||
0x89, 0x3d, 0x34, 0x0a, 0x17, 0x46, 0xc0, 0x2b, 0xf9, 0x68, 0x0a, 0x0f, 0x05, 0x4d, 0xf9, 0x82,
|
||||
0x62, 0x92, 0x24, 0x78, 0x2e, 0x78, 0x8a, 0x49, 0x41, 0x73, 0xee, 0xdd, 0x55, 0x18, 0x19, 0xfe,
|
||||
0x51, 0x92, 0x8c, 0x04, 0x4f, 0x75, 0xaa, 0xff, 0x35, 0x74, 0x6e, 0xf7, 0xfa, 0x31, 0x38, 0x13,
|
||||
0xcf, 0x9f, 0x79, 0x3e, 0x9e, 0x1d, 0x3d, 0xbf, 0xf4, 0xf0, 0xe5, 0x37, 0x93, 0xb1, 0x77, 0x7c,
|
||||
0x3e, 0x3a, 0xf7, 0x4e, 0xec, 0x0d, 0x64, 0xc3, 0x7b, 0xbe, 0xf7, 0xed, 0xa5, 0x37, 0x99, 0xe2,
|
||||
0xe9, 0xf9, 0x85, 0x67, 0x37, 0x86, 0x36, 0xec, 0xd4, 0xb7, 0x13, 0xab, 0xd7, 0x19, 0xed, 0xff,
|
||||
0xdc, 0x80, 0x8e, 0xde, 0x15, 0x3e, 0x95, 0x79, 0xa2, 0xd0, 0xb3, 0xfa, 0x59, 0x16, 0x5b, 0xa5,
|
||||
0x5c, 0x1b, 0x75, 0x37, 0xab, 0x95, 0xe3, 0x4e, 0xab, 0x95, 0x53, 0xbd, 0xc7, 0xe2, 0x00, 0x9d,
|
||||
0xc2, 0xfd, 0x1b, 0x79, 0xa1, 0x05, 0xab, 0x37, 0xb0, 0x66, 0x20, 0xbe, 0x5d, 0x93, 0x8c, 0x09,
|
||||
0xd9, 0xff, 0xa5, 0x01, 0x3b, 0xd5, 0x45, 0x3c, 0xbe, 0x26, 0x2c, 0xa2, 0xe8, 0x8b, 0x7f, 0x3d,
|
||||
0xbd, 0x37, 0x2d, 0xb3, 0x5b, 0x2f, 0x73, 0x0f, 0x40, 0x11, 0x11, 0x51, 0x85, 0xe3, 0x50, 0x3a,
|
||||
0xad, 0xde, 0xe6, 0x7e, 0xcb, 0xb7, 0xcc, 0xc9, 0x79, 0x28, 0xd1, 0x27, 0x50, 0x76, 0x3a, 0xc4,
|
||||
0xb7, 0x60, 0x6d, 0x0d, 0xb3, 0xcb, 0xcc, 0xb4, 0x42, 0x17, 0x0d, 0xab, 0xad, 0x9d, 0x98, 0x95,
|
||||
0xb8, 0x6e, 0x2b, 0xfc, 0x2f, 0x71, 0xf4, 0x14, 0x2c, 0x41, 0x49, 0x68, 0x7a, 0xbf, 0xf5, 0xc6,
|
||||
0xde, 0x6f, 0x17, 0xe0, 0x22, 0x5c, 0x72, 0xe5, 0x6b, 0xd5, 0xb7, 0x70, 0xd5, 0x7c, 0xd7, 0xae,
|
||||
0x4e, 0x60, 0xd7, 0x7b, 0x15, 0x4b, 0x45, 0x59, 0x40, 0x47, 0x71, 0xa2, 0xa8, 0x40, 0x1f, 0x82,
|
||||
0x55, 0x57, 0xd4, 0xb6, 0x5a, 0xfe, 0x76, 0x35, 0x0a, 0xf4, 0x3e, 0xb4, 0x02, 0x9e, 0x33, 0xa5,
|
||||
0x17, 0x54, 0xcb, 0x37, 0xc1, 0xf0, 0xb7, 0x06, 0x3c, 0x0a, 0x78, 0xba, 0x6a, 0xda, 0x43, 0xd0,
|
||||
0x77, 0x77, 0x5c, 0x98, 0x18, 0x37, 0x7e, 0xf8, 0xaa, 0x84, 0x44, 0x3c, 0x21, 0x2c, 0x72, 0xb9,
|
||||
0x88, 0x06, 0x11, 0x65, 0xda, 0xe2, 0xc0, 0xa4, 0x48, 0x16, 0xcb, 0xa5, 0x3f, 0xd7, 0x67, 0x75,
|
||||
0xf0, 0x6b, 0x73, 0xeb, 0xf4, 0x78, 0x34, 0xf9, 0xbd, 0xf9, 0xc1, 0xa9, 0x51, 0x39, 0x4e, 0x78,
|
||||
0x1e, 0xba, 0xa3, 0xba, 0xdc, 0xec, 0xe0, 0xcf, 0x2a, 0x77, 0xa5, 0x73, 0x57, 0x75, 0xee, 0x6a,
|
||||
0x76, 0xf0, 0xa2, 0xad, 0xeb, 0x7c, 0xfa, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc0, 0x55, 0xcd,
|
||||
0x3b, 0x39, 0x08, 0x00, 0x00,
|
||||
}
|
14
vendor/google.golang.org/genproto/googleapis/firestore/v1beta1/common.pb.go
generated
vendored
14
vendor/google.golang.org/genproto/googleapis/firestore/v1beta1/common.pb.go
generated
vendored
@ -38,7 +38,7 @@ func (m *DocumentMask) Reset() { *m = DocumentMask{} }
|
||||
func (m *DocumentMask) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentMask) ProtoMessage() {}
|
||||
func (*DocumentMask) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_common_ed079c0d96917e99, []int{0}
|
||||
return fileDescriptor_common_37c55147eeb829a0, []int{0}
|
||||
}
|
||||
func (m *DocumentMask) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentMask.Unmarshal(m, b)
|
||||
@ -82,7 +82,7 @@ func (m *Precondition) Reset() { *m = Precondition{} }
|
||||
func (m *Precondition) String() string { return proto.CompactTextString(m) }
|
||||
func (*Precondition) ProtoMessage() {}
|
||||
func (*Precondition) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_common_ed079c0d96917e99, []int{1}
|
||||
return fileDescriptor_common_37c55147eeb829a0, []int{1}
|
||||
}
|
||||
func (m *Precondition) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Precondition.Unmarshal(m, b)
|
||||
@ -229,7 +229,7 @@ func (m *TransactionOptions) Reset() { *m = TransactionOptions{} }
|
||||
func (m *TransactionOptions) String() string { return proto.CompactTextString(m) }
|
||||
func (*TransactionOptions) ProtoMessage() {}
|
||||
func (*TransactionOptions) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_common_ed079c0d96917e99, []int{2}
|
||||
return fileDescriptor_common_37c55147eeb829a0, []int{2}
|
||||
}
|
||||
func (m *TransactionOptions) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_TransactionOptions.Unmarshal(m, b)
|
||||
@ -373,7 +373,7 @@ func (m *TransactionOptions_ReadWrite) Reset() { *m = TransactionOptions
|
||||
func (m *TransactionOptions_ReadWrite) String() string { return proto.CompactTextString(m) }
|
||||
func (*TransactionOptions_ReadWrite) ProtoMessage() {}
|
||||
func (*TransactionOptions_ReadWrite) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_common_ed079c0d96917e99, []int{2, 0}
|
||||
return fileDescriptor_common_37c55147eeb829a0, []int{2, 0}
|
||||
}
|
||||
func (m *TransactionOptions_ReadWrite) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_TransactionOptions_ReadWrite.Unmarshal(m, b)
|
||||
@ -417,7 +417,7 @@ func (m *TransactionOptions_ReadOnly) Reset() { *m = TransactionOptions_
|
||||
func (m *TransactionOptions_ReadOnly) String() string { return proto.CompactTextString(m) }
|
||||
func (*TransactionOptions_ReadOnly) ProtoMessage() {}
|
||||
func (*TransactionOptions_ReadOnly) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_common_ed079c0d96917e99, []int{2, 1}
|
||||
return fileDescriptor_common_37c55147eeb829a0, []int{2, 1}
|
||||
}
|
||||
func (m *TransactionOptions_ReadOnly) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_TransactionOptions_ReadOnly.Unmarshal(m, b)
|
||||
@ -525,10 +525,10 @@ func init() {
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/v1beta1/common.proto", fileDescriptor_common_ed079c0d96917e99)
|
||||
proto.RegisterFile("google/firestore/v1beta1/common.proto", fileDescriptor_common_37c55147eeb829a0)
|
||||
}
|
||||
|
||||
var fileDescriptor_common_ed079c0d96917e99 = []byte{
|
||||
var fileDescriptor_common_37c55147eeb829a0 = []byte{
|
||||
// 468 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0xef, 0x8a, 0xd3, 0x40,
|
||||
0x10, 0x6f, 0x7a, 0xc7, 0xd1, 0x4e, 0x8b, 0x9c, 0x41, 0x24, 0x84, 0xc3, 0x3b, 0x0a, 0x42, 0x41,
|
||||
|
12
vendor/google.golang.org/genproto/googleapis/firestore/v1beta1/document.pb.go
generated
vendored
12
vendor/google.golang.org/genproto/googleapis/firestore/v1beta1/document.pb.go
generated
vendored
@ -75,7 +75,7 @@ func (m *Document) Reset() { *m = Document{} }
|
||||
func (m *Document) String() string { return proto.CompactTextString(m) }
|
||||
func (*Document) ProtoMessage() {}
|
||||
func (*Document) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_document_fe46ba4c8da20ac8, []int{0}
|
||||
return fileDescriptor_document_cd57755e5c8cfbb2, []int{0}
|
||||
}
|
||||
func (m *Document) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Document.Unmarshal(m, b)
|
||||
@ -149,7 +149,7 @@ 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_document_fe46ba4c8da20ac8, []int{1}
|
||||
return fileDescriptor_document_cd57755e5c8cfbb2, []int{1}
|
||||
}
|
||||
func (m *Value) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Value.Unmarshal(m, b)
|
||||
@ -553,7 +553,7 @@ 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_document_fe46ba4c8da20ac8, []int{2}
|
||||
return fileDescriptor_document_cd57755e5c8cfbb2, []int{2}
|
||||
}
|
||||
func (m *ArrayValue) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ArrayValue.Unmarshal(m, b)
|
||||
@ -598,7 +598,7 @@ func (m *MapValue) Reset() { *m = MapValue{} }
|
||||
func (m *MapValue) String() string { return proto.CompactTextString(m) }
|
||||
func (*MapValue) ProtoMessage() {}
|
||||
func (*MapValue) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_document_fe46ba4c8da20ac8, []int{3}
|
||||
return fileDescriptor_document_cd57755e5c8cfbb2, []int{3}
|
||||
}
|
||||
func (m *MapValue) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_MapValue.Unmarshal(m, b)
|
||||
@ -635,10 +635,10 @@ func init() {
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/v1beta1/document.proto", fileDescriptor_document_fe46ba4c8da20ac8)
|
||||
proto.RegisterFile("google/firestore/v1beta1/document.proto", fileDescriptor_document_cd57755e5c8cfbb2)
|
||||
}
|
||||
|
||||
var fileDescriptor_document_fe46ba4c8da20ac8 = []byte{
|
||||
var fileDescriptor_document_cd57755e5c8cfbb2 = []byte{
|
||||
// 655 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0xcf, 0x6e, 0xd3, 0x4c,
|
||||
0x14, 0xc5, 0xe3, 0x24, 0x8d, 0x92, 0xeb, 0xb4, 0xfd, 0x3e, 0xb3, 0x89, 0xa2, 0x8a, 0x86, 0x00,
|
||||
|
56
vendor/google.golang.org/genproto/googleapis/firestore/v1beta1/firestore.pb.go
generated
vendored
56
vendor/google.golang.org/genproto/googleapis/firestore/v1beta1/firestore.pb.go
generated
vendored
@ -73,7 +73,7 @@ func (x TargetChange_TargetChangeType) String() string {
|
||||
return proto.EnumName(TargetChange_TargetChangeType_name, int32(x))
|
||||
}
|
||||
func (TargetChange_TargetChangeType) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{20, 0}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{20, 0}
|
||||
}
|
||||
|
||||
// The request for [Firestore.GetDocument][google.firestore.v1beta1.Firestore.GetDocument].
|
||||
@ -102,7 +102,7 @@ func (m *GetDocumentRequest) Reset() { *m = GetDocumentRequest{} }
|
||||
func (m *GetDocumentRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetDocumentRequest) ProtoMessage() {}
|
||||
func (*GetDocumentRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{0}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{0}
|
||||
}
|
||||
func (m *GetDocumentRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetDocumentRequest.Unmarshal(m, b)
|
||||
@ -290,7 +290,7 @@ func (m *ListDocumentsRequest) Reset() { *m = ListDocumentsRequest{} }
|
||||
func (m *ListDocumentsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListDocumentsRequest) ProtoMessage() {}
|
||||
func (*ListDocumentsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{1}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{1}
|
||||
}
|
||||
func (m *ListDocumentsRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListDocumentsRequest.Unmarshal(m, b)
|
||||
@ -481,7 +481,7 @@ func (m *ListDocumentsResponse) Reset() { *m = ListDocumentsResponse{} }
|
||||
func (m *ListDocumentsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListDocumentsResponse) ProtoMessage() {}
|
||||
func (*ListDocumentsResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{2}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{2}
|
||||
}
|
||||
func (m *ListDocumentsResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListDocumentsResponse.Unmarshal(m, b)
|
||||
@ -543,7 +543,7 @@ func (m *CreateDocumentRequest) Reset() { *m = CreateDocumentRequest{} }
|
||||
func (m *CreateDocumentRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*CreateDocumentRequest) ProtoMessage() {}
|
||||
func (*CreateDocumentRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{3}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{3}
|
||||
}
|
||||
func (m *CreateDocumentRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CreateDocumentRequest.Unmarshal(m, b)
|
||||
@ -628,7 +628,7 @@ func (m *UpdateDocumentRequest) Reset() { *m = UpdateDocumentRequest{} }
|
||||
func (m *UpdateDocumentRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*UpdateDocumentRequest) ProtoMessage() {}
|
||||
func (*UpdateDocumentRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{4}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{4}
|
||||
}
|
||||
func (m *UpdateDocumentRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_UpdateDocumentRequest.Unmarshal(m, b)
|
||||
@ -693,7 +693,7 @@ func (m *DeleteDocumentRequest) Reset() { *m = DeleteDocumentRequest{} }
|
||||
func (m *DeleteDocumentRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*DeleteDocumentRequest) ProtoMessage() {}
|
||||
func (*DeleteDocumentRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{5}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{5}
|
||||
}
|
||||
func (m *DeleteDocumentRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DeleteDocumentRequest.Unmarshal(m, b)
|
||||
@ -759,7 +759,7 @@ func (m *BatchGetDocumentsRequest) Reset() { *m = BatchGetDocumentsReque
|
||||
func (m *BatchGetDocumentsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*BatchGetDocumentsRequest) ProtoMessage() {}
|
||||
func (*BatchGetDocumentsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{6}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{6}
|
||||
}
|
||||
func (m *BatchGetDocumentsRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BatchGetDocumentsRequest.Unmarshal(m, b)
|
||||
@ -966,7 +966,7 @@ func (m *BatchGetDocumentsResponse) Reset() { *m = BatchGetDocumentsResp
|
||||
func (m *BatchGetDocumentsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*BatchGetDocumentsResponse) ProtoMessage() {}
|
||||
func (*BatchGetDocumentsResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{7}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{7}
|
||||
}
|
||||
func (m *BatchGetDocumentsResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BatchGetDocumentsResponse.Unmarshal(m, b)
|
||||
@ -1124,7 +1124,7 @@ func (m *BeginTransactionRequest) Reset() { *m = BeginTransactionRequest
|
||||
func (m *BeginTransactionRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*BeginTransactionRequest) ProtoMessage() {}
|
||||
func (*BeginTransactionRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{8}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{8}
|
||||
}
|
||||
func (m *BeginTransactionRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BeginTransactionRequest.Unmarshal(m, b)
|
||||
@ -1171,7 +1171,7 @@ func (m *BeginTransactionResponse) Reset() { *m = BeginTransactionRespon
|
||||
func (m *BeginTransactionResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*BeginTransactionResponse) ProtoMessage() {}
|
||||
func (*BeginTransactionResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{9}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{9}
|
||||
}
|
||||
func (m *BeginTransactionResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BeginTransactionResponse.Unmarshal(m, b)
|
||||
@ -1218,7 +1218,7 @@ func (m *CommitRequest) Reset() { *m = CommitRequest{} }
|
||||
func (m *CommitRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*CommitRequest) ProtoMessage() {}
|
||||
func (*CommitRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{10}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{10}
|
||||
}
|
||||
func (m *CommitRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CommitRequest.Unmarshal(m, b)
|
||||
@ -1277,7 +1277,7 @@ func (m *CommitResponse) Reset() { *m = CommitResponse{} }
|
||||
func (m *CommitResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*CommitResponse) ProtoMessage() {}
|
||||
func (*CommitResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{11}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{11}
|
||||
}
|
||||
func (m *CommitResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CommitResponse.Unmarshal(m, b)
|
||||
@ -1327,7 +1327,7 @@ func (m *RollbackRequest) Reset() { *m = RollbackRequest{} }
|
||||
func (m *RollbackRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*RollbackRequest) ProtoMessage() {}
|
||||
func (*RollbackRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{12}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{12}
|
||||
}
|
||||
func (m *RollbackRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_RollbackRequest.Unmarshal(m, b)
|
||||
@ -1392,7 +1392,7 @@ func (m *RunQueryRequest) Reset() { *m = RunQueryRequest{} }
|
||||
func (m *RunQueryRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*RunQueryRequest) ProtoMessage() {}
|
||||
func (*RunQueryRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{13}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{13}
|
||||
}
|
||||
func (m *RunQueryRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_RunQueryRequest.Unmarshal(m, b)
|
||||
@ -1643,7 +1643,7 @@ func (m *RunQueryResponse) Reset() { *m = RunQueryResponse{} }
|
||||
func (m *RunQueryResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*RunQueryResponse) ProtoMessage() {}
|
||||
func (*RunQueryResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{14}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{14}
|
||||
}
|
||||
func (m *RunQueryResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_RunQueryResponse.Unmarshal(m, b)
|
||||
@ -1743,7 +1743,7 @@ func (m *WriteRequest) Reset() { *m = WriteRequest{} }
|
||||
func (m *WriteRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*WriteRequest) ProtoMessage() {}
|
||||
func (*WriteRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{15}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{15}
|
||||
}
|
||||
func (m *WriteRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_WriteRequest.Unmarshal(m, b)
|
||||
@ -1824,7 +1824,7 @@ func (m *WriteResponse) Reset() { *m = WriteResponse{} }
|
||||
func (m *WriteResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*WriteResponse) ProtoMessage() {}
|
||||
func (*WriteResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{16}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{16}
|
||||
}
|
||||
func (m *WriteResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_WriteResponse.Unmarshal(m, b)
|
||||
@ -1894,7 +1894,7 @@ func (m *ListenRequest) Reset() { *m = ListenRequest{} }
|
||||
func (m *ListenRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListenRequest) ProtoMessage() {}
|
||||
func (*ListenRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{17}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{17}
|
||||
}
|
||||
func (m *ListenRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListenRequest.Unmarshal(m, b)
|
||||
@ -2054,7 +2054,7 @@ func (m *ListenResponse) Reset() { *m = ListenResponse{} }
|
||||
func (m *ListenResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListenResponse) ProtoMessage() {}
|
||||
func (*ListenResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{18}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{18}
|
||||
}
|
||||
func (m *ListenResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListenResponse.Unmarshal(m, b)
|
||||
@ -2318,7 +2318,7 @@ func (m *Target) Reset() { *m = Target{} }
|
||||
func (m *Target) String() string { return proto.CompactTextString(m) }
|
||||
func (*Target) ProtoMessage() {}
|
||||
func (*Target) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{19}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{19}
|
||||
}
|
||||
func (m *Target) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Target.Unmarshal(m, b)
|
||||
@ -2562,7 +2562,7 @@ func (m *Target_DocumentsTarget) Reset() { *m = Target_DocumentsTarget{}
|
||||
func (m *Target_DocumentsTarget) String() string { return proto.CompactTextString(m) }
|
||||
func (*Target_DocumentsTarget) ProtoMessage() {}
|
||||
func (*Target_DocumentsTarget) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{19, 0}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{19, 0}
|
||||
}
|
||||
func (m *Target_DocumentsTarget) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Target_DocumentsTarget.Unmarshal(m, b)
|
||||
@ -2612,7 +2612,7 @@ func (m *Target_QueryTarget) Reset() { *m = Target_QueryTarget{} }
|
||||
func (m *Target_QueryTarget) String() string { return proto.CompactTextString(m) }
|
||||
func (*Target_QueryTarget) ProtoMessage() {}
|
||||
func (*Target_QueryTarget) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{19, 1}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{19, 1}
|
||||
}
|
||||
func (m *Target_QueryTarget) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Target_QueryTarget.Unmarshal(m, b)
|
||||
@ -2759,7 +2759,7 @@ func (m *TargetChange) Reset() { *m = TargetChange{} }
|
||||
func (m *TargetChange) String() string { return proto.CompactTextString(m) }
|
||||
func (*TargetChange) ProtoMessage() {}
|
||||
func (*TargetChange) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{20}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{20}
|
||||
}
|
||||
func (m *TargetChange) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_TargetChange.Unmarshal(m, b)
|
||||
@ -2835,7 +2835,7 @@ func (m *ListCollectionIdsRequest) Reset() { *m = ListCollectionIdsReque
|
||||
func (m *ListCollectionIdsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListCollectionIdsRequest) ProtoMessage() {}
|
||||
func (*ListCollectionIdsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{21}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{21}
|
||||
}
|
||||
func (m *ListCollectionIdsRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListCollectionIdsRequest.Unmarshal(m, b)
|
||||
@ -2891,7 +2891,7 @@ func (m *ListCollectionIdsResponse) Reset() { *m = ListCollectionIdsResp
|
||||
func (m *ListCollectionIdsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListCollectionIdsResponse) ProtoMessage() {}
|
||||
func (*ListCollectionIdsResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_firestore_6b2b6098f593317e, []int{22}
|
||||
return fileDescriptor_firestore_0cb2a504439d3030, []int{22}
|
||||
}
|
||||
func (m *ListCollectionIdsResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListCollectionIdsResponse.Unmarshal(m, b)
|
||||
@ -3576,10 +3576,10 @@ var _Firestore_serviceDesc = grpc.ServiceDesc{
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/v1beta1/firestore.proto", fileDescriptor_firestore_6b2b6098f593317e)
|
||||
proto.RegisterFile("google/firestore/v1beta1/firestore.proto", fileDescriptor_firestore_0cb2a504439d3030)
|
||||
}
|
||||
|
||||
var fileDescriptor_firestore_6b2b6098f593317e = []byte{
|
||||
var fileDescriptor_firestore_0cb2a504439d3030 = []byte{
|
||||
// 2214 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5a, 0xcd, 0x8f, 0x1b, 0x49,
|
||||
0x15, 0x77, 0xb5, 0x3f, 0xc6, 0x7e, 0xfe, 0x18, 0x6f, 0x91, 0x64, 0x1d, 0x27, 0x4b, 0x86, 0x5e,
|
||||
|
32
vendor/google.golang.org/genproto/googleapis/firestore/v1beta1/query.pb.go
generated
vendored
32
vendor/google.golang.org/genproto/googleapis/firestore/v1beta1/query.pb.go
generated
vendored
@ -47,7 +47,7 @@ func (x StructuredQuery_Direction) String() string {
|
||||
return proto.EnumName(StructuredQuery_Direction_name, int32(x))
|
||||
}
|
||||
func (StructuredQuery_Direction) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 0}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 0}
|
||||
}
|
||||
|
||||
// A composite filter operator.
|
||||
@ -73,7 +73,7 @@ func (x StructuredQuery_CompositeFilter_Operator) String() string {
|
||||
return proto.EnumName(StructuredQuery_CompositeFilter_Operator_name, int32(x))
|
||||
}
|
||||
func (StructuredQuery_CompositeFilter_Operator) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 2, 0}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 2, 0}
|
||||
}
|
||||
|
||||
// A field filter operator.
|
||||
@ -120,7 +120,7 @@ func (x StructuredQuery_FieldFilter_Operator) String() string {
|
||||
return proto.EnumName(StructuredQuery_FieldFilter_Operator_name, int32(x))
|
||||
}
|
||||
func (StructuredQuery_FieldFilter_Operator) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 3, 0}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 3, 0}
|
||||
}
|
||||
|
||||
// A unary operator.
|
||||
@ -150,7 +150,7 @@ func (x StructuredQuery_UnaryFilter_Operator) String() string {
|
||||
return proto.EnumName(StructuredQuery_UnaryFilter_Operator_name, int32(x))
|
||||
}
|
||||
func (StructuredQuery_UnaryFilter_Operator) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 4, 0}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 4, 0}
|
||||
}
|
||||
|
||||
// A Firestore query.
|
||||
@ -203,7 +203,7 @@ func (m *StructuredQuery) Reset() { *m = StructuredQuery{} }
|
||||
func (m *StructuredQuery) String() string { return proto.CompactTextString(m) }
|
||||
func (*StructuredQuery) ProtoMessage() {}
|
||||
func (*StructuredQuery) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0}
|
||||
}
|
||||
func (m *StructuredQuery) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_StructuredQuery.Unmarshal(m, b)
|
||||
@ -297,7 +297,7 @@ func (m *StructuredQuery_CollectionSelector) Reset() { *m = StructuredQu
|
||||
func (m *StructuredQuery_CollectionSelector) String() string { return proto.CompactTextString(m) }
|
||||
func (*StructuredQuery_CollectionSelector) ProtoMessage() {}
|
||||
func (*StructuredQuery_CollectionSelector) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 0}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 0}
|
||||
}
|
||||
func (m *StructuredQuery_CollectionSelector) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_StructuredQuery_CollectionSelector.Unmarshal(m, b)
|
||||
@ -349,7 +349,7 @@ func (m *StructuredQuery_Filter) Reset() { *m = StructuredQuery_Filter{}
|
||||
func (m *StructuredQuery_Filter) String() string { return proto.CompactTextString(m) }
|
||||
func (*StructuredQuery_Filter) ProtoMessage() {}
|
||||
func (*StructuredQuery_Filter) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 1}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 1}
|
||||
}
|
||||
func (m *StructuredQuery_Filter) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_StructuredQuery_Filter.Unmarshal(m, b)
|
||||
@ -528,7 +528,7 @@ func (m *StructuredQuery_CompositeFilter) Reset() { *m = StructuredQuery
|
||||
func (m *StructuredQuery_CompositeFilter) String() string { return proto.CompactTextString(m) }
|
||||
func (*StructuredQuery_CompositeFilter) ProtoMessage() {}
|
||||
func (*StructuredQuery_CompositeFilter) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 2}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 2}
|
||||
}
|
||||
func (m *StructuredQuery_CompositeFilter) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_StructuredQuery_CompositeFilter.Unmarshal(m, b)
|
||||
@ -579,7 +579,7 @@ func (m *StructuredQuery_FieldFilter) Reset() { *m = StructuredQuery_Fie
|
||||
func (m *StructuredQuery_FieldFilter) String() string { return proto.CompactTextString(m) }
|
||||
func (*StructuredQuery_FieldFilter) ProtoMessage() {}
|
||||
func (*StructuredQuery_FieldFilter) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 3}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 3}
|
||||
}
|
||||
func (m *StructuredQuery_FieldFilter) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_StructuredQuery_FieldFilter.Unmarshal(m, b)
|
||||
@ -638,7 +638,7 @@ func (m *StructuredQuery_UnaryFilter) Reset() { *m = StructuredQuery_Una
|
||||
func (m *StructuredQuery_UnaryFilter) String() string { return proto.CompactTextString(m) }
|
||||
func (*StructuredQuery_UnaryFilter) ProtoMessage() {}
|
||||
func (*StructuredQuery_UnaryFilter) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 4}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 4}
|
||||
}
|
||||
func (m *StructuredQuery_UnaryFilter) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_StructuredQuery_UnaryFilter.Unmarshal(m, b)
|
||||
@ -759,7 +759,7 @@ func (m *StructuredQuery_Order) Reset() { *m = StructuredQuery_Order{} }
|
||||
func (m *StructuredQuery_Order) String() string { return proto.CompactTextString(m) }
|
||||
func (*StructuredQuery_Order) ProtoMessage() {}
|
||||
func (*StructuredQuery_Order) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 5}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 5}
|
||||
}
|
||||
func (m *StructuredQuery_Order) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_StructuredQuery_Order.Unmarshal(m, b)
|
||||
@ -805,7 +805,7 @@ func (m *StructuredQuery_FieldReference) Reset() { *m = StructuredQuery_
|
||||
func (m *StructuredQuery_FieldReference) String() string { return proto.CompactTextString(m) }
|
||||
func (*StructuredQuery_FieldReference) ProtoMessage() {}
|
||||
func (*StructuredQuery_FieldReference) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 6}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 6}
|
||||
}
|
||||
func (m *StructuredQuery_FieldReference) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_StructuredQuery_FieldReference.Unmarshal(m, b)
|
||||
@ -848,7 +848,7 @@ func (m *StructuredQuery_Projection) Reset() { *m = StructuredQuery_Proj
|
||||
func (m *StructuredQuery_Projection) String() string { return proto.CompactTextString(m) }
|
||||
func (*StructuredQuery_Projection) ProtoMessage() {}
|
||||
func (*StructuredQuery_Projection) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{0, 7}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{0, 7}
|
||||
}
|
||||
func (m *StructuredQuery_Projection) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_StructuredQuery_Projection.Unmarshal(m, b)
|
||||
@ -894,7 +894,7 @@ func (m *Cursor) Reset() { *m = Cursor{} }
|
||||
func (m *Cursor) String() string { return proto.CompactTextString(m) }
|
||||
func (*Cursor) ProtoMessage() {}
|
||||
func (*Cursor) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_query_4a614d17d9e42012, []int{1}
|
||||
return fileDescriptor_query_aa3d8d54536831bd, []int{1}
|
||||
}
|
||||
func (m *Cursor) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Cursor.Unmarshal(m, b)
|
||||
@ -946,10 +946,10 @@ func init() {
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/v1beta1/query.proto", fileDescriptor_query_4a614d17d9e42012)
|
||||
proto.RegisterFile("google/firestore/v1beta1/query.proto", fileDescriptor_query_aa3d8d54536831bd)
|
||||
}
|
||||
|
||||
var fileDescriptor_query_4a614d17d9e42012 = []byte{
|
||||
var fileDescriptor_query_aa3d8d54536831bd = []byte{
|
||||
// 985 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0xdd, 0x6e, 0xe3, 0x44,
|
||||
0x14, 0xc7, 0x6b, 0xa7, 0xf9, 0x3a, 0x69, 0xd3, 0x30, 0x82, 0x95, 0x09, 0xcb, 0x52, 0x05, 0xa4,
|
||||
|
231
vendor/google.golang.org/genproto/googleapis/firestore/v1beta1/write.pb.go
generated
vendored
231
vendor/google.golang.org/genproto/googleapis/firestore/v1beta1/write.pb.go
generated
vendored
@ -44,7 +44,7 @@ func (x DocumentTransform_FieldTransform_ServerValue) String() string {
|
||||
return proto.EnumName(DocumentTransform_FieldTransform_ServerValue_name, int32(x))
|
||||
}
|
||||
func (DocumentTransform_FieldTransform_ServerValue) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_20ad488dab963f67, []int{1, 0, 0}
|
||||
return fileDescriptor_write_cc36c9fc71610087, []int{1, 0, 0}
|
||||
}
|
||||
|
||||
// A write on a document.
|
||||
@ -80,7 +80,7 @@ func (m *Write) Reset() { *m = Write{} }
|
||||
func (m *Write) String() string { return proto.CompactTextString(m) }
|
||||
func (*Write) ProtoMessage() {}
|
||||
func (*Write) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_20ad488dab963f67, []int{0}
|
||||
return fileDescriptor_write_cc36c9fc71610087, []int{0}
|
||||
}
|
||||
func (m *Write) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Write.Unmarshal(m, b)
|
||||
@ -270,7 +270,7 @@ func (m *DocumentTransform) Reset() { *m = DocumentTransform{} }
|
||||
func (m *DocumentTransform) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentTransform) ProtoMessage() {}
|
||||
func (*DocumentTransform) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_20ad488dab963f67, []int{1}
|
||||
return fileDescriptor_write_cc36c9fc71610087, []int{1}
|
||||
}
|
||||
func (m *DocumentTransform) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentTransform.Unmarshal(m, b)
|
||||
@ -313,6 +313,9 @@ type DocumentTransform_FieldTransform struct {
|
||||
//
|
||||
// Types that are valid to be assigned to TransformType:
|
||||
// *DocumentTransform_FieldTransform_SetToServerValue
|
||||
// *DocumentTransform_FieldTransform_Increment
|
||||
// *DocumentTransform_FieldTransform_Maximum
|
||||
// *DocumentTransform_FieldTransform_Minimum
|
||||
// *DocumentTransform_FieldTransform_AppendMissingElements
|
||||
// *DocumentTransform_FieldTransform_RemoveAllFromArray
|
||||
TransformType isDocumentTransform_FieldTransform_TransformType `protobuf_oneof:"transform_type"`
|
||||
@ -325,7 +328,7 @@ func (m *DocumentTransform_FieldTransform) Reset() { *m = DocumentTransf
|
||||
func (m *DocumentTransform_FieldTransform) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentTransform_FieldTransform) ProtoMessage() {}
|
||||
func (*DocumentTransform_FieldTransform) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_20ad488dab963f67, []int{1, 0}
|
||||
return fileDescriptor_write_cc36c9fc71610087, []int{1, 0}
|
||||
}
|
||||
func (m *DocumentTransform_FieldTransform) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentTransform_FieldTransform.Unmarshal(m, b)
|
||||
@ -360,6 +363,18 @@ type DocumentTransform_FieldTransform_SetToServerValue struct {
|
||||
SetToServerValue DocumentTransform_FieldTransform_ServerValue `protobuf:"varint,2,opt,name=set_to_server_value,json=setToServerValue,proto3,enum=google.firestore.v1beta1.DocumentTransform_FieldTransform_ServerValue,oneof"`
|
||||
}
|
||||
|
||||
type DocumentTransform_FieldTransform_Increment struct {
|
||||
Increment *Value `protobuf:"bytes,3,opt,name=increment,proto3,oneof"`
|
||||
}
|
||||
|
||||
type DocumentTransform_FieldTransform_Maximum struct {
|
||||
Maximum *Value `protobuf:"bytes,4,opt,name=maximum,proto3,oneof"`
|
||||
}
|
||||
|
||||
type DocumentTransform_FieldTransform_Minimum struct {
|
||||
Minimum *Value `protobuf:"bytes,5,opt,name=minimum,proto3,oneof"`
|
||||
}
|
||||
|
||||
type DocumentTransform_FieldTransform_AppendMissingElements struct {
|
||||
AppendMissingElements *ArrayValue `protobuf:"bytes,6,opt,name=append_missing_elements,json=appendMissingElements,proto3,oneof"`
|
||||
}
|
||||
@ -371,6 +386,13 @@ type DocumentTransform_FieldTransform_RemoveAllFromArray struct {
|
||||
func (*DocumentTransform_FieldTransform_SetToServerValue) isDocumentTransform_FieldTransform_TransformType() {
|
||||
}
|
||||
|
||||
func (*DocumentTransform_FieldTransform_Increment) isDocumentTransform_FieldTransform_TransformType() {
|
||||
}
|
||||
|
||||
func (*DocumentTransform_FieldTransform_Maximum) isDocumentTransform_FieldTransform_TransformType() {}
|
||||
|
||||
func (*DocumentTransform_FieldTransform_Minimum) isDocumentTransform_FieldTransform_TransformType() {}
|
||||
|
||||
func (*DocumentTransform_FieldTransform_AppendMissingElements) isDocumentTransform_FieldTransform_TransformType() {
|
||||
}
|
||||
|
||||
@ -391,6 +413,27 @@ func (m *DocumentTransform_FieldTransform) GetSetToServerValue() DocumentTransfo
|
||||
return DocumentTransform_FieldTransform_SERVER_VALUE_UNSPECIFIED
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetIncrement() *Value {
|
||||
if x, ok := m.GetTransformType().(*DocumentTransform_FieldTransform_Increment); ok {
|
||||
return x.Increment
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetMaximum() *Value {
|
||||
if x, ok := m.GetTransformType().(*DocumentTransform_FieldTransform_Maximum); ok {
|
||||
return x.Maximum
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetMinimum() *Value {
|
||||
if x, ok := m.GetTransformType().(*DocumentTransform_FieldTransform_Minimum); ok {
|
||||
return x.Minimum
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *DocumentTransform_FieldTransform) GetAppendMissingElements() *ArrayValue {
|
||||
if x, ok := m.GetTransformType().(*DocumentTransform_FieldTransform_AppendMissingElements); ok {
|
||||
return x.AppendMissingElements
|
||||
@ -409,6 +452,9 @@ func (m *DocumentTransform_FieldTransform) GetRemoveAllFromArray() *ArrayValue {
|
||||
func (*DocumentTransform_FieldTransform) 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 _DocumentTransform_FieldTransform_OneofMarshaler, _DocumentTransform_FieldTransform_OneofUnmarshaler, _DocumentTransform_FieldTransform_OneofSizer, []interface{}{
|
||||
(*DocumentTransform_FieldTransform_SetToServerValue)(nil),
|
||||
(*DocumentTransform_FieldTransform_Increment)(nil),
|
||||
(*DocumentTransform_FieldTransform_Maximum)(nil),
|
||||
(*DocumentTransform_FieldTransform_Minimum)(nil),
|
||||
(*DocumentTransform_FieldTransform_AppendMissingElements)(nil),
|
||||
(*DocumentTransform_FieldTransform_RemoveAllFromArray)(nil),
|
||||
}
|
||||
@ -421,6 +467,21 @@ func _DocumentTransform_FieldTransform_OneofMarshaler(msg proto.Message, b *prot
|
||||
case *DocumentTransform_FieldTransform_SetToServerValue:
|
||||
b.EncodeVarint(2<<3 | proto.WireVarint)
|
||||
b.EncodeVarint(uint64(x.SetToServerValue))
|
||||
case *DocumentTransform_FieldTransform_Increment:
|
||||
b.EncodeVarint(3<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.Increment); err != nil {
|
||||
return err
|
||||
}
|
||||
case *DocumentTransform_FieldTransform_Maximum:
|
||||
b.EncodeVarint(4<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.Maximum); err != nil {
|
||||
return err
|
||||
}
|
||||
case *DocumentTransform_FieldTransform_Minimum:
|
||||
b.EncodeVarint(5<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.Minimum); err != nil {
|
||||
return err
|
||||
}
|
||||
case *DocumentTransform_FieldTransform_AppendMissingElements:
|
||||
b.EncodeVarint(6<<3 | proto.WireBytes)
|
||||
if err := b.EncodeMessage(x.AppendMissingElements); err != nil {
|
||||
@ -448,6 +509,30 @@ func _DocumentTransform_FieldTransform_OneofUnmarshaler(msg proto.Message, tag,
|
||||
x, err := b.DecodeVarint()
|
||||
m.TransformType = &DocumentTransform_FieldTransform_SetToServerValue{DocumentTransform_FieldTransform_ServerValue(x)}
|
||||
return true, err
|
||||
case 3: // transform_type.increment
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Value)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.TransformType = &DocumentTransform_FieldTransform_Increment{msg}
|
||||
return true, err
|
||||
case 4: // transform_type.maximum
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Value)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.TransformType = &DocumentTransform_FieldTransform_Maximum{msg}
|
||||
return true, err
|
||||
case 5: // transform_type.minimum
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(Value)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.TransformType = &DocumentTransform_FieldTransform_Minimum{msg}
|
||||
return true, err
|
||||
case 6: // transform_type.append_missing_elements
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
@ -476,6 +561,21 @@ func _DocumentTransform_FieldTransform_OneofSizer(msg proto.Message) (n int) {
|
||||
case *DocumentTransform_FieldTransform_SetToServerValue:
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(x.SetToServerValue))
|
||||
case *DocumentTransform_FieldTransform_Increment:
|
||||
s := proto.Size(x.Increment)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *DocumentTransform_FieldTransform_Maximum:
|
||||
s := proto.Size(x.Maximum)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *DocumentTransform_FieldTransform_Minimum:
|
||||
s := proto.Size(x.Minimum)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *DocumentTransform_FieldTransform_AppendMissingElements:
|
||||
s := proto.Size(x.AppendMissingElements)
|
||||
n += 1 // tag and wire
|
||||
@ -513,7 +613,7 @@ func (m *WriteResult) Reset() { *m = WriteResult{} }
|
||||
func (m *WriteResult) String() string { return proto.CompactTextString(m) }
|
||||
func (*WriteResult) ProtoMessage() {}
|
||||
func (*WriteResult) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_20ad488dab963f67, []int{2}
|
||||
return fileDescriptor_write_cc36c9fc71610087, []int{2}
|
||||
}
|
||||
func (m *WriteResult) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_WriteResult.Unmarshal(m, b)
|
||||
@ -572,7 +672,7 @@ func (m *DocumentChange) Reset() { *m = DocumentChange{} }
|
||||
func (m *DocumentChange) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentChange) ProtoMessage() {}
|
||||
func (*DocumentChange) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_20ad488dab963f67, []int{3}
|
||||
return fileDescriptor_write_cc36c9fc71610087, []int{3}
|
||||
}
|
||||
func (m *DocumentChange) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentChange.Unmarshal(m, b)
|
||||
@ -638,7 +738,7 @@ func (m *DocumentDelete) Reset() { *m = DocumentDelete{} }
|
||||
func (m *DocumentDelete) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentDelete) ProtoMessage() {}
|
||||
func (*DocumentDelete) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_20ad488dab963f67, []int{4}
|
||||
return fileDescriptor_write_cc36c9fc71610087, []int{4}
|
||||
}
|
||||
func (m *DocumentDelete) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentDelete.Unmarshal(m, b)
|
||||
@ -705,7 +805,7 @@ func (m *DocumentRemove) Reset() { *m = DocumentRemove{} }
|
||||
func (m *DocumentRemove) String() string { return proto.CompactTextString(m) }
|
||||
func (*DocumentRemove) ProtoMessage() {}
|
||||
func (*DocumentRemove) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_20ad488dab963f67, []int{5}
|
||||
return fileDescriptor_write_cc36c9fc71610087, []int{5}
|
||||
}
|
||||
func (m *DocumentRemove) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DocumentRemove.Unmarshal(m, b)
|
||||
@ -764,7 +864,7 @@ func (m *ExistenceFilter) Reset() { *m = ExistenceFilter{} }
|
||||
func (m *ExistenceFilter) String() string { return proto.CompactTextString(m) }
|
||||
func (*ExistenceFilter) ProtoMessage() {}
|
||||
func (*ExistenceFilter) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_write_20ad488dab963f67, []int{6}
|
||||
return fileDescriptor_write_cc36c9fc71610087, []int{6}
|
||||
}
|
||||
func (m *ExistenceFilter) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ExistenceFilter.Unmarshal(m, b)
|
||||
@ -811,61 +911,64 @@ func init() {
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/firestore/v1beta1/write.proto", fileDescriptor_write_20ad488dab963f67)
|
||||
proto.RegisterFile("google/firestore/v1beta1/write.proto", fileDescriptor_write_cc36c9fc71610087)
|
||||
}
|
||||
|
||||
var fileDescriptor_write_20ad488dab963f67 = []byte{
|
||||
// 826 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0x41, 0x6f, 0xe3, 0x44,
|
||||
0x14, 0xc7, 0x9b, 0xb4, 0x09, 0xcd, 0x0b, 0x6a, 0xbd, 0x03, 0x2b, 0xac, 0xd0, 0x65, 0xab, 0x68,
|
||||
0x81, 0x4a, 0x20, 0x47, 0x2d, 0x07, 0x24, 0x16, 0x90, 0x9a, 0xd6, 0x69, 0x2b, 0xb6, 0x28, 0x3b,
|
||||
0x49, 0x83, 0x40, 0x15, 0xa3, 0x69, 0xfc, 0xe2, 0x5a, 0x6b, 0x7b, 0xac, 0x99, 0x49, 0x97, 0xfd,
|
||||
0x1c, 0x5c, 0xb8, 0x70, 0xe1, 0xc8, 0x99, 0x03, 0x9f, 0x01, 0x89, 0x23, 0xdf, 0x07, 0x79, 0xc6,
|
||||
0xf6, 0xa6, 0xac, 0x42, 0xe8, 0x8a, 0x5b, 0xde, 0xcc, 0xff, 0xfd, 0xde, 0x7f, 0xe6, 0xcd, 0x73,
|
||||
0xe0, 0x51, 0x28, 0x44, 0x18, 0x63, 0x6f, 0x16, 0x49, 0x54, 0x5a, 0x48, 0xec, 0xdd, 0xec, 0x5f,
|
||||
0xa1, 0xe6, 0xfb, 0xbd, 0xe7, 0x32, 0xd2, 0xe8, 0x65, 0x52, 0x68, 0x41, 0x5c, 0xab, 0xf2, 0x2a,
|
||||
0x95, 0x57, 0xa8, 0x3a, 0x3b, 0x45, 0x3e, 0xcf, 0xa2, 0x1e, 0x4f, 0x53, 0xa1, 0xb9, 0x8e, 0x44,
|
||||
0xaa, 0x6c, 0x5e, 0xe7, 0xfd, 0xa5, 0xf4, 0xa9, 0x48, 0x12, 0x91, 0x16, 0xb2, 0x0f, 0x97, 0xca,
|
||||
0x02, 0x31, 0x9d, 0x27, 0x98, 0xea, 0x42, 0xf8, 0xb0, 0x10, 0x9a, 0xe8, 0x6a, 0x3e, 0xeb, 0xe9,
|
||||
0x28, 0x41, 0xa5, 0x79, 0x92, 0x59, 0x41, 0xf7, 0xaf, 0x3a, 0x34, 0xbe, 0xc9, 0x8d, 0x93, 0xcf,
|
||||
0xa1, 0x39, 0xcf, 0x02, 0xae, 0xd1, 0xad, 0xed, 0xd6, 0xf6, 0xda, 0x07, 0x5d, 0x6f, 0xd9, 0x19,
|
||||
0xbc, 0xe3, 0xa2, 0xc8, 0xe9, 0x1a, 0x2d, 0x72, 0x88, 0x0b, 0xcd, 0x00, 0x63, 0xd4, 0xe8, 0xd6,
|
||||
0x77, 0x6b, 0x7b, 0xad, 0x7c, 0xc7, 0xc6, 0xe4, 0x2b, 0x68, 0x69, 0xc9, 0x53, 0x35, 0x13, 0x32,
|
||||
0x71, 0x9b, 0x06, 0xfd, 0xd1, 0x6a, 0xf4, 0xb8, 0x4c, 0x39, 0x5d, 0xa3, 0x2f, 0xf3, 0xc9, 0x09,
|
||||
0xb4, 0x6d, 0x41, 0x96, 0x70, 0xf5, 0xcc, 0x5d, 0x37, 0xb8, 0x0f, 0x56, 0xe3, 0xce, 0xb9, 0x7a,
|
||||
0x46, 0xc1, 0xa6, 0xe6, 0xbf, 0xc9, 0x53, 0x70, 0xa6, 0x73, 0x29, 0x31, 0xd5, 0xac, 0xbc, 0x32,
|
||||
0x77, 0x63, 0x15, 0x6d, 0x28, 0x71, 0x2a, 0xd2, 0x20, 0xca, 0x3b, 0x46, 0xb7, 0x8b, 0xfc, 0xb2,
|
||||
0x44, 0xbf, 0x0d, 0x2d, 0x91, 0xa1, 0x34, 0xfd, 0xec, 0xfe, 0xb9, 0x01, 0xf7, 0x5e, 0x39, 0x0b,
|
||||
0xe9, 0xc0, 0x66, 0x55, 0x2d, 0xbf, 0xe5, 0x16, 0xad, 0x62, 0x82, 0xe0, 0xcc, 0x22, 0x8c, 0x03,
|
||||
0x56, 0x9d, 0x56, 0xb9, 0xf5, 0xdd, 0xf5, 0xbd, 0xf6, 0xc1, 0x67, 0x77, 0xb8, 0x2e, 0x6f, 0x90,
|
||||
0x33, 0xaa, 0x90, 0x6e, 0xcf, 0x6e, 0xc5, 0xaa, 0xf3, 0xdb, 0x3a, 0x6c, 0xdd, 0xd6, 0x90, 0x07,
|
||||
0x00, 0xb6, 0x72, 0xc6, 0xf5, 0x75, 0xe1, 0xab, 0x65, 0x56, 0x86, 0x5c, 0x5f, 0x93, 0xe7, 0xf0,
|
||||
0x96, 0x42, 0xcd, 0xb4, 0x60, 0x0a, 0xe5, 0x0d, 0x4a, 0x76, 0xc3, 0xe3, 0xb9, 0xed, 0xf3, 0xd6,
|
||||
0xc1, 0xe0, 0xf5, 0xbd, 0x79, 0x23, 0x83, 0x9b, 0xe4, 0xb4, 0xd3, 0x35, 0xea, 0x28, 0xd4, 0x63,
|
||||
0xb1, 0xb0, 0x46, 0xbe, 0x87, 0x77, 0x78, 0x96, 0x61, 0x1a, 0xb0, 0x24, 0x52, 0x2a, 0x4a, 0x43,
|
||||
0x86, 0x31, 0xe6, 0x44, 0x55, 0xbc, 0xa3, 0x47, 0xcb, 0x8b, 0x1f, 0x4a, 0xc9, 0x5f, 0x94, 0xe8,
|
||||
0xfb, 0x16, 0x73, 0x6e, 0x29, 0x7e, 0x01, 0x21, 0xdf, 0xc2, 0x7d, 0x89, 0x89, 0xb8, 0x41, 0xc6,
|
||||
0xe3, 0x98, 0xcd, 0xa4, 0x48, 0x18, 0xcf, 0xd3, 0xdc, 0x37, 0xee, 0x44, 0x27, 0x16, 0x72, 0x18,
|
||||
0xc7, 0x03, 0x29, 0x12, 0xb3, 0xd5, 0xfd, 0x02, 0xda, 0x8b, 0x27, 0xd9, 0x01, 0x77, 0xe4, 0xd3,
|
||||
0x89, 0x4f, 0xd9, 0xe4, 0xf0, 0xc9, 0x85, 0xcf, 0x2e, 0xbe, 0x1e, 0x0d, 0xfd, 0xa3, 0xb3, 0xc1,
|
||||
0x99, 0x7f, 0xec, 0xac, 0x11, 0x07, 0xde, 0xa4, 0xfe, 0xd3, 0x0b, 0x7f, 0x34, 0x66, 0xe3, 0xb3,
|
||||
0x73, 0xdf, 0xa9, 0xf5, 0x1d, 0xd8, 0xaa, 0x5e, 0x01, 0xd3, 0x2f, 0x32, 0xec, 0xfe, 0x54, 0x83,
|
||||
0xb6, 0x99, 0x53, 0x8a, 0x6a, 0x1e, 0x6b, 0xf2, 0xb8, 0x1a, 0x84, 0x7c, 0xa2, 0x8b, 0x91, 0xed,
|
||||
0x94, 0x8e, 0xcb, 0x71, 0xf7, 0xc6, 0xe5, 0xb8, 0x97, 0x8f, 0x3f, 0x5f, 0x20, 0x4f, 0xe0, 0xde,
|
||||
0x4b, 0xbc, 0x34, 0xc0, 0xf2, 0xad, 0x3d, 0x5c, 0x7e, 0x68, 0x73, 0x14, 0xea, 0x54, 0x99, 0xd6,
|
||||
0x89, 0xea, 0xfe, 0x5c, 0x83, 0xad, 0xb2, 0xd7, 0x47, 0xd7, 0x3c, 0x0d, 0x91, 0x7c, 0xf9, 0x8f,
|
||||
0x77, 0xfe, 0x9f, 0xbe, 0x26, 0x0b, 0xb3, 0xf0, 0x00, 0x40, 0x73, 0x19, 0xa2, 0x66, 0x51, 0xa0,
|
||||
0xdc, 0xc6, 0xee, 0xfa, 0x5e, 0x83, 0xb6, 0xec, 0xca, 0x59, 0xa0, 0xc8, 0xc7, 0x50, 0xdc, 0x79,
|
||||
0xc0, 0x16, 0x64, 0x4d, 0x23, 0x73, 0x8a, 0x9d, 0x71, 0xa9, 0xee, 0xfe, 0xb8, 0xe0, 0xef, 0xd8,
|
||||
0x7e, 0x93, 0xfe, 0x6d, 0x0e, 0xef, 0x04, 0x27, 0x9f, 0x42, 0x4b, 0x22, 0x0f, 0x6c, 0x17, 0x36,
|
||||
0x56, 0x76, 0x61, 0x33, 0x17, 0xe7, 0xe1, 0x2d, 0x57, 0xd4, 0x50, 0x5f, 0xc3, 0x55, 0xfd, 0xff,
|
||||
0x76, 0x75, 0x0c, 0xdb, 0xfe, 0x0f, 0x91, 0xd2, 0x98, 0x4e, 0x71, 0x10, 0xc5, 0x1a, 0x25, 0x79,
|
||||
0x17, 0x5a, 0x55, 0x45, 0x63, 0xab, 0x41, 0x37, 0xcb, 0x56, 0x90, 0xb7, 0xa1, 0x31, 0x15, 0xf3,
|
||||
0x54, 0x9b, 0xaf, 0x41, 0x83, 0xda, 0xa0, 0xff, 0x7b, 0x0d, 0x76, 0xa6, 0x22, 0x59, 0xda, 0xf2,
|
||||
0x3e, 0x98, 0xa7, 0x3c, 0xcc, 0x9d, 0x0c, 0x6b, 0xdf, 0x1d, 0x16, 0xba, 0x50, 0xc4, 0x3c, 0x0d,
|
||||
0x3d, 0x21, 0xc3, 0x5e, 0x88, 0xa9, 0xf1, 0xd9, 0xb3, 0x5b, 0x3c, 0x8b, 0xd4, 0xab, 0x7f, 0x76,
|
||||
0x8f, 0xab, 0x95, 0x5f, 0xea, 0x1b, 0x27, 0x47, 0x83, 0xd1, 0xaf, 0xf5, 0xf7, 0x4e, 0x2c, 0xea,
|
||||
0x28, 0x16, 0xf3, 0xc0, 0x1b, 0x54, 0x85, 0x27, 0xfb, 0xfd, 0x3c, 0xe3, 0x8f, 0x52, 0x70, 0x69,
|
||||
0x04, 0x97, 0x95, 0xe0, 0x72, 0x62, 0x91, 0x57, 0x4d, 0x53, 0xf6, 0x93, 0xbf, 0x03, 0x00, 0x00,
|
||||
0xff, 0xff, 0xc3, 0x26, 0x20, 0x51, 0xe7, 0x07, 0x00, 0x00,
|
||||
var fileDescriptor_write_cc36c9fc71610087 = []byte{
|
||||
// 866 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0xdd, 0x6e, 0xe3, 0x44,
|
||||
0x14, 0x6e, 0xd2, 0x26, 0xdb, 0x9c, 0xa0, 0xd6, 0x3b, 0xb0, 0xc2, 0x0a, 0x5d, 0xb6, 0x8a, 0x16,
|
||||
0xa8, 0x04, 0x72, 0xd4, 0x72, 0x81, 0xc4, 0xf2, 0xa3, 0xa6, 0x75, 0xda, 0x8a, 0x2d, 0xca, 0x3a,
|
||||
0x69, 0x10, 0xa8, 0xc2, 0x9a, 0xc6, 0x27, 0xae, 0xb5, 0xf6, 0x8c, 0x35, 0x33, 0xee, 0xee, 0xbe,
|
||||
0x01, 0xf7, 0xdc, 0x70, 0xc3, 0x0d, 0x97, 0x3c, 0x01, 0xcf, 0xc0, 0x3d, 0xcf, 0xc1, 0x2b, 0x20,
|
||||
0xcf, 0xd8, 0x6e, 0xca, 0x2a, 0xa4, 0x5d, 0x71, 0x97, 0x33, 0xf3, 0x7d, 0xdf, 0xf9, 0x3c, 0xdf,
|
||||
0xcc, 0x09, 0x3c, 0x0e, 0x39, 0x0f, 0x63, 0xec, 0xcd, 0x22, 0x81, 0x52, 0x71, 0x81, 0xbd, 0xab,
|
||||
0xdd, 0x0b, 0x54, 0x74, 0xb7, 0xf7, 0x42, 0x44, 0x0a, 0x9d, 0x54, 0x70, 0xc5, 0x89, 0x6d, 0x50,
|
||||
0x4e, 0x85, 0x72, 0x0a, 0x54, 0x67, 0xab, 0xe0, 0xd3, 0x34, 0xea, 0x51, 0xc6, 0xb8, 0xa2, 0x2a,
|
||||
0xe2, 0x4c, 0x1a, 0x5e, 0xe7, 0x83, 0x85, 0xea, 0x53, 0x9e, 0x24, 0x9c, 0x15, 0xb0, 0x8f, 0x16,
|
||||
0xc2, 0x02, 0x3e, 0xcd, 0x12, 0x64, 0xaa, 0x00, 0x3e, 0x2a, 0x80, 0xba, 0xba, 0xc8, 0x66, 0x3d,
|
||||
0x15, 0x25, 0x28, 0x15, 0x4d, 0x52, 0x03, 0xe8, 0xfe, 0x55, 0x87, 0xc6, 0x77, 0xb9, 0x71, 0xf2,
|
||||
0x05, 0x34, 0xb3, 0x34, 0xa0, 0x0a, 0xed, 0xda, 0x76, 0x6d, 0xa7, 0xbd, 0xd7, 0x75, 0x16, 0x7d,
|
||||
0x83, 0x73, 0x58, 0x34, 0x39, 0x5e, 0xf1, 0x0a, 0x0e, 0xb1, 0xa1, 0x19, 0x60, 0x8c, 0x0a, 0xed,
|
||||
0xfa, 0x76, 0x6d, 0xa7, 0x95, 0xef, 0x98, 0x9a, 0x7c, 0x03, 0x2d, 0x25, 0x28, 0x93, 0x33, 0x2e,
|
||||
0x12, 0xbb, 0xa9, 0xa5, 0x3f, 0x5e, 0x2e, 0x3d, 0x2e, 0x29, 0xc7, 0x2b, 0xde, 0x35, 0x9f, 0x1c,
|
||||
0x41, 0xdb, 0x34, 0xf4, 0x13, 0x2a, 0x9f, 0xdb, 0xab, 0x5a, 0xee, 0xc3, 0xe5, 0x72, 0xa7, 0x54,
|
||||
0x3e, 0xf7, 0xc0, 0x50, 0xf3, 0xdf, 0xe4, 0x19, 0x58, 0xd3, 0x4c, 0x08, 0x64, 0xca, 0x2f, 0x8f,
|
||||
0xcc, 0x5e, 0x5b, 0xa6, 0x36, 0x14, 0x38, 0xe5, 0x2c, 0x88, 0xf2, 0xc4, 0xbc, 0xcd, 0x82, 0x5f,
|
||||
0xb6, 0xe8, 0xb7, 0xa1, 0xc5, 0x53, 0x14, 0x3a, 0xcf, 0xee, 0x4f, 0x4d, 0xb8, 0xff, 0xda, 0xb7,
|
||||
0x90, 0x0e, 0xac, 0x57, 0xdd, 0xf2, 0x53, 0x6e, 0x79, 0x55, 0x4d, 0x10, 0xac, 0x59, 0x84, 0x71,
|
||||
0xe0, 0x57, 0x5f, 0x2b, 0xed, 0xfa, 0xf6, 0xea, 0x4e, 0x7b, 0xef, 0xf3, 0x3b, 0x1c, 0x97, 0x33,
|
||||
0xc8, 0x35, 0xaa, 0xd2, 0xdb, 0x9c, 0xdd, 0xa8, 0x65, 0xe7, 0xef, 0x35, 0xd8, 0xb8, 0x89, 0x21,
|
||||
0x0f, 0x01, 0x4c, 0xe7, 0x94, 0xaa, 0xcb, 0xc2, 0x57, 0x4b, 0xaf, 0x0c, 0xa9, 0xba, 0x24, 0x2f,
|
||||
0xe0, 0x6d, 0x89, 0xca, 0x57, 0xdc, 0x97, 0x28, 0xae, 0x50, 0xf8, 0x57, 0x34, 0xce, 0x4c, 0xce,
|
||||
0x1b, 0x7b, 0x83, 0x37, 0xf7, 0xe6, 0x8c, 0xb4, 0xdc, 0x24, 0x57, 0x3b, 0x5e, 0xf1, 0x2c, 0x89,
|
||||
0x6a, 0xcc, 0xe7, 0xd6, 0xc8, 0xd7, 0xd0, 0x8a, 0xd8, 0x54, 0xa0, 0x3e, 0x2e, 0x13, 0xf5, 0xa3,
|
||||
0xc5, 0xed, 0x4a, 0x9d, 0x6b, 0x0e, 0x79, 0x02, 0xf7, 0x12, 0xfa, 0x32, 0x4a, 0xb2, 0xa4, 0xc8,
|
||||
0xf6, 0x16, 0xf4, 0x92, 0xa1, 0xc9, 0x11, 0xd3, 0xe4, 0xc6, 0xed, 0xc9, 0x86, 0x41, 0x7e, 0x84,
|
||||
0x77, 0x69, 0x9a, 0x22, 0x0b, 0xfc, 0x24, 0x92, 0x32, 0x62, 0xa1, 0x8f, 0xb1, 0xf6, 0x24, 0x8b,
|
||||
0x27, 0xf0, 0x78, 0xb1, 0xd8, 0xbe, 0x10, 0xf4, 0x55, 0xa9, 0xf8, 0xc0, 0xc8, 0x9c, 0x1a, 0x15,
|
||||
0xb7, 0x10, 0x21, 0xdf, 0xc3, 0x03, 0x81, 0x09, 0xbf, 0x42, 0x9f, 0xc6, 0xb1, 0x3f, 0x13, 0x3c,
|
||||
0xf1, 0x69, 0x4e, 0xb3, 0xef, 0xdd, 0x49, 0x9d, 0x18, 0x91, 0xfd, 0x38, 0x1e, 0x08, 0x9e, 0xe8,
|
||||
0xad, 0xee, 0x97, 0xd0, 0x9e, 0x0f, 0x61, 0x0b, 0xec, 0x91, 0xeb, 0x4d, 0x5c, 0xcf, 0x9f, 0xec,
|
||||
0x3f, 0x3d, 0x73, 0xfd, 0xb3, 0x6f, 0x47, 0x43, 0xf7, 0xe0, 0x64, 0x70, 0xe2, 0x1e, 0x5a, 0x2b,
|
||||
0xc4, 0x82, 0xb7, 0x3c, 0xf7, 0xd9, 0x99, 0x3b, 0x1a, 0xfb, 0xe3, 0x93, 0x53, 0xd7, 0xaa, 0xf5,
|
||||
0x2d, 0xd8, 0xa8, 0x2e, 0xb0, 0xaf, 0x5e, 0xa5, 0xd8, 0xfd, 0xa5, 0x06, 0x6d, 0x3d, 0x62, 0x3c,
|
||||
0x94, 0x59, 0x9c, 0xa7, 0x52, 0xbe, 0xe1, 0x7c, 0x18, 0x15, 0xd3, 0xa6, 0x53, 0x3a, 0x2e, 0x27,
|
||||
0x95, 0x33, 0x2e, 0x27, 0x55, 0xf9, 0x6e, 0xf3, 0x05, 0xf2, 0x14, 0xee, 0x5f, 0xcb, 0x0b, 0x2d,
|
||||
0x58, 0x3e, 0x93, 0x65, 0xf9, 0x78, 0x56, 0xc5, 0x34, 0x4e, 0x64, 0xf7, 0xd7, 0x1a, 0x6c, 0x94,
|
||||
0xd7, 0xf4, 0xe0, 0x92, 0xb2, 0x10, 0xc9, 0x57, 0xff, 0x7a, 0xa2, 0xb7, 0x1a, 0x84, 0x73, 0xcf,
|
||||
0xf8, 0x21, 0x80, 0xa2, 0x22, 0x44, 0xe5, 0x47, 0x81, 0xb4, 0x1b, 0xdb, 0xab, 0x3b, 0x0d, 0xaf,
|
||||
0x65, 0x56, 0x4e, 0x02, 0x49, 0x3e, 0x81, 0xe2, 0xcc, 0x03, 0x7f, 0x0e, 0xd6, 0xd4, 0x30, 0xab,
|
||||
0xd8, 0x19, 0x97, 0xe8, 0xee, 0xcf, 0x73, 0xfe, 0x0e, 0xcd, 0x38, 0xfd, 0xaf, 0x11, 0x72, 0x27,
|
||||
0x71, 0xf2, 0x19, 0xb4, 0x04, 0xd2, 0xc0, 0xa4, 0xb0, 0xb6, 0x34, 0x85, 0xf5, 0x1c, 0x9c, 0x97,
|
||||
0x37, 0x5c, 0x79, 0x5a, 0xf5, 0x0d, 0x5c, 0xd5, 0xff, 0x6f, 0x57, 0x87, 0xb0, 0xe9, 0xbe, 0x8c,
|
||||
0xa4, 0x42, 0x36, 0xc5, 0x41, 0x14, 0x2b, 0x14, 0xe4, 0x3d, 0x68, 0x55, 0x1d, 0xb5, 0xad, 0x86,
|
||||
0xb7, 0x5e, 0x46, 0x41, 0xde, 0x81, 0xc6, 0x94, 0x67, 0x4c, 0xe9, 0x41, 0xd6, 0xf0, 0x4c, 0xd1,
|
||||
0xff, 0xa3, 0x06, 0x5b, 0x53, 0x9e, 0x2c, 0x8c, 0xbc, 0x0f, 0xfa, 0x2a, 0x0f, 0x73, 0x27, 0xc3,
|
||||
0xda, 0x0f, 0xfb, 0x05, 0x2e, 0xe4, 0x31, 0x65, 0xa1, 0xc3, 0x45, 0xd8, 0x0b, 0x91, 0x69, 0x9f,
|
||||
0x3d, 0xb3, 0x45, 0xd3, 0x48, 0xbe, 0xfe, 0x3f, 0xfd, 0xa4, 0x5a, 0xf9, 0xad, 0xbe, 0x76, 0x74,
|
||||
0x30, 0x18, 0xfd, 0x5e, 0x7f, 0xff, 0xc8, 0x48, 0x1d, 0xc4, 0x3c, 0x0b, 0x9c, 0x41, 0xd5, 0x78,
|
||||
0xb2, 0xdb, 0xcf, 0x19, 0x7f, 0x96, 0x80, 0x73, 0x0d, 0x38, 0xaf, 0x00, 0xe7, 0x13, 0x23, 0x79,
|
||||
0xd1, 0xd4, 0x6d, 0x3f, 0xfd, 0x27, 0x00, 0x00, 0xff, 0xff, 0x98, 0x5d, 0x9d, 0xb3, 0xa2, 0x08,
|
||||
0x00, 0x00,
|
||||
}
|
||||
|
Reference in New Issue
Block a user