@ -83,62 +83,6 @@ func (Condition_State) EnumDescriptor() ([]byte, []int) {
return file_pbresource_resource_proto_rawDescGZIP ( ) , [ ] int { 5 , 0 }
}
// Operation describes the type of event.
type WatchEvent_Operation int32
const (
// OPERATION_UNSPECIFIED is the default/zero value. You should not see it
// in practice.
WatchEvent_OPERATION_UNSPECIFIED WatchEvent_Operation = 0
// OPERATION_UPSERT indicates that the resource was written (i.e. created or
// updated). All events from the initial state-of-the-world will be upsert
// events.
WatchEvent_OPERATION_UPSERT WatchEvent_Operation = 1
// OPERATION_DELETED indicates that the resource was deleted.
WatchEvent_OPERATION_DELETE WatchEvent_Operation = 2
)
// Enum value maps for WatchEvent_Operation.
var (
WatchEvent_Operation_name = map [ int32 ] string {
0 : "OPERATION_UNSPECIFIED" ,
1 : "OPERATION_UPSERT" ,
2 : "OPERATION_DELETE" ,
}
WatchEvent_Operation_value = map [ string ] int32 {
"OPERATION_UNSPECIFIED" : 0 ,
"OPERATION_UPSERT" : 1 ,
"OPERATION_DELETE" : 2 ,
}
)
func ( x WatchEvent_Operation ) Enum ( ) * WatchEvent_Operation {
p := new ( WatchEvent_Operation )
* p = x
return p
}
func ( x WatchEvent_Operation ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( WatchEvent_Operation ) Descriptor ( ) protoreflect . EnumDescriptor {
return file_pbresource_resource_proto_enumTypes [ 1 ] . Descriptor ( )
}
func ( WatchEvent_Operation ) Type ( ) protoreflect . EnumType {
return & file_pbresource_resource_proto_enumTypes [ 1 ]
}
func ( x WatchEvent_Operation ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use WatchEvent_Operation.Descriptor instead.
func ( WatchEvent_Operation ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_pbresource_resource_proto_rawDescGZIP ( ) , [ ] int { 21 , 0 }
}
// Type describes a resource's type. It follows the GVK (Group Version Kind)
// [pattern](https://book.kubebuilder.io/cronjob-tutorial/gvks.html) established
// by Kubernetes.
@ -1490,10 +1434,12 @@ type WatchEvent struct {
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Operation describes the type of event.
Operation WatchEvent_Operation ` protobuf:"varint,1,opt,name=operation,proto3,enum=hashicorp.consul.resource.WatchEvent_Operation" json:"operation,omitempty" `
// Resource the event relates to.
Resource * Resource ` protobuf:"bytes,2,opt,name=resource,proto3" json:"resource,omitempty" `
// Types that are assignable to Event:
//
// *WatchEvent_Upsert_
// *WatchEvent_Delete_
// *WatchEvent_EndOfSnapshot_
Event isWatchEvent_Event ` protobuf_oneof:"event" `
}
func ( x * WatchEvent ) Reset ( ) {
@ -1528,20 +1474,56 @@ func (*WatchEvent) Descriptor() ([]byte, []int) {
return file_pbresource_resource_proto_rawDescGZIP ( ) , [ ] int { 21 }
}
func ( x * WatchEvent ) GetOperation ( ) WatchEvent_Operation {
if x != nil {
return x. Operation
func ( m * WatchEvent ) GetEvent ( ) isWatchEvent_Event {
if m != nil {
return m. Event
}
return WatchEvent_OPERATION_UNSPECIFIED
return nil
}
func ( x * WatchEvent ) GetResource ( ) * Resource {
if x != nil {
return x . Resource
func ( x * WatchEvent ) GetUpsert ( ) * WatchEvent_Upsert {
if x , ok := x . GetEvent ( ) . ( * WatchEvent_Upsert_ ) ; ok {
return x . Upsert
}
return nil
}
func ( x * WatchEvent ) GetDelete ( ) * WatchEvent_Delete {
if x , ok := x . GetEvent ( ) . ( * WatchEvent_Delete_ ) ; ok {
return x . Delete
}
return nil
}
func ( x * WatchEvent ) GetEndOfSnapshot ( ) * WatchEvent_EndOfSnapshot {
if x , ok := x . GetEvent ( ) . ( * WatchEvent_EndOfSnapshot_ ) ; ok {
return x . EndOfSnapshot
}
return nil
}
type isWatchEvent_Event interface {
isWatchEvent_Event ( )
}
type WatchEvent_Upsert_ struct {
Upsert * WatchEvent_Upsert ` protobuf:"bytes,1,opt,name=upsert,proto3,oneof" `
}
type WatchEvent_Delete_ struct {
Delete * WatchEvent_Delete ` protobuf:"bytes,2,opt,name=delete,proto3,oneof" `
}
type WatchEvent_EndOfSnapshot_ struct {
EndOfSnapshot * WatchEvent_EndOfSnapshot ` protobuf:"bytes,3,opt,name=end_of_snapshot,json=endOfSnapshot,proto3,oneof" `
}
func ( * WatchEvent_Upsert_ ) isWatchEvent_Event ( ) { }
func ( * WatchEvent_Delete_ ) isWatchEvent_Event ( ) { }
func ( * WatchEvent_EndOfSnapshot_ ) isWatchEvent_Event ( ) { }
// MutateAndValidateRequest contains the parameters to the MutateAndValidate endpoint.
type MutateAndValidateRequest struct {
state protoimpl . MessageState
@ -1638,6 +1620,144 @@ func (x *MutateAndValidateResponse) GetResource() *Resource {
return nil
}
// Upsert indicates that the resource was written (i.e. created or
// updated). All events from the initial state-of-the-world will be upsert
// events.
type WatchEvent_Upsert struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Resource * Resource ` protobuf:"bytes,1,opt,name=resource,proto3" json:"resource,omitempty" `
}
func ( x * WatchEvent_Upsert ) Reset ( ) {
* x = WatchEvent_Upsert { }
if protoimpl . UnsafeEnabled {
mi := & file_pbresource_resource_proto_msgTypes [ 26 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * WatchEvent_Upsert ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * WatchEvent_Upsert ) ProtoMessage ( ) { }
func ( x * WatchEvent_Upsert ) ProtoReflect ( ) protoreflect . Message {
mi := & file_pbresource_resource_proto_msgTypes [ 26 ]
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 WatchEvent_Upsert.ProtoReflect.Descriptor instead.
func ( * WatchEvent_Upsert ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_pbresource_resource_proto_rawDescGZIP ( ) , [ ] int { 21 , 0 }
}
func ( x * WatchEvent_Upsert ) GetResource ( ) * Resource {
if x != nil {
return x . Resource
}
return nil
}
// Delete indicates that the resource was deleted.
type WatchEvent_Delete struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Resource * Resource ` protobuf:"bytes,1,opt,name=resource,proto3" json:"resource,omitempty" `
}
func ( x * WatchEvent_Delete ) Reset ( ) {
* x = WatchEvent_Delete { }
if protoimpl . UnsafeEnabled {
mi := & file_pbresource_resource_proto_msgTypes [ 27 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * WatchEvent_Delete ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * WatchEvent_Delete ) ProtoMessage ( ) { }
func ( x * WatchEvent_Delete ) ProtoReflect ( ) protoreflect . Message {
mi := & file_pbresource_resource_proto_msgTypes [ 27 ]
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 WatchEvent_Delete.ProtoReflect.Descriptor instead.
func ( * WatchEvent_Delete ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_pbresource_resource_proto_rawDescGZIP ( ) , [ ] int { 21 , 1 }
}
func ( x * WatchEvent_Delete ) GetResource ( ) * Resource {
if x != nil {
return x . Resource
}
return nil
}
// EndOfSnapshot is sent to indicate that the initial snapshot events have
// been sent and future events will modify that set.
type WatchEvent_EndOfSnapshot struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
}
func ( x * WatchEvent_EndOfSnapshot ) Reset ( ) {
* x = WatchEvent_EndOfSnapshot { }
if protoimpl . UnsafeEnabled {
mi := & file_pbresource_resource_proto_msgTypes [ 28 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * WatchEvent_EndOfSnapshot ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * WatchEvent_EndOfSnapshot ) ProtoMessage ( ) { }
func ( x * WatchEvent_EndOfSnapshot ) ProtoReflect ( ) protoreflect . Message {
mi := & file_pbresource_resource_proto_msgTypes [ 28 ]
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 WatchEvent_EndOfSnapshot.ProtoReflect.Descriptor instead.
func ( * WatchEvent_EndOfSnapshot ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_pbresource_resource_proto_rawDescGZIP ( ) , [ ] int { 21 , 2 }
}
var File_pbresource_resource_proto protoreflect . FileDescriptor
var file_pbresource_resource_proto_rawDesc = [ ] byte {
@ -1825,106 +1945,118 @@ var file_pbresource_resource_proto_rawDesc = []byte{
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x54 , 0x65 , 0x6e , 0x61 , 0x6e , 0x63 , 0x79 ,
0x52 , 0x07 , 0x74 , 0x65 , 0x6e , 0x61 , 0x6e , 0x63 , 0x79 , 0x12 , 0x1f , 0x0a , 0x0b , 0x6e , 0x61 , 0x6d ,
0x65 , 0x5f , 0x70 , 0x72 , 0x65 , 0x66 , 0x69 , 0x78 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0a ,
0x6e , 0x61 , 0x6d , 0x65 , 0x50 , 0x72 , 0x65 , 0x66 , 0x69 , 0x78 , 0x22 , 0xf0 , 0x01 , 0x0a , 0x0a , 0x57 ,
0x61 , 0x74 , 0x63 , 0x68 , 0x45 , 0x76 , 0x65 , 0x6e , 0x74 , 0x12 , 0x4d , 0x0a , 0x09 , 0x6f , 0x70 , 0x65 ,
0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0e , 0x32 , 0x2f , 0x2e , 0x68 ,
0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x45 , 0x76 ,
0x65 , 0x6e , 0x74 , 0x2e , 0x4f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x09 , 0x6f ,
0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x3f , 0x0a , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x23 , 0x2e , 0x68 , 0x61 , 0x73 ,
0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 ,
0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x52 ,
0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x22 , 0x52 , 0x0a , 0x09 , 0x4f , 0x70 , 0x65 ,
0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x19 , 0x0a , 0x15 , 0x4f , 0x50 , 0x45 , 0x52 , 0x41 , 0x54 ,
0x49 , 0x4f , 0x4e , 0x5f , 0x55 , 0x4e , 0x53 , 0x50 , 0x45 , 0x43 , 0x49 , 0x46 , 0x49 , 0x45 , 0x44 , 0x10 ,
0x00 , 0x12 , 0x14 , 0x0a , 0x10 , 0x4f , 0x50 , 0x45 , 0x52 , 0x41 , 0x54 , 0x49 , 0x4f , 0x4e , 0x5f , 0x55 ,
0x50 , 0x53 , 0x45 , 0x52 , 0x54 , 0x10 , 0x01 , 0x12 , 0x14 , 0x0a , 0x10 , 0x4f , 0x50 , 0x45 , 0x52 , 0x41 ,
0x54 , 0x49 , 0x4f , 0x4e , 0x5f , 0x44 , 0x45 , 0x4c , 0x45 , 0x54 , 0x45 , 0x10 , 0x02 , 0x22 , 0x5b , 0x0a ,
0x18 , 0x4d , 0x75 , 0x74 , 0x61 , 0x74 , 0x65 , 0x41 , 0x6e , 0x64 , 0x56 , 0x61 , 0x6c , 0x69 , 0x64 , 0x61 ,
0x74 , 0x65 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x3f , 0x0a , 0x08 , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x23 , 0x2e , 0x68 , 0x61 ,
0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 ,
0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x52 , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x22 , 0x5c , 0x0a , 0x19 , 0x4d , 0x75 ,
0x74 , 0x61 , 0x74 , 0x65 , 0x41 , 0x6e , 0x64 , 0x56 , 0x61 , 0x6c , 0x69 , 0x64 , 0x61 , 0x74 , 0x65 , 0x52 ,
0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x3f , 0x0a , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x23 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 ,
0x6e , 0x61 , 0x6d , 0x65 , 0x50 , 0x72 , 0x65 , 0x66 , 0x69 , 0x78 , 0x22 , 0xab , 0x03 , 0x0a , 0x0a , 0x57 ,
0x61 , 0x74 , 0x63 , 0x68 , 0x45 , 0x76 , 0x65 , 0x6e , 0x74 , 0x12 , 0x46 , 0x0a , 0x06 , 0x75 , 0x70 , 0x73 ,
0x65 , 0x72 , 0x74 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x2c , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 ,
0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x52 , 0x08 ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x32 , 0x8e , 0x07 , 0x0a , 0x0f , 0x52 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x53 , 0x65 , 0x72 , 0x76 , 0x69 , 0x63 , 0x65 , 0x12 , 0x61 , 0x0a , 0x04 ,
0x52 , 0x65 , 0x61 , 0x64 , 0x12 , 0x26 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x45 , 0x76 , 0x65 , 0x6e , 0x74 ,
0x2e , 0x55 , 0x70 , 0x73 , 0x65 , 0x72 , 0x74 , 0x48 , 0x00 , 0x52 , 0x06 , 0x75 , 0x70 , 0x73 , 0x65 , 0x72 ,
0x74 , 0x12 , 0x46 , 0x0a , 0x06 , 0x64 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 ,
0x0b , 0x32 , 0x2c , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f ,
0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x61 ,
0x74 , 0x63 , 0x68 , 0x45 , 0x76 , 0x65 , 0x6e , 0x74 , 0x2e , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x48 ,
0x00 , 0x52 , 0x06 , 0x64 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x12 , 0x5d , 0x0a , 0x0f , 0x65 , 0x6e , 0x64 ,
0x5f , 0x6f , 0x66 , 0x5f , 0x73 , 0x6e , 0x61 , 0x70 , 0x73 , 0x68 , 0x6f , 0x74 , 0x18 , 0x03 , 0x20 , 0x01 ,
0x28 , 0x0b , 0x32 , 0x33 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 ,
0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 ,
0x61 , 0x74 , 0x63 , 0x68 , 0x45 , 0x76 , 0x65 , 0x6e , 0x74 , 0x2e , 0x45 , 0x6e , 0x64 , 0x4f , 0x66 , 0x53 ,
0x6e , 0x61 , 0x70 , 0x73 , 0x68 , 0x6f , 0x74 , 0x48 , 0x00 , 0x52 , 0x0d , 0x65 , 0x6e , 0x64 , 0x4f , 0x66 ,
0x53 , 0x6e , 0x61 , 0x70 , 0x73 , 0x68 , 0x6f , 0x74 , 0x1a , 0x49 , 0x0a , 0x06 , 0x55 , 0x70 , 0x73 , 0x65 ,
0x72 , 0x74 , 0x12 , 0x3f , 0x0a , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x18 , 0x01 ,
0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x23 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 ,
0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x2e , 0x52 , 0x65 , 0x61 , 0x64 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x27 , 0x2e , 0x68 ,
0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x61 , 0x64 , 0x52 , 0x65 , 0x73 ,
0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x02 , 0x10 , 0x0b , 0x12 ,
0x64 , 0x0a , 0x05 , 0x57 , 0x72 , 0x69 , 0x74 , 0x65 , 0x12 , 0x27 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 ,
0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x72 , 0x69 , 0x74 , 0x65 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 ,
0x74 , 0x1a , 0x28 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f ,
0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x72 ,
0x69 , 0x74 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 ,
0x04 , 0x08 , 0x03 , 0x10 , 0x0b , 0x12 , 0x76 , 0x0a , 0x0b , 0x57 , 0x72 , 0x69 , 0x74 , 0x65 , 0x53 , 0x74 ,
0x61 , 0x74 , 0x75 , 0x73 , 0x12 , 0x2d , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 ,
0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x52 , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x1a , 0x49 , 0x0a , 0x06 , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x12 , 0x3f , 0x0a ,
0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 ,
0x23 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 ,
0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x52 , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x1a , 0x0f ,
0x0a , 0x0d , 0x45 , 0x6e , 0x64 , 0x4f , 0x66 , 0x53 , 0x6e , 0x61 , 0x70 , 0x73 , 0x68 , 0x6f , 0x74 , 0x42 ,
0x07 , 0x0a , 0x05 , 0x65 , 0x76 , 0x65 , 0x6e , 0x74 , 0x22 , 0x5b , 0x0a , 0x18 , 0x4d , 0x75 , 0x74 , 0x61 ,
0x74 , 0x65 , 0x41 , 0x6e , 0x64 , 0x56 , 0x61 , 0x6c , 0x69 , 0x64 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x71 ,
0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x3f , 0x0a , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x23 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f ,
0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x52 , 0x08 , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x22 , 0x5c , 0x0a , 0x19 , 0x4d , 0x75 , 0x74 , 0x61 , 0x74 , 0x65 , 0x41 ,
0x6e , 0x64 , 0x56 , 0x61 , 0x6c , 0x69 , 0x64 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e ,
0x73 , 0x65 , 0x12 , 0x3f , 0x0a , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x18 , 0x01 ,
0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x23 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 ,
0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x2e , 0x57 , 0x72 , 0x69 , 0x74 , 0x65 , 0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x73 , 0x74 , 0x1a , 0x2e , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e ,
0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x52 , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x32 , 0x8e , 0x07 , 0x0a , 0x0f , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x53 , 0x65 , 0x72 , 0x76 , 0x69 , 0x63 , 0x65 , 0x12 , 0x61 , 0x0a , 0x04 , 0x52 , 0x65 , 0x61 , 0x64 , 0x12 ,
0x26 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 ,
0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x61 , 0x64 ,
0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x27 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 ,
0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x61 , 0x64 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 ,
0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x02 , 0x10 , 0x0b , 0x12 , 0x64 , 0x0a , 0x05 , 0x57 , 0x72 ,
0x69 , 0x74 , 0x65 , 0x12 , 0x27 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e ,
0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e ,
0x57 , 0x72 , 0x69 , 0x74 , 0x65 , 0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f ,
0x6e , 0x73 , 0x65 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x03 , 0x10 , 0x0b , 0x12 , 0x61 , 0x0a ,
0x04 , 0x4c , 0x69 , 0x73 , 0x74 , 0x12 , 0x26 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 ,
0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x27 , 0x2e ,
0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c ,
0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x52 , 0x65 ,
0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x02 , 0x10 , 0x0b ,
0x12 , 0x76 , 0x0a , 0x0b , 0x4c , 0x69 , 0x73 , 0x74 , 0x42 , 0x79 , 0x4f , 0x77 , 0x6e , 0x65 , 0x72 , 0x12 ,
0x2d , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 ,
0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 ,
0x42 , 0x79 , 0x4f , 0x77 , 0x6e , 0x65 , 0x72 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x2e ,
0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 ,
0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x42 ,
0x79 , 0x4f , 0x77 , 0x6e , 0x65 , 0x72 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x08 ,
0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x02 , 0x10 , 0x0b , 0x12 , 0x67 , 0x0a , 0x06 , 0x44 , 0x65 , 0x6c , 0x65 ,
0x74 , 0x65 , 0x12 , 0x28 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 ,
0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x44 ,
0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x29 , 0x2e , 0x68 ,
0x57 , 0x72 , 0x69 , 0x74 , 0x65 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x28 , 0x2e , 0x68 ,
0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x52 ,
0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x03 , 0x10 ,
0x0b , 0x12 , 0x6b , 0x0a , 0x09 , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x4c , 0x69 , 0x73 , 0x74 , 0x12 , 0x2b ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x72 , 0x69 , 0x74 , 0x65 , 0x52 , 0x65 ,
0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x03 , 0x10 , 0x0b ,
0x12 , 0x76 , 0x0a , 0x0b , 0x57 , 0x72 , 0x69 , 0x74 , 0x65 , 0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x12 ,
0x2d , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 ,
0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x72 , 0x69 , 0x74 ,
0x65 , 0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x2e ,
0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 ,
0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 ,
0x4c , 0x69 , 0x73 , 0x74 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x25 , 0x2e , 0x68 , 0x61 ,
0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 ,
0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x45 , 0x76 , 0x65 ,
0x6e , 0x74 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x02 , 0x10 , 0x0b , 0x30 , 0x01 , 0x12 , 0x88 ,
0x01 , 0x0a , 0x11 , 0x4d , 0x75 , 0x74 , 0x61 , 0x74 , 0x65 , 0x41 , 0x6e , 0x64 , 0x56 , 0x61 , 0x6c , 0x69 ,
0x64 , 0x61 , 0x74 , 0x65 , 0x12 , 0x33 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 ,
0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x72 , 0x69 , 0x74 , 0x65 ,
0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x08 ,
0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x03 , 0x10 , 0x0b , 0x12 , 0x61 , 0x0a , 0x04 , 0x4c , 0x69 , 0x73 , 0x74 ,
0x12 , 0x26 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e ,
0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x73 ,
0x74 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x27 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 ,
0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 ,
0x65 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x02 , 0x10 , 0x0b , 0x12 , 0x76 , 0x0a , 0x0b , 0x4c ,
0x69 , 0x73 , 0x74 , 0x42 , 0x79 , 0x4f , 0x77 , 0x6e , 0x65 , 0x72 , 0x12 , 0x2d , 0x2e , 0x68 , 0x61 , 0x73 ,
0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 ,
0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x42 , 0x79 , 0x4f , 0x77 , 0x6e ,
0x65 , 0x72 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x2e , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 ,
0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x42 , 0x79 , 0x4f , 0x77 , 0x6e , 0x65 ,
0x72 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 ,
0x02 , 0x10 , 0x0b , 0x12 , 0x67 , 0x0a , 0x06 , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x12 , 0x28 , 0x2e ,
0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c ,
0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 ,
0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x29 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 ,
0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x2e , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e ,
0x73 , 0x65 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x03 , 0x10 , 0x0b , 0x12 , 0x6b , 0x0a , 0x09 ,
0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x4c , 0x69 , 0x73 , 0x74 , 0x12 , 0x2b , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 ,
0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x4c , 0x69 , 0x73 , 0x74 , 0x52 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x25 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f ,
0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x2e , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x45 , 0x76 , 0x65 , 0x6e , 0x74 , 0x22 , 0x08 , 0xe2 ,
0x86 , 0x04 , 0x04 , 0x08 , 0x02 , 0x10 , 0x0b , 0x30 , 0x01 , 0x12 , 0x88 , 0x01 , 0x0a , 0x11 , 0x4d , 0x75 ,
0x74 , 0x61 , 0x74 , 0x65 , 0x41 , 0x6e , 0x64 , 0x56 , 0x61 , 0x6c , 0x69 , 0x64 , 0x61 , 0x74 , 0x65 , 0x12 ,
0x33 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 ,
0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4d , 0x75 , 0x74 , 0x61 ,
0x74 , 0x65 , 0x41 , 0x6e , 0x64 , 0x56 , 0x61 , 0x6c , 0x69 , 0x64 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x71 ,
0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x34 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 ,
0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x2e , 0x4d , 0x75 , 0x74 , 0x61 , 0x74 , 0x65 , 0x41 , 0x6e , 0x64 , 0x56 , 0x61 , 0x6c , 0x69 , 0x64 , 0x61 ,
0x74 , 0x65 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x34 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 ,
0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4d , 0x75 , 0x74 , 0x61 , 0x74 , 0x65 , 0x41 , 0x6e , 0x64 , 0x56 ,
0x61 , 0x6c , 0x69 , 0x64 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 ,
0x08 , 0xe2 , 0x86 , 0x04 , 0x04 , 0x08 , 0x02 , 0x10 , 0x0b , 0x42 , 0xe9 , 0x01 , 0x0a , 0x1d , 0x63 , 0x6f ,
0x6d , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 ,
0x75 , 0x6c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x42 , 0x0d , 0x52 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x50 , 0x72 , 0x6f , 0x74 , 0x6f , 0x50 , 0x01 , 0x5a , 0x33 , 0x67 , 0x69 ,
0x74 , 0x68 , 0x75 , 0x62 , 0x2e , 0x63 , 0x6f , 0x6d , 0x2f , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f ,
0x72 , 0x70 , 0x2f , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2f , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x2d ,
0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x2f , 0x70 , 0x62 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0xa2 , 0x02 , 0x03 , 0x48 , 0x43 , 0x52 , 0xaa , 0x02 , 0x19 , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 ,
0x6f , 0x72 , 0x70 , 0x2e , 0x43 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0xca , 0x02 , 0x19 , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x5c ,
0x43 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x5c , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0xe2 ,
0x02 , 0x25 , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x5c , 0x43 , 0x6f , 0x6e , 0x73 ,
0x75 , 0x6c , 0x5c , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5c , 0x47 , 0x50 , 0x42 , 0x4d ,
0x65 , 0x74 , 0x61 , 0x64 , 0x61 , 0x74 , 0x61 , 0xea , 0x02 , 0x1b , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 ,
0x6f , 0x72 , 0x70 , 0x3a , 0x3a , 0x43 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x3a , 0x3a , 0x52 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
0x74 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x08 , 0xe2 , 0x86 , 0x04 , 0x04 ,
0x08 , 0x02 , 0x10 , 0x0b , 0x42 , 0xe9 , 0x01 , 0x0a , 0x1d , 0x63 , 0x6f , 0x6d , 0x2e , 0x68 , 0x61 , 0x73 ,
0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x72 , 0x65 ,
0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x42 , 0x0d , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x50 , 0x72 , 0x6f , 0x74 , 0x6f , 0x50 , 0x01 , 0x5a , 0x33 , 0x67 , 0x69 , 0x74 , 0x68 , 0x75 , 0x62 , 0x2e ,
0x63 , 0x6f , 0x6d , 0x2f , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2f , 0x63 , 0x6f ,
0x6e , 0x73 , 0x75 , 0x6c , 0x2f , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x2d , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 ,
0x63 , 0x2f , 0x70 , 0x62 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0xa2 , 0x02 , 0x03 , 0x48 ,
0x43 , 0x52 , 0xaa , 0x02 , 0x19 , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x43 ,
0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0xca , 0x02 ,
0x19 , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x5c , 0x43 , 0x6f , 0x6e , 0x73 , 0x75 ,
0x6c , 0x5c , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0xe2 , 0x02 , 0x25 , 0x48 , 0x61 , 0x73 ,
0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x5c , 0x43 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x5c , 0x52 , 0x65 ,
0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5c , 0x47 , 0x50 , 0x42 , 0x4d , 0x65 , 0x74 , 0x61 , 0x64 , 0x61 ,
0x74 , 0x61 , 0xea , 0x02 , 0x1b , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x3a , 0x3a ,
0x43 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x3a , 0x3a , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
}
var (
@ -1939,96 +2071,101 @@ func file_pbresource_resource_proto_rawDescGZIP() []byte {
return file_pbresource_resource_proto_rawDescData
}
var file_pbresource_resource_proto_enumTypes = make ( [ ] protoimpl . EnumInfo , 2 )
var file_pbresource_resource_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 2 6 )
var file_pbresource_resource_proto_enumTypes = make ( [ ] protoimpl . EnumInfo , 1 )
var file_pbresource_resource_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 2 9 )
var file_pbresource_resource_proto_goTypes = [ ] interface { } {
( Condition_State ) ( 0 ) , // 0: hashicorp.consul.resource.Condition.State
( WatchEvent_Operation ) ( 0 ) , // 1: hashicorp.consul.resource.WatchEvent.Operation
( * Type ) ( nil ) , // 2: hashicorp.consul.resource.Type
( * Tenancy ) ( nil ) , // 3: hashicorp.consul.resource.Tenancy
( * ID ) ( nil ) , // 4: hashicorp.consul.resource.ID
( * Resource ) ( nil ) , // 5: hashicorp.consul.resource.Resource
( * Status ) ( nil ) , // 6: hashicorp.consul.resource.Status
( * Condition ) ( nil ) , // 7: hashicorp.consul.resource.Condition
( * Reference ) ( nil ) , // 8: hashicorp.consul.resource.Reference
( * Tombstone ) ( nil ) , // 9: hashicorp.consul.resource.Tombstone
( * ReadRequest ) ( nil ) , // 10: hashicorp.consul.resource.ReadRequest
( * ReadResponse ) ( nil ) , // 11: hashicorp.consul.resource.ReadResponse
( * ListRequest ) ( nil ) , // 12: hashicorp.consul.resource.ListRequest
( * ListResponse ) ( nil ) , // 13: hashicorp.consul.resource.ListResponse
( * ListByOwnerRequest ) ( nil ) , // 14: hashicorp.consul.resource.ListByOwnerRequest
( * ListByOwnerResponse ) ( nil ) , // 15: hashicorp.consul.resource.ListByOwnerResponse
( * WriteRequest ) ( nil ) , // 16: hashicorp.consul.resource.WriteRequest
( * WriteResponse ) ( nil ) , // 17: hashicorp.consul.resource.WriteResponse
( * WriteStatusRequest ) ( nil ) , // 18: hashicorp.consul.resource.WriteStatusRequest
( * WriteStatusResponse ) ( nil ) , // 19: hashicorp.consul.resource.WriteStatusResponse
( * DeleteRequest ) ( nil ) , // 20: hashicorp.consul.resource.DeleteRequest
( * DeleteResponse ) ( nil ) , // 21: hashicorp.consul.resource.DeleteResponse
( * WatchListRequest ) ( nil ) , // 22: hashicorp.consul.resource.WatchListRequest
( * WatchEvent ) ( nil ) , // 23: hashicorp.consul.resource.WatchEvent
( * MutateAndValidateRequest ) ( nil ) , // 24: hashicorp.consul.resource.MutateAndValidateRequest
( * MutateAndValidateResponse ) ( nil ) , // 25: hashicorp.consul.resource.MutateAndValidateResponse
nil , // 26: hashicorp.consul.resource.Resource.MetadataEntry
nil , // 27: hashicorp.consul.resource.Resource.StatusEntry
( * anypb . Any ) ( nil ) , // 28: google.protobuf.Any
( * timestamppb . Timestamp ) ( nil ) , // 29: google.protobuf.Timestamp
( * Type ) ( nil ) , // 1: hashicorp.consul.resource.Type
( * Tenancy ) ( nil ) , // 2: hashicorp.consul.resource.Tenancy
( * ID ) ( nil ) , // 3: hashicorp.consul.resource.ID
( * Resource ) ( nil ) , // 4: hashicorp.consul.resource.Resource
( * Status ) ( nil ) , // 5: hashicorp.consul.resource.Status
( * Condition ) ( nil ) , // 6: hashicorp.consul.resource.Condition
( * Reference ) ( nil ) , // 7: hashicorp.consul.resource.Reference
( * Tombstone ) ( nil ) , // 8: hashicorp.consul.resource.Tombstone
( * ReadRequest ) ( nil ) , // 9: hashicorp.consul.resource.ReadRequest
( * ReadResponse ) ( nil ) , // 10: hashicorp.consul.resource.ReadResponse
( * ListRequest ) ( nil ) , // 11: hashicorp.consul.resource.ListRequest
( * ListResponse ) ( nil ) , // 12: hashicorp.consul.resource.ListResponse
( * ListByOwnerRequest ) ( nil ) , // 13: hashicorp.consul.resource.ListByOwnerRequest
( * ListByOwnerResponse ) ( nil ) , // 14: hashicorp.consul.resource.ListByOwnerResponse
( * WriteRequest ) ( nil ) , // 15: hashicorp.consul.resource.WriteRequest
( * WriteResponse ) ( nil ) , // 16: hashicorp.consul.resource.WriteResponse
( * WriteStatusRequest ) ( nil ) , // 17: hashicorp.consul.resource.WriteStatusRequest
( * WriteStatusResponse ) ( nil ) , // 18: hashicorp.consul.resource.WriteStatusResponse
( * DeleteRequest ) ( nil ) , // 19: hashicorp.consul.resource.DeleteRequest
( * DeleteResponse ) ( nil ) , // 20: hashicorp.consul.resource.DeleteResponse
( * WatchListRequest ) ( nil ) , // 21: hashicorp.consul.resource.WatchListRequest
( * WatchEvent ) ( nil ) , // 22: hashicorp.consul.resource.WatchEvent
( * MutateAndValidateRequest ) ( nil ) , // 23: hashicorp.consul.resource.MutateAndValidateRequest
( * MutateAndValidateResponse ) ( nil ) , // 24: hashicorp.consul.resource.MutateAndValidateResponse
nil , // 25: hashicorp.consul.resource.Resource.MetadataEntry
nil , // 26: hashicorp.consul.resource.Resource.StatusEntry
( * WatchEvent_Upsert ) ( nil ) , // 27: hashicorp.consul.resource.WatchEvent.Upsert
( * WatchEvent_Delete ) ( nil ) , // 28: hashicorp.consul.resource.WatchEvent.Delete
( * WatchEvent_EndOfSnapshot ) ( nil ) , // 29: hashicorp.consul.resource.WatchEvent.EndOfSnapshot
( * anypb . Any ) ( nil ) , // 30: google.protobuf.Any
( * timestamppb . Timestamp ) ( nil ) , // 31: google.protobuf.Timestamp
}
var file_pbresource_resource_proto_depIdxs = [ ] int32 {
2 , // 0: hashicorp.consul.resource.ID.type:type_name -> hashicorp.consul.resource.Type
3 , // 1: hashicorp.consul.resource.ID.tenancy:type_name -> hashicorp.consul.resource.Tenancy
4 , // 2: hashicorp.consul.resource.Resource.id:type_name -> hashicorp.consul.resource.ID
4 , // 3: hashicorp.consul.resource.Resource.owner:type_name -> hashicorp.consul.resource.ID
2 6 , // 4: hashicorp.consul.resource.Resource.metadata:type_name -> hashicorp.consul.resource.Resource.MetadataEntry
2 7 , // 5: hashicorp.consul.resource.Resource.status:type_name -> hashicorp.consul.resource.Resource.StatusEntry
28 , // 6: hashicorp.consul.resource.Resource.data:type_name -> google.protobuf.Any
7 , // 7: hashicorp.consul.resource.Status.conditions:type_name -> hashicorp.consul.resource.Condition
29 , // 8: hashicorp.consul.resource.Status.updated_at:type_name -> google.protobuf.Timestamp
1 , // 0: hashicorp.consul.resource.ID.type:type_name -> hashicorp.consul.resource.Type
2 , // 1: hashicorp.consul.resource.ID.tenancy:type_name -> hashicorp.consul.resource.Tenancy
3 , // 2: hashicorp.consul.resource.Resource.id:type_name -> hashicorp.consul.resource.ID
3 , // 3: hashicorp.consul.resource.Resource.owner:type_name -> hashicorp.consul.resource.ID
2 5 , // 4: hashicorp.consul.resource.Resource.metadata:type_name -> hashicorp.consul.resource.Resource.MetadataEntry
2 6 , // 5: hashicorp.consul.resource.Resource.status:type_name -> hashicorp.consul.resource.Resource.StatusEntry
30 , // 6: hashicorp.consul.resource.Resource.data:type_name -> google.protobuf.Any
6 , // 7: hashicorp.consul.resource.Status.conditions:type_name -> hashicorp.consul.resource.Condition
31 , // 8: hashicorp.consul.resource.Status.updated_at:type_name -> google.protobuf.Timestamp
0 , // 9: hashicorp.consul.resource.Condition.state:type_name -> hashicorp.consul.resource.Condition.State
8 , // 10: hashicorp.consul.resource.Condition.resource:type_name -> hashicorp.consul.resource.Reference
2 , // 11: hashicorp.consul.resource.Reference.type:type_name -> hashicorp.consul.resource.Type
3 , // 12: hashicorp.consul.resource.Reference.tenancy:type_name -> hashicorp.consul.resource.Tenancy
4 , // 13: hashicorp.consul.resource.Tombstone.owner:type_name -> hashicorp.consul.resource.ID
4 , // 14: hashicorp.consul.resource.ReadRequest.id:type_name -> hashicorp.consul.resource.ID
5 , // 15: hashicorp.consul.resource.ReadResponse.resource:type_name -> hashicorp.consul.resource.Resource
2 , // 16: hashicorp.consul.resource.ListRequest.type:type_name -> hashicorp.consul.resource.Type
3 , // 17: hashicorp.consul.resource.ListRequest.tenancy:type_name -> hashicorp.consul.resource.Tenancy
5 , // 18: hashicorp.consul.resource.ListResponse.resources:type_name -> hashicorp.consul.resource.Resource
4 , // 19: hashicorp.consul.resource.ListByOwnerRequest.owner:type_name -> hashicorp.consul.resource.ID
5 , // 20: hashicorp.consul.resource.ListByOwnerResponse.resources:type_name -> hashicorp.consul.resource.Resource
5 , // 21: hashicorp.consul.resource.WriteRequest.resource:type_name -> hashicorp.consul.resource.Resource
5 , // 22: hashicorp.consul.resource.WriteResponse.resource:type_name -> hashicorp.consul.resource.Resource
4 , // 23: hashicorp.consul.resource.WriteStatusRequest.id:type_name -> hashicorp.consul.resource.ID
6 , // 24: hashicorp.consul.resource.WriteStatusRequest.status:type_name -> hashicorp.consul.resource.Status
5 , // 25: hashicorp.consul.resource.WriteStatusResponse.resource:type_name -> hashicorp.consul.resource.Resource
4 , // 26: hashicorp.consul.resource.DeleteRequest.id:type_name -> hashicorp.consul.resource.ID
2 , // 27: hashicorp.consul.resource.WatchListRequest.type:type_name -> hashicorp.consul.resource.Type
3 , // 28: hashicorp.consul.resource.WatchListRequest.tenancy:type_name -> hashicorp.consul.resource.Tenancy
1 , // 29: hashicorp.consul.resource.WatchEvent.operation:type_name -> hashicorp.consul.resource.WatchEvent.Operation
5 , // 30: hashicorp.consul.resource.WatchEvent.resource:type_name -> hashicorp.consul.resource.Resource
5 , // 31: hashicorp.consul.resource.MutateAndValidateRequest.resource:type_name -> hashicorp.consul.resource.Resource
5 , // 32: hashicorp.consul.resource.MutateAndValidateResponse.resource:type_name -> hashicorp.consul.resource.Resource
6 , // 33: hashicorp.consul.resource.Resource.StatusEntry.value:type_name -> hashicorp.consul.resource.Status
10 , // 34: hashicorp.consul.resource.ResourceService.Read:input_type -> hashicorp.consul.resource.ReadRequest
16 , // 35: hashicorp.consul.resource.ResourceService.Write:input_type -> hashicorp.consul.resource.WriteRequest
18 , // 36: hashicorp.consul.resource.ResourceService.WriteStatus:input_type -> hashicorp.consul.resource.WriteStatusRequest
12 , // 37: hashicorp.consul.resource.ResourceService.List:input_type -> hashicorp.consul.resource.ListRequest
14 , // 38: hashicorp.consul.resource.ResourceService.ListByOwner:input_type -> hashicorp.consul.resource.ListByOwnerRequest
20 , // 39: hashicorp.consul.resource.ResourceService.Delete:input_type -> hashicorp.consul.resource.DeleteRequest
22 , // 40: hashicorp.consul.resource.ResourceService.WatchList:input_type -> hashicorp.consul.resource.WatchListRequest
24 , // 41: hashicorp.consul.resource.ResourceService.MutateAndValidate:input_type -> hashicorp.consul.resource.MutateAndValidateRequest
11 , // 42: hashicorp.consul.resource.ResourceService.Read:output_type -> hashicorp.consul.resource.ReadResponse
17 , // 43: hashicorp.consul.resource.ResourceService.Write:output_type -> hashicorp.consul.resource.WriteResponse
19 , // 44: hashicorp.consul.resource.ResourceService.WriteStatus:output_type -> hashicorp.consul.resource.WriteStatusResponse
13 , // 45: hashicorp.consul.resource.ResourceService.List:output_type -> hashicorp.consul.resource.ListResponse
15 , // 46: hashicorp.consul.resource.ResourceService.ListByOwner:output_type -> hashicorp.consul.resource.ListByOwnerResponse
21 , // 47: hashicorp.consul.resource.ResourceService.Delete:output_type -> hashicorp.consul.resource.DeleteResponse
23 , // 48: hashicorp.consul.resource.ResourceService.WatchList:output_type -> hashicorp.consul.resource.WatchEvent
25 , // 49: hashicorp.consul.resource.ResourceService.MutateAndValidate:output_type -> hashicorp.consul.resource.MutateAndValidateResponse
42 , // [42:50] is the sub-list for method output_type
34 , // [34:42] is the sub-list for method input_type
34 , // [34:34] is the sub-list for extension type_name
34 , // [34:34] is the sub-list for extension extendee
0 , // [0:34] is the sub-list for field type_name
7 , // 10: hashicorp.consul.resource.Condition.resource:type_name -> hashicorp.consul.resource.Reference
1 , // 11: hashicorp.consul.resource.Reference.type:type_name -> hashicorp.consul.resource.Type
2 , // 12: hashicorp.consul.resource.Reference.tenancy:type_name -> hashicorp.consul.resource.Tenancy
3 , // 13: hashicorp.consul.resource.Tombstone.owner:type_name -> hashicorp.consul.resource.ID
3 , // 14: hashicorp.consul.resource.ReadRequest.id:type_name -> hashicorp.consul.resource.ID
4 , // 15: hashicorp.consul.resource.ReadResponse.resource:type_name -> hashicorp.consul.resource.Resource
1 , // 16: hashicorp.consul.resource.ListRequest.type:type_name -> hashicorp.consul.resource.Type
2 , // 17: hashicorp.consul.resource.ListRequest.tenancy:type_name -> hashicorp.consul.resource.Tenancy
4 , // 18: hashicorp.consul.resource.ListResponse.resources:type_name -> hashicorp.consul.resource.Resource
3 , // 19: hashicorp.consul.resource.ListByOwnerRequest.owner:type_name -> hashicorp.consul.resource.ID
4 , // 20: hashicorp.consul.resource.ListByOwnerResponse.resources:type_name -> hashicorp.consul.resource.Resource
4 , // 21: hashicorp.consul.resource.WriteRequest.resource:type_name -> hashicorp.consul.resource.Resource
4 , // 22: hashicorp.consul.resource.WriteResponse.resource:type_name -> hashicorp.consul.resource.Resource
3 , // 23: hashicorp.consul.resource.WriteStatusRequest.id:type_name -> hashicorp.consul.resource.ID
5 , // 24: hashicorp.consul.resource.WriteStatusRequest.status:type_name -> hashicorp.consul.resource.Status
4 , // 25: hashicorp.consul.resource.WriteStatusResponse.resource:type_name -> hashicorp.consul.resource.Resource
3 , // 26: hashicorp.consul.resource.DeleteRequest.id:type_name -> hashicorp.consul.resource.ID
1 , // 27: hashicorp.consul.resource.WatchListRequest.type:type_name -> hashicorp.consul.resource.Type
2 , // 28: hashicorp.consul.resource.WatchListRequest.tenancy:type_name -> hashicorp.consul.resource.Tenancy
27 , // 29: hashicorp.consul.resource.WatchEvent.upsert:type_name -> hashicorp.consul.resource.WatchEvent.Upsert
28 , // 30: hashicorp.consul.resource.WatchEvent.delete:type_name -> hashicorp.consul.resource.WatchEvent.Delete
29 , // 31: hashicorp.consul.resource.WatchEvent.end_of_snapshot:type_name -> hashicorp.consul.resource.WatchEvent.EndOfSnapshot
4 , // 32: hashicorp.consul.resource.MutateAndValidateRequest.resource:type_name -> hashicorp.consul.resource.Resource
4 , // 33: hashicorp.consul.resource.MutateAndValidateResponse.resource:type_name -> hashicorp.consul.resource.Resource
5 , // 34: hashicorp.consul.resource.Resource.StatusEntry.value:type_name -> hashicorp.consul.resource.Status
4 , // 35: hashicorp.consul.resource.WatchEvent.Upsert.resource:type_name -> hashicorp.consul.resource.Resource
4 , // 36: hashicorp.consul.resource.WatchEvent.Delete.resource:type_name -> hashicorp.consul.resource.Resource
9 , // 37: hashicorp.consul.resource.ResourceService.Read:input_type -> hashicorp.consul.resource.ReadRequest
15 , // 38: hashicorp.consul.resource.ResourceService.Write:input_type -> hashicorp.consul.resource.WriteRequest
17 , // 39: hashicorp.consul.resource.ResourceService.WriteStatus:input_type -> hashicorp.consul.resource.WriteStatusRequest
11 , // 40: hashicorp.consul.resource.ResourceService.List:input_type -> hashicorp.consul.resource.ListRequest
13 , // 41: hashicorp.consul.resource.ResourceService.ListByOwner:input_type -> hashicorp.consul.resource.ListByOwnerRequest
19 , // 42: hashicorp.consul.resource.ResourceService.Delete:input_type -> hashicorp.consul.resource.DeleteRequest
21 , // 43: hashicorp.consul.resource.ResourceService.WatchList:input_type -> hashicorp.consul.resource.WatchListRequest
23 , // 44: hashicorp.consul.resource.ResourceService.MutateAndValidate:input_type -> hashicorp.consul.resource.MutateAndValidateRequest
10 , // 45: hashicorp.consul.resource.ResourceService.Read:output_type -> hashicorp.consul.resource.ReadResponse
16 , // 46: hashicorp.consul.resource.ResourceService.Write:output_type -> hashicorp.consul.resource.WriteResponse
18 , // 47: hashicorp.consul.resource.ResourceService.WriteStatus:output_type -> hashicorp.consul.resource.WriteStatusResponse
12 , // 48: hashicorp.consul.resource.ResourceService.List:output_type -> hashicorp.consul.resource.ListResponse
14 , // 49: hashicorp.consul.resource.ResourceService.ListByOwner:output_type -> hashicorp.consul.resource.ListByOwnerResponse
20 , // 50: hashicorp.consul.resource.ResourceService.Delete:output_type -> hashicorp.consul.resource.DeleteResponse
22 , // 51: hashicorp.consul.resource.ResourceService.WatchList:output_type -> hashicorp.consul.resource.WatchEvent
24 , // 52: hashicorp.consul.resource.ResourceService.MutateAndValidate:output_type -> hashicorp.consul.resource.MutateAndValidateResponse
45 , // [45:53] is the sub-list for method output_type
37 , // [37:45] is the sub-list for method input_type
37 , // [37:37] is the sub-list for extension type_name
37 , // [37:37] is the sub-list for extension extendee
0 , // [0:37] is the sub-list for field type_name
}
func init ( ) { file_pbresource_resource_proto_init ( ) }
@ -2325,14 +2462,55 @@ func file_pbresource_resource_proto_init() {
return nil
}
}
file_pbresource_resource_proto_msgTypes [ 26 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * WatchEvent_Upsert ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_pbresource_resource_proto_msgTypes [ 27 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * WatchEvent_Delete ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_pbresource_resource_proto_msgTypes [ 28 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * WatchEvent_EndOfSnapshot ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
}
file_pbresource_resource_proto_msgTypes [ 21 ] . OneofWrappers = [ ] interface { } {
( * WatchEvent_Upsert_ ) ( nil ) ,
( * WatchEvent_Delete_ ) ( nil ) ,
( * WatchEvent_EndOfSnapshot_ ) ( nil ) ,
}
type x struct { }
out := protoimpl . TypeBuilder {
File : protoimpl . DescBuilder {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_pbresource_resource_proto_rawDesc ,
NumEnums : 2 ,
NumMessages : 26 ,
NumEnums : 1 ,
NumMessages : 2 9 ,
NumExtensions : 0 ,
NumServices : 1 ,
} ,