Spaces:
Sleeping
Sleeping
| // Code generated by protoc-gen-go. DO NOT EDIT. | |
| package protocol | |
| import ( | |
| reflect "reflect" | |
| sync "sync" | |
| protoreflect "google.golang.org/protobuf/reflect/protoreflect" | |
| protoimpl "google.golang.org/protobuf/runtime/protoimpl" | |
| structpb "google.golang.org/protobuf/types/known/structpb" | |
| ) | |
| const ( | |
| // Verify that this generated code is sufficiently up-to-date. | |
| _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) | |
| // Verify that runtime/protoimpl is sufficiently up-to-date. | |
| _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) | |
| ) | |
| type ConsistencyLevel int32 | |
| const ( | |
| ConsistencyLevel_CONSISTENCY_LEVEL_UNSPECIFIED ConsistencyLevel = 0 | |
| ConsistencyLevel_CONSISTENCY_LEVEL_ONE ConsistencyLevel = 1 | |
| ConsistencyLevel_CONSISTENCY_LEVEL_QUORUM ConsistencyLevel = 2 | |
| ConsistencyLevel_CONSISTENCY_LEVEL_ALL ConsistencyLevel = 3 | |
| ) | |
| // Enum value maps for ConsistencyLevel. | |
| var ( | |
| ConsistencyLevel_name = map[int32]string{ | |
| 0: "CONSISTENCY_LEVEL_UNSPECIFIED", | |
| 1: "CONSISTENCY_LEVEL_ONE", | |
| 2: "CONSISTENCY_LEVEL_QUORUM", | |
| 3: "CONSISTENCY_LEVEL_ALL", | |
| } | |
| ConsistencyLevel_value = map[string]int32{ | |
| "CONSISTENCY_LEVEL_UNSPECIFIED": 0, | |
| "CONSISTENCY_LEVEL_ONE": 1, | |
| "CONSISTENCY_LEVEL_QUORUM": 2, | |
| "CONSISTENCY_LEVEL_ALL": 3, | |
| } | |
| ) | |
| func (x ConsistencyLevel) Enum() *ConsistencyLevel { | |
| p := new(ConsistencyLevel) | |
| *p = x | |
| return p | |
| } | |
| func (x ConsistencyLevel) String() string { | |
| return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) | |
| } | |
| func (ConsistencyLevel) Descriptor() protoreflect.EnumDescriptor { | |
| return file_v1_base_proto_enumTypes[0].Descriptor() | |
| } | |
| func (ConsistencyLevel) Type() protoreflect.EnumType { | |
| return &file_v1_base_proto_enumTypes[0] | |
| } | |
| func (x ConsistencyLevel) Number() protoreflect.EnumNumber { | |
| return protoreflect.EnumNumber(x) | |
| } | |
| // Deprecated: Use ConsistencyLevel.Descriptor instead. | |
| func (ConsistencyLevel) EnumDescriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{0} | |
| } | |
| type Filters_Operator int32 | |
| const ( | |
| Filters_OPERATOR_UNSPECIFIED Filters_Operator = 0 | |
| Filters_OPERATOR_EQUAL Filters_Operator = 1 | |
| Filters_OPERATOR_NOT_EQUAL Filters_Operator = 2 | |
| Filters_OPERATOR_GREATER_THAN Filters_Operator = 3 | |
| Filters_OPERATOR_GREATER_THAN_EQUAL Filters_Operator = 4 | |
| Filters_OPERATOR_LESS_THAN Filters_Operator = 5 | |
| Filters_OPERATOR_LESS_THAN_EQUAL Filters_Operator = 6 | |
| Filters_OPERATOR_AND Filters_Operator = 7 | |
| Filters_OPERATOR_OR Filters_Operator = 8 | |
| Filters_OPERATOR_WITHIN_GEO_RANGE Filters_Operator = 9 | |
| Filters_OPERATOR_LIKE Filters_Operator = 10 | |
| Filters_OPERATOR_IS_NULL Filters_Operator = 11 | |
| Filters_OPERATOR_CONTAINS_ANY Filters_Operator = 12 | |
| Filters_OPERATOR_CONTAINS_ALL Filters_Operator = 13 | |
| ) | |
| // Enum value maps for Filters_Operator. | |
| var ( | |
| Filters_Operator_name = map[int32]string{ | |
| 0: "OPERATOR_UNSPECIFIED", | |
| 1: "OPERATOR_EQUAL", | |
| 2: "OPERATOR_NOT_EQUAL", | |
| 3: "OPERATOR_GREATER_THAN", | |
| 4: "OPERATOR_GREATER_THAN_EQUAL", | |
| 5: "OPERATOR_LESS_THAN", | |
| 6: "OPERATOR_LESS_THAN_EQUAL", | |
| 7: "OPERATOR_AND", | |
| 8: "OPERATOR_OR", | |
| 9: "OPERATOR_WITHIN_GEO_RANGE", | |
| 10: "OPERATOR_LIKE", | |
| 11: "OPERATOR_IS_NULL", | |
| 12: "OPERATOR_CONTAINS_ANY", | |
| 13: "OPERATOR_CONTAINS_ALL", | |
| } | |
| Filters_Operator_value = map[string]int32{ | |
| "OPERATOR_UNSPECIFIED": 0, | |
| "OPERATOR_EQUAL": 1, | |
| "OPERATOR_NOT_EQUAL": 2, | |
| "OPERATOR_GREATER_THAN": 3, | |
| "OPERATOR_GREATER_THAN_EQUAL": 4, | |
| "OPERATOR_LESS_THAN": 5, | |
| "OPERATOR_LESS_THAN_EQUAL": 6, | |
| "OPERATOR_AND": 7, | |
| "OPERATOR_OR": 8, | |
| "OPERATOR_WITHIN_GEO_RANGE": 9, | |
| "OPERATOR_LIKE": 10, | |
| "OPERATOR_IS_NULL": 11, | |
| "OPERATOR_CONTAINS_ANY": 12, | |
| "OPERATOR_CONTAINS_ALL": 13, | |
| } | |
| ) | |
| func (x Filters_Operator) Enum() *Filters_Operator { | |
| p := new(Filters_Operator) | |
| *p = x | |
| return p | |
| } | |
| func (x Filters_Operator) String() string { | |
| return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) | |
| } | |
| func (Filters_Operator) Descriptor() protoreflect.EnumDescriptor { | |
| return file_v1_base_proto_enumTypes[1].Descriptor() | |
| } | |
| func (Filters_Operator) Type() protoreflect.EnumType { | |
| return &file_v1_base_proto_enumTypes[1] | |
| } | |
| func (x Filters_Operator) Number() protoreflect.EnumNumber { | |
| return protoreflect.EnumNumber(x) | |
| } | |
| // Deprecated: Use Filters_Operator.Descriptor instead. | |
| func (Filters_Operator) EnumDescriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{11, 0} | |
| } | |
| type NumberArrayProperties struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| // Deprecated: Marked as deprecated in v1/base.proto. | |
| Values []float64 `protobuf:"fixed64,1,rep,packed,name=values,proto3" json:"values,omitempty"` // will be removed in the future, use vector_bytes | |
| PropName string `protobuf:"bytes,2,opt,name=prop_name,json=propName,proto3" json:"prop_name,omitempty"` | |
| ValuesBytes []byte `protobuf:"bytes,3,opt,name=values_bytes,json=valuesBytes,proto3" json:"values_bytes,omitempty"` | |
| } | |
| func (x *NumberArrayProperties) Reset() { | |
| *x = NumberArrayProperties{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[0] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *NumberArrayProperties) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*NumberArrayProperties) ProtoMessage() {} | |
| func (x *NumberArrayProperties) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[0] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use NumberArrayProperties.ProtoReflect.Descriptor instead. | |
| func (*NumberArrayProperties) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{0} | |
| } | |
| // Deprecated: Marked as deprecated in v1/base.proto. | |
| func (x *NumberArrayProperties) GetValues() []float64 { | |
| if x != nil { | |
| return x.Values | |
| } | |
| return nil | |
| } | |
| func (x *NumberArrayProperties) GetPropName() string { | |
| if x != nil { | |
| return x.PropName | |
| } | |
| return "" | |
| } | |
| func (x *NumberArrayProperties) GetValuesBytes() []byte { | |
| if x != nil { | |
| return x.ValuesBytes | |
| } | |
| return nil | |
| } | |
| type IntArrayProperties struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Values []int64 `protobuf:"varint,1,rep,packed,name=values,proto3" json:"values,omitempty"` | |
| PropName string `protobuf:"bytes,2,opt,name=prop_name,json=propName,proto3" json:"prop_name,omitempty"` | |
| } | |
| func (x *IntArrayProperties) Reset() { | |
| *x = IntArrayProperties{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[1] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *IntArrayProperties) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*IntArrayProperties) ProtoMessage() {} | |
| func (x *IntArrayProperties) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[1] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use IntArrayProperties.ProtoReflect.Descriptor instead. | |
| func (*IntArrayProperties) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{1} | |
| } | |
| func (x *IntArrayProperties) GetValues() []int64 { | |
| if x != nil { | |
| return x.Values | |
| } | |
| return nil | |
| } | |
| func (x *IntArrayProperties) GetPropName() string { | |
| if x != nil { | |
| return x.PropName | |
| } | |
| return "" | |
| } | |
| type TextArrayProperties struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Values []string `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"` | |
| PropName string `protobuf:"bytes,2,opt,name=prop_name,json=propName,proto3" json:"prop_name,omitempty"` | |
| } | |
| func (x *TextArrayProperties) Reset() { | |
| *x = TextArrayProperties{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[2] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *TextArrayProperties) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*TextArrayProperties) ProtoMessage() {} | |
| func (x *TextArrayProperties) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[2] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use TextArrayProperties.ProtoReflect.Descriptor instead. | |
| func (*TextArrayProperties) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{2} | |
| } | |
| func (x *TextArrayProperties) GetValues() []string { | |
| if x != nil { | |
| return x.Values | |
| } | |
| return nil | |
| } | |
| func (x *TextArrayProperties) GetPropName() string { | |
| if x != nil { | |
| return x.PropName | |
| } | |
| return "" | |
| } | |
| type BooleanArrayProperties struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Values []bool `protobuf:"varint,1,rep,packed,name=values,proto3" json:"values,omitempty"` | |
| PropName string `protobuf:"bytes,2,opt,name=prop_name,json=propName,proto3" json:"prop_name,omitempty"` | |
| } | |
| func (x *BooleanArrayProperties) Reset() { | |
| *x = BooleanArrayProperties{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[3] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *BooleanArrayProperties) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*BooleanArrayProperties) ProtoMessage() {} | |
| func (x *BooleanArrayProperties) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[3] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use BooleanArrayProperties.ProtoReflect.Descriptor instead. | |
| func (*BooleanArrayProperties) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{3} | |
| } | |
| func (x *BooleanArrayProperties) GetValues() []bool { | |
| if x != nil { | |
| return x.Values | |
| } | |
| return nil | |
| } | |
| func (x *BooleanArrayProperties) GetPropName() string { | |
| if x != nil { | |
| return x.PropName | |
| } | |
| return "" | |
| } | |
| type ObjectPropertiesValue struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| NonRefProperties *structpb.Struct `protobuf:"bytes,1,opt,name=non_ref_properties,json=nonRefProperties,proto3" json:"non_ref_properties,omitempty"` | |
| NumberArrayProperties []*NumberArrayProperties `protobuf:"bytes,2,rep,name=number_array_properties,json=numberArrayProperties,proto3" json:"number_array_properties,omitempty"` | |
| IntArrayProperties []*IntArrayProperties `protobuf:"bytes,3,rep,name=int_array_properties,json=intArrayProperties,proto3" json:"int_array_properties,omitempty"` | |
| TextArrayProperties []*TextArrayProperties `protobuf:"bytes,4,rep,name=text_array_properties,json=textArrayProperties,proto3" json:"text_array_properties,omitempty"` | |
| BooleanArrayProperties []*BooleanArrayProperties `protobuf:"bytes,5,rep,name=boolean_array_properties,json=booleanArrayProperties,proto3" json:"boolean_array_properties,omitempty"` | |
| ObjectProperties []*ObjectProperties `protobuf:"bytes,6,rep,name=object_properties,json=objectProperties,proto3" json:"object_properties,omitempty"` | |
| ObjectArrayProperties []*ObjectArrayProperties `protobuf:"bytes,7,rep,name=object_array_properties,json=objectArrayProperties,proto3" json:"object_array_properties,omitempty"` | |
| } | |
| func (x *ObjectPropertiesValue) Reset() { | |
| *x = ObjectPropertiesValue{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[4] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *ObjectPropertiesValue) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*ObjectPropertiesValue) ProtoMessage() {} | |
| func (x *ObjectPropertiesValue) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[4] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use ObjectPropertiesValue.ProtoReflect.Descriptor instead. | |
| func (*ObjectPropertiesValue) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{4} | |
| } | |
| func (x *ObjectPropertiesValue) GetNonRefProperties() *structpb.Struct { | |
| if x != nil { | |
| return x.NonRefProperties | |
| } | |
| return nil | |
| } | |
| func (x *ObjectPropertiesValue) GetNumberArrayProperties() []*NumberArrayProperties { | |
| if x != nil { | |
| return x.NumberArrayProperties | |
| } | |
| return nil | |
| } | |
| func (x *ObjectPropertiesValue) GetIntArrayProperties() []*IntArrayProperties { | |
| if x != nil { | |
| return x.IntArrayProperties | |
| } | |
| return nil | |
| } | |
| func (x *ObjectPropertiesValue) GetTextArrayProperties() []*TextArrayProperties { | |
| if x != nil { | |
| return x.TextArrayProperties | |
| } | |
| return nil | |
| } | |
| func (x *ObjectPropertiesValue) GetBooleanArrayProperties() []*BooleanArrayProperties { | |
| if x != nil { | |
| return x.BooleanArrayProperties | |
| } | |
| return nil | |
| } | |
| func (x *ObjectPropertiesValue) GetObjectProperties() []*ObjectProperties { | |
| if x != nil { | |
| return x.ObjectProperties | |
| } | |
| return nil | |
| } | |
| func (x *ObjectPropertiesValue) GetObjectArrayProperties() []*ObjectArrayProperties { | |
| if x != nil { | |
| return x.ObjectArrayProperties | |
| } | |
| return nil | |
| } | |
| type ObjectArrayProperties struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Values []*ObjectPropertiesValue `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"` | |
| PropName string `protobuf:"bytes,2,opt,name=prop_name,json=propName,proto3" json:"prop_name,omitempty"` | |
| } | |
| func (x *ObjectArrayProperties) Reset() { | |
| *x = ObjectArrayProperties{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[5] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *ObjectArrayProperties) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*ObjectArrayProperties) ProtoMessage() {} | |
| func (x *ObjectArrayProperties) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[5] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use ObjectArrayProperties.ProtoReflect.Descriptor instead. | |
| func (*ObjectArrayProperties) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{5} | |
| } | |
| func (x *ObjectArrayProperties) GetValues() []*ObjectPropertiesValue { | |
| if x != nil { | |
| return x.Values | |
| } | |
| return nil | |
| } | |
| func (x *ObjectArrayProperties) GetPropName() string { | |
| if x != nil { | |
| return x.PropName | |
| } | |
| return "" | |
| } | |
| type ObjectProperties struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Value *ObjectPropertiesValue `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` | |
| PropName string `protobuf:"bytes,2,opt,name=prop_name,json=propName,proto3" json:"prop_name,omitempty"` | |
| } | |
| func (x *ObjectProperties) Reset() { | |
| *x = ObjectProperties{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[6] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *ObjectProperties) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*ObjectProperties) ProtoMessage() {} | |
| func (x *ObjectProperties) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[6] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use ObjectProperties.ProtoReflect.Descriptor instead. | |
| func (*ObjectProperties) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{6} | |
| } | |
| func (x *ObjectProperties) GetValue() *ObjectPropertiesValue { | |
| if x != nil { | |
| return x.Value | |
| } | |
| return nil | |
| } | |
| func (x *ObjectProperties) GetPropName() string { | |
| if x != nil { | |
| return x.PropName | |
| } | |
| return "" | |
| } | |
| type TextArray struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Values []string `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"` | |
| } | |
| func (x *TextArray) Reset() { | |
| *x = TextArray{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[7] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *TextArray) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*TextArray) ProtoMessage() {} | |
| func (x *TextArray) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[7] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use TextArray.ProtoReflect.Descriptor instead. | |
| func (*TextArray) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{7} | |
| } | |
| func (x *TextArray) GetValues() []string { | |
| if x != nil { | |
| return x.Values | |
| } | |
| return nil | |
| } | |
| type IntArray struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Values []int64 `protobuf:"varint,1,rep,packed,name=values,proto3" json:"values,omitempty"` | |
| } | |
| func (x *IntArray) Reset() { | |
| *x = IntArray{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[8] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *IntArray) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*IntArray) ProtoMessage() {} | |
| func (x *IntArray) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[8] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use IntArray.ProtoReflect.Descriptor instead. | |
| func (*IntArray) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{8} | |
| } | |
| func (x *IntArray) GetValues() []int64 { | |
| if x != nil { | |
| return x.Values | |
| } | |
| return nil | |
| } | |
| type NumberArray struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Values []float64 `protobuf:"fixed64,1,rep,packed,name=values,proto3" json:"values,omitempty"` | |
| } | |
| func (x *NumberArray) Reset() { | |
| *x = NumberArray{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[9] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *NumberArray) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*NumberArray) ProtoMessage() {} | |
| func (x *NumberArray) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[9] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use NumberArray.ProtoReflect.Descriptor instead. | |
| func (*NumberArray) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{9} | |
| } | |
| func (x *NumberArray) GetValues() []float64 { | |
| if x != nil { | |
| return x.Values | |
| } | |
| return nil | |
| } | |
| type BooleanArray struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Values []bool `protobuf:"varint,1,rep,packed,name=values,proto3" json:"values,omitempty"` | |
| } | |
| func (x *BooleanArray) Reset() { | |
| *x = BooleanArray{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[10] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *BooleanArray) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*BooleanArray) ProtoMessage() {} | |
| func (x *BooleanArray) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[10] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use BooleanArray.ProtoReflect.Descriptor instead. | |
| func (*BooleanArray) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{10} | |
| } | |
| func (x *BooleanArray) GetValues() []bool { | |
| if x != nil { | |
| return x.Values | |
| } | |
| return nil | |
| } | |
| type Filters struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Operator Filters_Operator `protobuf:"varint,1,opt,name=operator,proto3,enum=weaviate.v1.Filters_Operator" json:"operator,omitempty"` | |
| // protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED | |
| // | |
| // Deprecated: Marked as deprecated in v1/base.proto. | |
| On []string `protobuf:"bytes,2,rep,name=on,proto3" json:"on,omitempty"` // will be removed in the future, use path | |
| Filters []*Filters `protobuf:"bytes,3,rep,name=filters,proto3" json:"filters,omitempty"` | |
| // Types that are assignable to TestValue: | |
| // | |
| // *Filters_ValueText | |
| // *Filters_ValueInt | |
| // *Filters_ValueBoolean | |
| // *Filters_ValueNumber | |
| // *Filters_ValueTextArray | |
| // *Filters_ValueIntArray | |
| // *Filters_ValueBooleanArray | |
| // *Filters_ValueNumberArray | |
| // *Filters_ValueGeo | |
| TestValue isFilters_TestValue `protobuf_oneof:"test_value"` | |
| Target *FilterTarget `protobuf:"bytes,20,opt,name=target,proto3" json:"target,omitempty"` // leave space for more filter values | |
| } | |
| func (x *Filters) Reset() { | |
| *x = Filters{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[11] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *Filters) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*Filters) ProtoMessage() {} | |
| func (x *Filters) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[11] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use Filters.ProtoReflect.Descriptor instead. | |
| func (*Filters) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{11} | |
| } | |
| func (x *Filters) GetOperator() Filters_Operator { | |
| if x != nil { | |
| return x.Operator | |
| } | |
| return Filters_OPERATOR_UNSPECIFIED | |
| } | |
| // Deprecated: Marked as deprecated in v1/base.proto. | |
| func (x *Filters) GetOn() []string { | |
| if x != nil { | |
| return x.On | |
| } | |
| return nil | |
| } | |
| func (x *Filters) GetFilters() []*Filters { | |
| if x != nil { | |
| return x.Filters | |
| } | |
| return nil | |
| } | |
| func (m *Filters) GetTestValue() isFilters_TestValue { | |
| if m != nil { | |
| return m.TestValue | |
| } | |
| return nil | |
| } | |
| func (x *Filters) GetValueText() string { | |
| if x, ok := x.GetTestValue().(*Filters_ValueText); ok { | |
| return x.ValueText | |
| } | |
| return "" | |
| } | |
| func (x *Filters) GetValueInt() int64 { | |
| if x, ok := x.GetTestValue().(*Filters_ValueInt); ok { | |
| return x.ValueInt | |
| } | |
| return 0 | |
| } | |
| func (x *Filters) GetValueBoolean() bool { | |
| if x, ok := x.GetTestValue().(*Filters_ValueBoolean); ok { | |
| return x.ValueBoolean | |
| } | |
| return false | |
| } | |
| func (x *Filters) GetValueNumber() float64 { | |
| if x, ok := x.GetTestValue().(*Filters_ValueNumber); ok { | |
| return x.ValueNumber | |
| } | |
| return 0 | |
| } | |
| func (x *Filters) GetValueTextArray() *TextArray { | |
| if x, ok := x.GetTestValue().(*Filters_ValueTextArray); ok { | |
| return x.ValueTextArray | |
| } | |
| return nil | |
| } | |
| func (x *Filters) GetValueIntArray() *IntArray { | |
| if x, ok := x.GetTestValue().(*Filters_ValueIntArray); ok { | |
| return x.ValueIntArray | |
| } | |
| return nil | |
| } | |
| func (x *Filters) GetValueBooleanArray() *BooleanArray { | |
| if x, ok := x.GetTestValue().(*Filters_ValueBooleanArray); ok { | |
| return x.ValueBooleanArray | |
| } | |
| return nil | |
| } | |
| func (x *Filters) GetValueNumberArray() *NumberArray { | |
| if x, ok := x.GetTestValue().(*Filters_ValueNumberArray); ok { | |
| return x.ValueNumberArray | |
| } | |
| return nil | |
| } | |
| func (x *Filters) GetValueGeo() *GeoCoordinatesFilter { | |
| if x, ok := x.GetTestValue().(*Filters_ValueGeo); ok { | |
| return x.ValueGeo | |
| } | |
| return nil | |
| } | |
| func (x *Filters) GetTarget() *FilterTarget { | |
| if x != nil { | |
| return x.Target | |
| } | |
| return nil | |
| } | |
| type isFilters_TestValue interface { | |
| isFilters_TestValue() | |
| } | |
| type Filters_ValueText struct { | |
| ValueText string `protobuf:"bytes,4,opt,name=value_text,json=valueText,proto3,oneof"` | |
| } | |
| type Filters_ValueInt struct { | |
| ValueInt int64 `protobuf:"varint,5,opt,name=value_int,json=valueInt,proto3,oneof"` | |
| } | |
| type Filters_ValueBoolean struct { | |
| ValueBoolean bool `protobuf:"varint,6,opt,name=value_boolean,json=valueBoolean,proto3,oneof"` | |
| } | |
| type Filters_ValueNumber struct { | |
| ValueNumber float64 `protobuf:"fixed64,7,opt,name=value_number,json=valueNumber,proto3,oneof"` | |
| } | |
| type Filters_ValueTextArray struct { | |
| ValueTextArray *TextArray `protobuf:"bytes,9,opt,name=value_text_array,json=valueTextArray,proto3,oneof"` | |
| } | |
| type Filters_ValueIntArray struct { | |
| ValueIntArray *IntArray `protobuf:"bytes,10,opt,name=value_int_array,json=valueIntArray,proto3,oneof"` | |
| } | |
| type Filters_ValueBooleanArray struct { | |
| ValueBooleanArray *BooleanArray `protobuf:"bytes,11,opt,name=value_boolean_array,json=valueBooleanArray,proto3,oneof"` | |
| } | |
| type Filters_ValueNumberArray struct { | |
| ValueNumberArray *NumberArray `protobuf:"bytes,12,opt,name=value_number_array,json=valueNumberArray,proto3,oneof"` | |
| } | |
| type Filters_ValueGeo struct { | |
| ValueGeo *GeoCoordinatesFilter `protobuf:"bytes,13,opt,name=value_geo,json=valueGeo,proto3,oneof"` | |
| } | |
| func (*Filters_ValueText) isFilters_TestValue() {} | |
| func (*Filters_ValueInt) isFilters_TestValue() {} | |
| func (*Filters_ValueBoolean) isFilters_TestValue() {} | |
| func (*Filters_ValueNumber) isFilters_TestValue() {} | |
| func (*Filters_ValueTextArray) isFilters_TestValue() {} | |
| func (*Filters_ValueIntArray) isFilters_TestValue() {} | |
| func (*Filters_ValueBooleanArray) isFilters_TestValue() {} | |
| func (*Filters_ValueNumberArray) isFilters_TestValue() {} | |
| func (*Filters_ValueGeo) isFilters_TestValue() {} | |
| type FilterReferenceSingleTarget struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| On string `protobuf:"bytes,1,opt,name=on,proto3" json:"on,omitempty"` | |
| Target *FilterTarget `protobuf:"bytes,2,opt,name=target,proto3" json:"target,omitempty"` | |
| } | |
| func (x *FilterReferenceSingleTarget) Reset() { | |
| *x = FilterReferenceSingleTarget{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[12] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *FilterReferenceSingleTarget) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*FilterReferenceSingleTarget) ProtoMessage() {} | |
| func (x *FilterReferenceSingleTarget) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[12] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use FilterReferenceSingleTarget.ProtoReflect.Descriptor instead. | |
| func (*FilterReferenceSingleTarget) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{12} | |
| } | |
| func (x *FilterReferenceSingleTarget) GetOn() string { | |
| if x != nil { | |
| return x.On | |
| } | |
| return "" | |
| } | |
| func (x *FilterReferenceSingleTarget) GetTarget() *FilterTarget { | |
| if x != nil { | |
| return x.Target | |
| } | |
| return nil | |
| } | |
| type FilterReferenceMultiTarget struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| On string `protobuf:"bytes,1,opt,name=on,proto3" json:"on,omitempty"` | |
| Target *FilterTarget `protobuf:"bytes,2,opt,name=target,proto3" json:"target,omitempty"` | |
| TargetCollection string `protobuf:"bytes,3,opt,name=target_collection,json=targetCollection,proto3" json:"target_collection,omitempty"` | |
| } | |
| func (x *FilterReferenceMultiTarget) Reset() { | |
| *x = FilterReferenceMultiTarget{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[13] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *FilterReferenceMultiTarget) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*FilterReferenceMultiTarget) ProtoMessage() {} | |
| func (x *FilterReferenceMultiTarget) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[13] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use FilterReferenceMultiTarget.ProtoReflect.Descriptor instead. | |
| func (*FilterReferenceMultiTarget) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{13} | |
| } | |
| func (x *FilterReferenceMultiTarget) GetOn() string { | |
| if x != nil { | |
| return x.On | |
| } | |
| return "" | |
| } | |
| func (x *FilterReferenceMultiTarget) GetTarget() *FilterTarget { | |
| if x != nil { | |
| return x.Target | |
| } | |
| return nil | |
| } | |
| func (x *FilterReferenceMultiTarget) GetTargetCollection() string { | |
| if x != nil { | |
| return x.TargetCollection | |
| } | |
| return "" | |
| } | |
| type FilterTarget struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| // Types that are assignable to Target: | |
| // | |
| // *FilterTarget_Property | |
| // *FilterTarget_SingleTarget | |
| // *FilterTarget_MultiTarget | |
| Target isFilterTarget_Target `protobuf_oneof:"target"` | |
| } | |
| func (x *FilterTarget) Reset() { | |
| *x = FilterTarget{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[14] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *FilterTarget) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*FilterTarget) ProtoMessage() {} | |
| func (x *FilterTarget) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[14] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use FilterTarget.ProtoReflect.Descriptor instead. | |
| func (*FilterTarget) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{14} | |
| } | |
| func (m *FilterTarget) GetTarget() isFilterTarget_Target { | |
| if m != nil { | |
| return m.Target | |
| } | |
| return nil | |
| } | |
| func (x *FilterTarget) GetProperty() string { | |
| if x, ok := x.GetTarget().(*FilterTarget_Property); ok { | |
| return x.Property | |
| } | |
| return "" | |
| } | |
| func (x *FilterTarget) GetSingleTarget() *FilterReferenceSingleTarget { | |
| if x, ok := x.GetTarget().(*FilterTarget_SingleTarget); ok { | |
| return x.SingleTarget | |
| } | |
| return nil | |
| } | |
| func (x *FilterTarget) GetMultiTarget() *FilterReferenceMultiTarget { | |
| if x, ok := x.GetTarget().(*FilterTarget_MultiTarget); ok { | |
| return x.MultiTarget | |
| } | |
| return nil | |
| } | |
| type isFilterTarget_Target interface { | |
| isFilterTarget_Target() | |
| } | |
| type FilterTarget_Property struct { | |
| Property string `protobuf:"bytes,1,opt,name=property,proto3,oneof"` | |
| } | |
| type FilterTarget_SingleTarget struct { | |
| SingleTarget *FilterReferenceSingleTarget `protobuf:"bytes,2,opt,name=single_target,json=singleTarget,proto3,oneof"` | |
| } | |
| type FilterTarget_MultiTarget struct { | |
| MultiTarget *FilterReferenceMultiTarget `protobuf:"bytes,3,opt,name=multi_target,json=multiTarget,proto3,oneof"` | |
| } | |
| func (*FilterTarget_Property) isFilterTarget_Target() {} | |
| func (*FilterTarget_SingleTarget) isFilterTarget_Target() {} | |
| func (*FilterTarget_MultiTarget) isFilterTarget_Target() {} | |
| type GeoCoordinatesFilter struct { | |
| state protoimpl.MessageState | |
| sizeCache protoimpl.SizeCache | |
| unknownFields protoimpl.UnknownFields | |
| Latitude float32 `protobuf:"fixed32,1,opt,name=latitude,proto3" json:"latitude,omitempty"` | |
| Longitude float32 `protobuf:"fixed32,2,opt,name=longitude,proto3" json:"longitude,omitempty"` | |
| Distance float32 `protobuf:"fixed32,3,opt,name=distance,proto3" json:"distance,omitempty"` | |
| } | |
| func (x *GeoCoordinatesFilter) Reset() { | |
| *x = GeoCoordinatesFilter{} | |
| if protoimpl.UnsafeEnabled { | |
| mi := &file_v1_base_proto_msgTypes[15] | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| ms.StoreMessageInfo(mi) | |
| } | |
| } | |
| func (x *GeoCoordinatesFilter) String() string { | |
| return protoimpl.X.MessageStringOf(x) | |
| } | |
| func (*GeoCoordinatesFilter) ProtoMessage() {} | |
| func (x *GeoCoordinatesFilter) ProtoReflect() protoreflect.Message { | |
| mi := &file_v1_base_proto_msgTypes[15] | |
| if protoimpl.UnsafeEnabled && x != nil { | |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | |
| if ms.LoadMessageInfo() == nil { | |
| ms.StoreMessageInfo(mi) | |
| } | |
| return ms | |
| } | |
| return mi.MessageOf(x) | |
| } | |
| // Deprecated: Use GeoCoordinatesFilter.ProtoReflect.Descriptor instead. | |
| func (*GeoCoordinatesFilter) Descriptor() ([]byte, []int) { | |
| return file_v1_base_proto_rawDescGZIP(), []int{15} | |
| } | |
| func (x *GeoCoordinatesFilter) GetLatitude() float32 { | |
| if x != nil { | |
| return x.Latitude | |
| } | |
| return 0 | |
| } | |
| func (x *GeoCoordinatesFilter) GetLongitude() float32 { | |
| if x != nil { | |
| return x.Longitude | |
| } | |
| return 0 | |
| } | |
| func (x *GeoCoordinatesFilter) GetDistance() float32 { | |
| if x != nil { | |
| return x.Distance | |
| } | |
| return 0 | |
| } | |
| var File_v1_base_proto protoreflect.FileDescriptor | |
| var file_v1_base_proto_rawDesc = []byte{ | |
| 0x0a, 0x0d, 0x76, 0x31, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, | |
| 0x0b, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x1a, 0x1c, 0x67, 0x6f, | |
| 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x73, 0x74, | |
| 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x73, 0x0a, 0x15, 0x4e, 0x75, | |
| 0x6d, 0x62, 0x65, 0x72, 0x41, 0x72, 0x72, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, | |
| 0x69, 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, | |
| 0x03, 0x28, 0x01, 0x42, 0x02, 0x18, 0x01, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, | |
| 0x1b, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, | |
| 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, | |
| 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, | |
| 0x28, 0x0c, 0x52, 0x0b, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x42, 0x79, 0x74, 0x65, 0x73, 0x22, | |
| 0x49, 0x0a, 0x12, 0x49, 0x6e, 0x74, 0x41, 0x72, 0x72, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, | |
| 0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, | |
| 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x1b, 0x0a, | |
| 0x09, 0x70, 0x72, 0x6f, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, | |
| 0x52, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x4a, 0x0a, 0x13, 0x54, 0x65, | |
| 0x78, 0x74, 0x41, 0x72, 0x72, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, | |
| 0x73, 0x12, 0x16, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, | |
| 0x09, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x72, 0x6f, | |
| 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, | |
| 0x6f, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x4d, 0x0a, 0x16, 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, | |
| 0x6e, 0x41, 0x72, 0x72, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, | |
| 0x12, 0x16, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x08, | |
| 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x70, | |
| 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, | |
| 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xea, 0x04, 0x0a, 0x15, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, | |
| 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, | |
| 0x45, 0x0a, 0x12, 0x6e, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x66, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, | |
| 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67, 0x6f, | |
| 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, | |
| 0x72, 0x75, 0x63, 0x74, 0x52, 0x10, 0x6e, 0x6f, 0x6e, 0x52, 0x65, 0x66, 0x50, 0x72, 0x6f, 0x70, | |
| 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x5a, 0x0a, 0x17, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, | |
| 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, | |
| 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, | |
| 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x41, 0x72, 0x72, 0x61, | |
| 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x15, 0x6e, 0x75, 0x6d, | |
| 0x62, 0x65, 0x72, 0x41, 0x72, 0x72, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, | |
| 0x65, 0x73, 0x12, 0x51, 0x0a, 0x14, 0x69, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, | |
| 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, | |
| 0x32, 0x1f, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x49, | |
| 0x6e, 0x74, 0x41, 0x72, 0x72, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, | |
| 0x73, 0x52, 0x12, 0x69, 0x6e, 0x74, 0x41, 0x72, 0x72, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, | |
| 0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x15, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x61, 0x72, | |
| 0x72, 0x61, 0x79, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x04, | |
| 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, | |
| 0x76, 0x31, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x41, 0x72, 0x72, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x70, | |
| 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x13, 0x74, 0x65, 0x78, 0x74, 0x41, 0x72, 0x72, 0x61, | |
| 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x5d, 0x0a, 0x18, 0x62, | |
| 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x70, 0x72, 0x6f, | |
| 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, | |
| 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, | |
| 0x65, 0x61, 0x6e, 0x41, 0x72, 0x72, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, | |
| 0x65, 0x73, 0x52, 0x16, 0x62, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x41, 0x72, 0x72, 0x61, 0x79, | |
| 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x4a, 0x0a, 0x11, 0x6f, 0x62, | |
| 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, | |
| 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, | |
| 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, | |
| 0x74, 0x69, 0x65, 0x73, 0x52, 0x10, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x50, 0x72, 0x6f, 0x70, | |
| 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x5a, 0x0a, 0x17, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, | |
| 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, | |
| 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, | |
| 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x41, 0x72, 0x72, 0x61, | |
| 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x15, 0x6f, 0x62, 0x6a, | |
| 0x65, 0x63, 0x74, 0x41, 0x72, 0x72, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, | |
| 0x65, 0x73, 0x22, 0x70, 0x0a, 0x15, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x41, 0x72, 0x72, 0x61, | |
| 0x79, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x3a, 0x0a, 0x06, 0x76, | |
| 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x77, 0x65, | |
| 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, | |
| 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, | |
| 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x70, 0x5f, | |
| 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x70, | |
| 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x69, 0x0a, 0x10, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x50, 0x72, | |
| 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, | |
| 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, | |
| 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x50, 0x72, 0x6f, 0x70, | |
| 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, | |
| 0x75, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, | |
| 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, | |
| 0x23, 0x0a, 0x09, 0x54, 0x65, 0x78, 0x74, 0x41, 0x72, 0x72, 0x61, 0x79, 0x12, 0x16, 0x0a, 0x06, | |
| 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x76, 0x61, | |
| 0x6c, 0x75, 0x65, 0x73, 0x22, 0x22, 0x0a, 0x08, 0x49, 0x6e, 0x74, 0x41, 0x72, 0x72, 0x61, 0x79, | |
| 0x12, 0x16, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, | |
| 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x22, 0x25, 0x0a, 0x0b, 0x4e, 0x75, 0x6d, 0x62, | |
| 0x65, 0x72, 0x41, 0x72, 0x72, 0x61, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, | |
| 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x01, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x22, | |
| 0x26, 0x0a, 0x0c, 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x41, 0x72, 0x72, 0x61, 0x79, 0x12, | |
| 0x16, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x08, 0x52, | |
| 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x22, 0x99, 0x08, 0x0a, 0x07, 0x46, 0x69, 0x6c, 0x74, | |
| 0x65, 0x72, 0x73, 0x12, 0x39, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x18, | |
| 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1d, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, | |
| 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2e, 0x4f, 0x70, 0x65, 0x72, | |
| 0x61, 0x74, 0x6f, 0x72, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x12, | |
| 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x02, | |
| 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, | |
| 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, | |
| 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x74, 0x65, | |
| 0x72, 0x73, 0x12, 0x1f, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x74, 0x65, 0x78, 0x74, | |
| 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x54, | |
| 0x65, 0x78, 0x74, 0x12, 0x1d, 0x0a, 0x09, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x69, 0x6e, 0x74, | |
| 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x08, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x49, | |
| 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, | |
| 0x65, 0x61, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x0c, 0x76, 0x61, 0x6c, | |
| 0x75, 0x65, 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x12, 0x23, 0x0a, 0x0c, 0x76, 0x61, 0x6c, | |
| 0x75, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x48, | |
| 0x00, 0x52, 0x0b, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x42, | |
| 0x0a, 0x10, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x61, 0x72, 0x72, | |
| 0x61, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, | |
| 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x41, 0x72, 0x72, 0x61, 0x79, | |
| 0x48, 0x00, 0x52, 0x0e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x54, 0x65, 0x78, 0x74, 0x41, 0x72, 0x72, | |
| 0x61, 0x79, 0x12, 0x3f, 0x0a, 0x0f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x69, 0x6e, 0x74, 0x5f, | |
| 0x61, 0x72, 0x72, 0x61, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x77, 0x65, | |
| 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x41, 0x72, 0x72, | |
| 0x61, 0x79, 0x48, 0x00, 0x52, 0x0d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x49, 0x6e, 0x74, 0x41, 0x72, | |
| 0x72, 0x61, 0x79, 0x12, 0x4b, 0x0a, 0x13, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x62, 0x6f, 0x6f, | |
| 0x6c, 0x65, 0x61, 0x6e, 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, | |
| 0x32, 0x19, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x42, | |
| 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x41, 0x72, 0x72, 0x61, 0x79, 0x48, 0x00, 0x52, 0x11, 0x76, | |
| 0x61, 0x6c, 0x75, 0x65, 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x41, 0x72, 0x72, 0x61, 0x79, | |
| 0x12, 0x48, 0x0a, 0x12, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, | |
| 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x77, | |
| 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x75, 0x6d, 0x62, 0x65, | |
| 0x72, 0x41, 0x72, 0x72, 0x61, 0x79, 0x48, 0x00, 0x52, 0x10, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x4e, | |
| 0x75, 0x6d, 0x62, 0x65, 0x72, 0x41, 0x72, 0x72, 0x61, 0x79, 0x12, 0x40, 0x0a, 0x09, 0x76, 0x61, | |
| 0x6c, 0x75, 0x65, 0x5f, 0x67, 0x65, 0x6f, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, | |
| 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6f, 0x43, | |
| 0x6f, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x73, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, | |
| 0x48, 0x00, 0x52, 0x08, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x47, 0x65, 0x6f, 0x12, 0x31, 0x0a, 0x06, | |
| 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x77, | |
| 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, | |
| 0x72, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x22, | |
| 0xe3, 0x02, 0x0a, 0x08, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x18, 0x0a, 0x14, | |
| 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, | |
| 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x12, 0x0a, 0x0e, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, | |
| 0x4f, 0x52, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x16, 0x0a, 0x12, 0x4f, 0x50, | |
| 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c, | |
| 0x10, 0x02, 0x12, 0x19, 0x0a, 0x15, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, 0x5f, 0x47, | |
| 0x52, 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x54, 0x48, 0x41, 0x4e, 0x10, 0x03, 0x12, 0x1f, 0x0a, | |
| 0x1b, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, 0x5f, 0x47, 0x52, 0x45, 0x41, 0x54, 0x45, | |
| 0x52, 0x5f, 0x54, 0x48, 0x41, 0x4e, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x10, 0x04, 0x12, 0x16, | |
| 0x0a, 0x12, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, 0x5f, 0x4c, 0x45, 0x53, 0x53, 0x5f, | |
| 0x54, 0x48, 0x41, 0x4e, 0x10, 0x05, 0x12, 0x1c, 0x0a, 0x18, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, | |
| 0x4f, 0x52, 0x5f, 0x4c, 0x45, 0x53, 0x53, 0x5f, 0x54, 0x48, 0x41, 0x4e, 0x5f, 0x45, 0x51, 0x55, | |
| 0x41, 0x4c, 0x10, 0x06, 0x12, 0x10, 0x0a, 0x0c, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, | |
| 0x5f, 0x41, 0x4e, 0x44, 0x10, 0x07, 0x12, 0x0f, 0x0a, 0x0b, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, | |
| 0x4f, 0x52, 0x5f, 0x4f, 0x52, 0x10, 0x08, 0x12, 0x1d, 0x0a, 0x19, 0x4f, 0x50, 0x45, 0x52, 0x41, | |
| 0x54, 0x4f, 0x52, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x49, 0x4e, 0x5f, 0x47, 0x45, 0x4f, 0x5f, 0x52, | |
| 0x41, 0x4e, 0x47, 0x45, 0x10, 0x09, 0x12, 0x11, 0x0a, 0x0d, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, | |
| 0x4f, 0x52, 0x5f, 0x4c, 0x49, 0x4b, 0x45, 0x10, 0x0a, 0x12, 0x14, 0x0a, 0x10, 0x4f, 0x50, 0x45, | |
| 0x52, 0x41, 0x54, 0x4f, 0x52, 0x5f, 0x49, 0x53, 0x5f, 0x4e, 0x55, 0x4c, 0x4c, 0x10, 0x0b, 0x12, | |
| 0x19, 0x0a, 0x15, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, 0x5f, 0x43, 0x4f, 0x4e, 0x54, | |
| 0x41, 0x49, 0x4e, 0x53, 0x5f, 0x41, 0x4e, 0x59, 0x10, 0x0c, 0x12, 0x19, 0x0a, 0x15, 0x4f, 0x50, | |
| 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x49, 0x4e, 0x53, 0x5f, | |
| 0x41, 0x4c, 0x4c, 0x10, 0x0d, 0x42, 0x0c, 0x0a, 0x0a, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x76, 0x61, | |
| 0x6c, 0x75, 0x65, 0x22, 0x60, 0x0a, 0x1b, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x65, 0x66, | |
| 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x54, 0x61, 0x72, 0x67, | |
| 0x65, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, | |
| 0x6f, 0x6e, 0x12, 0x31, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, | |
| 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, | |
| 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x06, 0x74, | |
| 0x61, 0x72, 0x67, 0x65, 0x74, 0x22, 0x8c, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, | |
| 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x54, 0x61, | |
| 0x72, 0x67, 0x65, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, | |
| 0x52, 0x02, 0x6f, 0x6e, 0x12, 0x31, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x02, | |
| 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, | |
| 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, | |
| 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x2b, 0x0a, 0x11, 0x74, 0x61, 0x72, 0x67, 0x65, | |
| 0x74, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, | |
| 0x28, 0x09, 0x52, 0x10, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, | |
| 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xd5, 0x01, 0x0a, 0x0c, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, | |
| 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x1c, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, | |
| 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x65, | |
| 0x72, 0x74, 0x79, 0x12, 0x4f, 0x0a, 0x0d, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x74, 0x61, | |
| 0x72, 0x67, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x77, 0x65, 0x61, | |
| 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, | |
| 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x54, 0x61, | |
| 0x72, 0x67, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0c, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x54, 0x61, | |
| 0x72, 0x67, 0x65, 0x74, 0x12, 0x4c, 0x0a, 0x0c, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x74, 0x61, | |
| 0x72, 0x67, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x77, 0x65, 0x61, | |
| 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, | |
| 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x54, 0x61, 0x72, | |
| 0x67, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x54, 0x61, 0x72, 0x67, | |
| 0x65, 0x74, 0x42, 0x08, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x22, 0x6c, 0x0a, 0x14, | |
| 0x47, 0x65, 0x6f, 0x43, 0x6f, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x73, 0x46, 0x69, | |
| 0x6c, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, | |
| 0x18, 0x01, 0x20, 0x01, 0x28, 0x02, 0x52, 0x08, 0x6c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, | |
| 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x02, 0x20, | |
| 0x01, 0x28, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x12, 0x1a, | |
| 0x0a, 0x08, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x02, | |
| 0x52, 0x08, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x2a, 0x89, 0x01, 0x0a, 0x10, 0x43, | |
| 0x6f, 0x6e, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x63, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, | |
| 0x21, 0x0a, 0x1d, 0x43, 0x4f, 0x4e, 0x53, 0x49, 0x53, 0x54, 0x45, 0x4e, 0x43, 0x59, 0x5f, 0x4c, | |
| 0x45, 0x56, 0x45, 0x4c, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, | |
| 0x10, 0x00, 0x12, 0x19, 0x0a, 0x15, 0x43, 0x4f, 0x4e, 0x53, 0x49, 0x53, 0x54, 0x45, 0x4e, 0x43, | |
| 0x59, 0x5f, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x5f, 0x4f, 0x4e, 0x45, 0x10, 0x01, 0x12, 0x1c, 0x0a, | |
| 0x18, 0x43, 0x4f, 0x4e, 0x53, 0x49, 0x53, 0x54, 0x45, 0x4e, 0x43, 0x59, 0x5f, 0x4c, 0x45, 0x56, | |
| 0x45, 0x4c, 0x5f, 0x51, 0x55, 0x4f, 0x52, 0x55, 0x4d, 0x10, 0x02, 0x12, 0x19, 0x0a, 0x15, 0x43, | |
| 0x4f, 0x4e, 0x53, 0x49, 0x53, 0x54, 0x45, 0x4e, 0x43, 0x59, 0x5f, 0x4c, 0x45, 0x56, 0x45, 0x4c, | |
| 0x5f, 0x41, 0x4c, 0x4c, 0x10, 0x03, 0x42, 0x6e, 0x0a, 0x23, 0x69, 0x6f, 0x2e, 0x77, 0x65, 0x61, | |
| 0x76, 0x69, 0x61, 0x74, 0x65, 0x2e, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x72, 0x70, | |
| 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e, 0x76, 0x31, 0x42, 0x11, 0x57, | |
| 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x42, 0x61, 0x73, 0x65, | |
| 0x5a, 0x34, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x77, 0x65, 0x61, | |
| 0x76, 0x69, 0x61, 0x74, 0x65, 0x2f, 0x77, 0x65, 0x61, 0x76, 0x69, 0x61, 0x74, 0x65, 0x2f, 0x67, | |
| 0x72, 0x70, 0x63, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x3b, 0x70, 0x72, | |
| 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, | |
| } | |
| var ( | |
| file_v1_base_proto_rawDescOnce sync.Once | |
| file_v1_base_proto_rawDescData = file_v1_base_proto_rawDesc | |
| ) | |
| func file_v1_base_proto_rawDescGZIP() []byte { | |
| file_v1_base_proto_rawDescOnce.Do(func() { | |
| file_v1_base_proto_rawDescData = protoimpl.X.CompressGZIP(file_v1_base_proto_rawDescData) | |
| }) | |
| return file_v1_base_proto_rawDescData | |
| } | |
| var file_v1_base_proto_enumTypes = make([]protoimpl.EnumInfo, 2) | |
| var file_v1_base_proto_msgTypes = make([]protoimpl.MessageInfo, 16) | |
| var file_v1_base_proto_goTypes = []interface{}{ | |
| (ConsistencyLevel)(0), // 0: weaviate.v1.ConsistencyLevel | |
| (Filters_Operator)(0), // 1: weaviate.v1.Filters.Operator | |
| (*NumberArrayProperties)(nil), // 2: weaviate.v1.NumberArrayProperties | |
| (*IntArrayProperties)(nil), // 3: weaviate.v1.IntArrayProperties | |
| (*TextArrayProperties)(nil), // 4: weaviate.v1.TextArrayProperties | |
| (*BooleanArrayProperties)(nil), // 5: weaviate.v1.BooleanArrayProperties | |
| (*ObjectPropertiesValue)(nil), // 6: weaviate.v1.ObjectPropertiesValue | |
| (*ObjectArrayProperties)(nil), // 7: weaviate.v1.ObjectArrayProperties | |
| (*ObjectProperties)(nil), // 8: weaviate.v1.ObjectProperties | |
| (*TextArray)(nil), // 9: weaviate.v1.TextArray | |
| (*IntArray)(nil), // 10: weaviate.v1.IntArray | |
| (*NumberArray)(nil), // 11: weaviate.v1.NumberArray | |
| (*BooleanArray)(nil), // 12: weaviate.v1.BooleanArray | |
| (*Filters)(nil), // 13: weaviate.v1.Filters | |
| (*FilterReferenceSingleTarget)(nil), // 14: weaviate.v1.FilterReferenceSingleTarget | |
| (*FilterReferenceMultiTarget)(nil), // 15: weaviate.v1.FilterReferenceMultiTarget | |
| (*FilterTarget)(nil), // 16: weaviate.v1.FilterTarget | |
| (*GeoCoordinatesFilter)(nil), // 17: weaviate.v1.GeoCoordinatesFilter | |
| (*structpb.Struct)(nil), // 18: google.protobuf.Struct | |
| } | |
| var file_v1_base_proto_depIdxs = []int32{ | |
| 18, // 0: weaviate.v1.ObjectPropertiesValue.non_ref_properties:type_name -> google.protobuf.Struct | |
| 2, // 1: weaviate.v1.ObjectPropertiesValue.number_array_properties:type_name -> weaviate.v1.NumberArrayProperties | |
| 3, // 2: weaviate.v1.ObjectPropertiesValue.int_array_properties:type_name -> weaviate.v1.IntArrayProperties | |
| 4, // 3: weaviate.v1.ObjectPropertiesValue.text_array_properties:type_name -> weaviate.v1.TextArrayProperties | |
| 5, // 4: weaviate.v1.ObjectPropertiesValue.boolean_array_properties:type_name -> weaviate.v1.BooleanArrayProperties | |
| 8, // 5: weaviate.v1.ObjectPropertiesValue.object_properties:type_name -> weaviate.v1.ObjectProperties | |
| 7, // 6: weaviate.v1.ObjectPropertiesValue.object_array_properties:type_name -> weaviate.v1.ObjectArrayProperties | |
| 6, // 7: weaviate.v1.ObjectArrayProperties.values:type_name -> weaviate.v1.ObjectPropertiesValue | |
| 6, // 8: weaviate.v1.ObjectProperties.value:type_name -> weaviate.v1.ObjectPropertiesValue | |
| 1, // 9: weaviate.v1.Filters.operator:type_name -> weaviate.v1.Filters.Operator | |
| 13, // 10: weaviate.v1.Filters.filters:type_name -> weaviate.v1.Filters | |
| 9, // 11: weaviate.v1.Filters.value_text_array:type_name -> weaviate.v1.TextArray | |
| 10, // 12: weaviate.v1.Filters.value_int_array:type_name -> weaviate.v1.IntArray | |
| 12, // 13: weaviate.v1.Filters.value_boolean_array:type_name -> weaviate.v1.BooleanArray | |
| 11, // 14: weaviate.v1.Filters.value_number_array:type_name -> weaviate.v1.NumberArray | |
| 17, // 15: weaviate.v1.Filters.value_geo:type_name -> weaviate.v1.GeoCoordinatesFilter | |
| 16, // 16: weaviate.v1.Filters.target:type_name -> weaviate.v1.FilterTarget | |
| 16, // 17: weaviate.v1.FilterReferenceSingleTarget.target:type_name -> weaviate.v1.FilterTarget | |
| 16, // 18: weaviate.v1.FilterReferenceMultiTarget.target:type_name -> weaviate.v1.FilterTarget | |
| 14, // 19: weaviate.v1.FilterTarget.single_target:type_name -> weaviate.v1.FilterReferenceSingleTarget | |
| 15, // 20: weaviate.v1.FilterTarget.multi_target:type_name -> weaviate.v1.FilterReferenceMultiTarget | |
| 21, // [21:21] is the sub-list for method output_type | |
| 21, // [21:21] is the sub-list for method input_type | |
| 21, // [21:21] is the sub-list for extension type_name | |
| 21, // [21:21] is the sub-list for extension extendee | |
| 0, // [0:21] is the sub-list for field type_name | |
| } | |
| func init() { file_v1_base_proto_init() } | |
| func file_v1_base_proto_init() { | |
| if File_v1_base_proto != nil { | |
| return | |
| } | |
| if !protoimpl.UnsafeEnabled { | |
| file_v1_base_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*NumberArrayProperties); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*IntArrayProperties); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*TextArrayProperties); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*BooleanArrayProperties); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*ObjectPropertiesValue); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*ObjectArrayProperties); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*ObjectProperties); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*TextArray); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*IntArray); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*NumberArray); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*BooleanArray); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*Filters); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*FilterReferenceSingleTarget); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*FilterReferenceMultiTarget); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*FilterTarget); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { | |
| switch v := v.(*GeoCoordinatesFilter); i { | |
| case 0: | |
| return &v.state | |
| case 1: | |
| return &v.sizeCache | |
| case 2: | |
| return &v.unknownFields | |
| default: | |
| return nil | |
| } | |
| } | |
| } | |
| file_v1_base_proto_msgTypes[11].OneofWrappers = []interface{}{ | |
| (*Filters_ValueText)(nil), | |
| (*Filters_ValueInt)(nil), | |
| (*Filters_ValueBoolean)(nil), | |
| (*Filters_ValueNumber)(nil), | |
| (*Filters_ValueTextArray)(nil), | |
| (*Filters_ValueIntArray)(nil), | |
| (*Filters_ValueBooleanArray)(nil), | |
| (*Filters_ValueNumberArray)(nil), | |
| (*Filters_ValueGeo)(nil), | |
| } | |
| file_v1_base_proto_msgTypes[14].OneofWrappers = []interface{}{ | |
| (*FilterTarget_Property)(nil), | |
| (*FilterTarget_SingleTarget)(nil), | |
| (*FilterTarget_MultiTarget)(nil), | |
| } | |
| type x struct{} | |
| out := protoimpl.TypeBuilder{ | |
| File: protoimpl.DescBuilder{ | |
| GoPackagePath: reflect.TypeOf(x{}).PkgPath(), | |
| RawDescriptor: file_v1_base_proto_rawDesc, | |
| NumEnums: 2, | |
| NumMessages: 16, | |
| NumExtensions: 0, | |
| NumServices: 0, | |
| }, | |
| GoTypes: file_v1_base_proto_goTypes, | |
| DependencyIndexes: file_v1_base_proto_depIdxs, | |
| EnumInfos: file_v1_base_proto_enumTypes, | |
| MessageInfos: file_v1_base_proto_msgTypes, | |
| }.Build() | |
| File_v1_base_proto = out.File | |
| file_v1_base_proto_rawDesc = nil | |
| file_v1_base_proto_goTypes = nil | |
| file_v1_base_proto_depIdxs = nil | |
| } | |