@ -155,7 +155,7 @@ func (x *HostCatalog) GetAttributes() []byte {
return nil
}
type Host struct {
type Host Set struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
@ -183,13 +183,16 @@ type Host struct {
// version allows optimistic locking of the resource
// @inject_tag: `gorm:"default:null"`
Version uint32 ` protobuf:"varint,7,opt,name=version,proto3" json:"version,omitempty" gorm:"default:null" `
// address is the IP Address or DNS name of the host.
// @inject_tag: `gorm:"default:null"`
Address string ` protobuf:"bytes,8,opt,name=address,proto3" json:"address,omitempty" gorm:"default:null" `
// attributes is a byte field containing marshaled JSON data
// @inject_tag: `gorm:"not_null"`
Attributes [ ] byte ` protobuf:"bytes,8,opt,name=attributes,proto3" json:"attributes,omitempty" gorm:"not_null" `
// preferred_endpoints stores string preference values
// @inject_tag: `gorm:"-"`
PreferredEndpoints [ ] string ` protobuf:"bytes,9,rep,name=preferred_endpoints,json=preferredEndpoints,proto3" json:"preferred_endpoints,omitempty" gorm:"-" `
}
func ( x * Host ) Reset ( ) {
* x = Host { }
func ( x * Host Set ) Reset ( ) {
* x = Host Set { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 1 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
@ -197,13 +200,13 @@ func (x *Host) Reset() {
}
}
func ( x * Host ) String ( ) string {
func ( x * Host Set ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Host ) ProtoMessage ( ) { }
func ( * Host Set ) ProtoMessage ( ) { }
func ( x * Host ) ProtoReflect ( ) protoreflect . Message {
func ( x * Host Set ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 1 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
@ -215,68 +218,178 @@ func (x *Host) ProtoReflect() protoreflect.Message {
return mi . MessageOf ( x )
}
// Deprecated: Use Host .ProtoReflect.Descriptor instead.
func ( * Host ) Descriptor ( ) ( [ ] byte , [ ] int ) {
// Deprecated: Use Host Set .ProtoReflect.Descriptor instead.
func ( * Host Set ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_storage_host_plugin_store_v1_host_proto_rawDescGZIP ( ) , [ ] int { 1 }
}
func ( x * Host ) GetPublicId ( ) string {
func ( x * Host Set ) GetPublicId ( ) string {
if x != nil {
return x . PublicId
}
return ""
}
func ( x * Host ) GetCreateTime ( ) * timestamp . Timestamp {
func ( x * Host Set ) GetCreateTime ( ) * timestamp . Timestamp {
if x != nil {
return x . CreateTime
}
return nil
}
func ( x * Host ) GetUpdateTime ( ) * timestamp . Timestamp {
func ( x * Host Set ) GetUpdateTime ( ) * timestamp . Timestamp {
if x != nil {
return x . UpdateTime
}
return nil
}
func ( x * Host ) GetName ( ) string {
func ( x * Host Set ) GetName ( ) string {
if x != nil {
return x . Name
}
return ""
}
func ( x * Host ) GetDescription ( ) string {
func ( x * Host Set ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * Host ) GetCatalogId ( ) string {
func ( x * Host Set ) GetCatalogId ( ) string {
if x != nil {
return x . CatalogId
}
return ""
}
func ( x * Host ) GetVersion ( ) uint32 {
func ( x * Host Set ) GetVersion ( ) uint32 {
if x != nil {
return x . Version
}
return 0
}
func ( x * Host ) GetAddress ( ) string {
func ( x * HostSet ) GetAttributes ( ) [ ] byte {
if x != nil {
return x . Attributes
}
return nil
}
func ( x * HostSet ) GetPreferredEndpoints ( ) [ ] string {
if x != nil {
return x . Address
return x . PreferredEndpoints
}
return nil
}
type HostCatalogSecret struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// catalog_id is the public id of the catalog containing this secret.
// @inject_tag: `gorm:"primary_key"`
CatalogId string ` protobuf:"bytes,1,opt,name=catalog_id,json=catalogId,proto3" json:"catalog_id,omitempty" gorm:"primary_key" `
// The create_time is set by the database.
// @inject_tag: `gorm:"default:current_timestamp"`
CreateTime * timestamp . Timestamp ` protobuf:"bytes,2,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty" gorm:"default:current_timestamp" `
// The update_time is set by the database.
// @inject_tag: `gorm:"default:current_timestamp"`
UpdateTime * timestamp . Timestamp ` protobuf:"bytes,3,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty" gorm:"default:current_timestamp" `
// attributes is the plain-text of the attribute data. We are not storing
// this plain-text value in the database.
// @inject_tag: `gorm:"-" wrapping:"pt,secret_data"`
Secret [ ] byte ` protobuf:"bytes,4,opt,name=secret,proto3" json:"secret,omitempty" gorm:"-" wrapping:"pt,secret_data" `
// ct_attributes is the ciphertext of the attribute data stored in the db.
// @inject_tag: `gorm:"column:secret;not_null" wrapping:"ct,secret_data"`
CtSecret [ ] byte ` protobuf:"bytes,5,opt,name=ct_secret,json=ctSecret,proto3" json:"ct_secret,omitempty" gorm:"column:secret;not_null" wrapping:"ct,secret_data" `
// The key_id of the kms database key used for encrypting this entry.
// It must be set.
// @inject_tag: `gorm:"not_null"`
KeyId string ` protobuf:"bytes,6,opt,name=key_id,json=keyId,proto3" json:"key_id,omitempty" gorm:"not_null" `
}
func ( x * HostCatalogSecret ) Reset ( ) {
* x = HostCatalogSecret { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 2 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * HostCatalogSecret ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * HostCatalogSecret ) ProtoMessage ( ) { }
func ( x * HostCatalogSecret ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_storage_host_plugin_store_v1_host_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 HostCatalogSecret.ProtoReflect.Descriptor instead.
func ( * HostCatalogSecret ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_storage_host_plugin_store_v1_host_proto_rawDescGZIP ( ) , [ ] int { 2 }
}
func ( x * HostCatalogSecret ) GetCatalogId ( ) string {
if x != nil {
return x . CatalogId
}
return ""
}
type HostSet struct {
func ( x * HostCatalogSecret ) GetCreateTime ( ) * timestamp . Timestamp {
if x != nil {
return x . CreateTime
}
return nil
}
func ( x * HostCatalogSecret ) GetUpdateTime ( ) * timestamp . Timestamp {
if x != nil {
return x . UpdateTime
}
return nil
}
func ( x * HostCatalogSecret ) GetSecret ( ) [ ] byte {
if x != nil {
return x . Secret
}
return nil
}
func ( x * HostCatalogSecret ) GetCtSecret ( ) [ ] byte {
if x != nil {
return x . CtSecret
}
return nil
}
func ( x * HostCatalogSecret ) GetKeyId ( ) string {
if x != nil {
return x . KeyId
}
return ""
}
// TODO: Add a field which tracks if the host in cache should be considered
// invalid and fall back to the plugin provided data.
type Host struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
@ -284,51 +397,55 @@ type HostSet struct {
// public_id is a surrogate key suitable for use in a public API.
// @inject_tag: `gorm:"primary_key"`
PublicId string ` protobuf:"bytes,1,opt,name=public_id,json=publicId,proto3" json:"public_id,omitempty" gorm:"primary_key" `
// external_id is an id provided by the plugin.
// @inject_tag: `gorm:"not_null"`
ExternalId string ` protobuf:"bytes,2,opt,name=external_id,json=externalId,proto3" json:"external_id,omitempty" gorm:"not_null" `
// The create_time is set by the database.
// @inject_tag: `gorm:"default:current_timestamp"`
CreateTime * timestamp . Timestamp ` protobuf:"bytes,2,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty" gorm:"default:current_timestamp" `
CreateTime * timestamp . Timestamp ` protobuf:"bytes, 3 ,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty" gorm:"default:current_timestamp"`
// The update_time is set by the database.
// @inject_tag: `gorm:"default:current_timestamp"`
UpdateTime * timestamp . Timestamp ` protobuf:"bytes, 3 ,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty" gorm:"default:current_timestamp"`
UpdateTime * timestamp . Timestamp ` protobuf:"bytes, 4 ,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty" gorm:"default:current_timestamp"`
// name is optional. If set, it must be unique within
// catalog_id.
// @inject_tag: `gorm:"default:null"`
Name string ` protobuf:"bytes, 4 ,opt,name=name,proto3" json:"name,omitempty" gorm:"default:null"`
Name string ` protobuf:"bytes, 5 ,opt,name=name,proto3" json:"name,omitempty" gorm:"default:null"`
// description is optional.
// @inject_tag: `gorm:"default:null"`
Description string ` protobuf:"bytes, 5 ,opt,name=description,proto3" json:"description,omitempty" gorm:"default:null"`
Description string ` protobuf:"bytes, 6 ,opt,name=description,proto3" json:"description,omitempty" gorm:"default:null"`
// catalog_id is the public_id of the owning
// plugin_host_catalog and must be set.
// @inject_tag: `gorm:"not_null"`
CatalogId string ` protobuf:"bytes,6,opt,name=catalog_id,json=catalogId,proto3" json:"catalog_id,omitempty" gorm:"not_null" `
// version allows optimistic locking of the resource
// @inject_tag: `gorm:"default:null"`
Version uint32 ` protobuf:"varint,7,opt,name=version,proto3" json:"version,omitempty" gorm:"default:null" `
// attributes is a byte field containing marshaled JSON data
// @inject_tag: `gorm:"not_null"`
Attributes [ ] byte ` protobuf:"bytes,8,opt,name=attributes,proto3" json:"attributes,omitempty" gorm:"not_null" `
// preferred_endpoints stores string preference values
CatalogId string ` protobuf:"bytes,7,opt,name=catalog_id,json=catalogId,proto3" json:"catalog_id,omitempty" gorm:"not_null" `
// @inject_tag: `gorm:"-"`
PreferredEndpoints [ ] string ` protobuf:"bytes,9,rep,name=preferred_endpoints,json=preferredEndpoints,proto3" json:"preferred_endpoints,omitempty" gorm:"-" `
Version uint32 ` protobuf:"varint,8,opt,name=version,proto3" json:"version,omitempty" gorm:"-" `
// ip_addresses are the ip addresses associated with this host and will
// be persisted in the db through the HostAddress message.
// @inject_tag: `gorm:"-"`
IpAddresses [ ] string ` protobuf:"bytes,9,rep,name=ip_addresses,json=ipAddresses,proto3" json:"ip_addresses,omitempty" gorm:"-" `
// dns_names are the dns names associated with this host and will
// be persisted in the db through the HostAddress message.
// @inject_tag: `gorm:"-"`
DnsNames [ ] string ` protobuf:"bytes,10,rep,name=dns_names,json=dnsNames,proto3" json:"dns_names,omitempty" gorm:"-" `
}
func ( x * HostSet ) Reset ( ) {
* x = HostSet { }
func ( x * Host ) Reset ( ) {
* x = Host { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 2 ]
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 3 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Host Set ) String ( ) string {
func ( x * Host ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Host Set ) ProtoMessage ( ) { }
func ( * Host ) ProtoMessage ( ) { }
func ( x * Host Set ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 2 ]
func ( x * Host ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 3 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
@ -339,118 +456,111 @@ func (x *HostSet) ProtoReflect() protoreflect.Message {
return mi . MessageOf ( x )
}
// Deprecated: Use Host Set .ProtoReflect.Descriptor instead.
func ( * Host Set ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_storage_host_plugin_store_v1_host_proto_rawDescGZIP ( ) , [ ] int { 2 }
// Deprecated: Use Host .ProtoReflect.Descriptor instead.
func ( * Host ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_storage_host_plugin_store_v1_host_proto_rawDescGZIP ( ) , [ ] int { 3 }
}
func ( x * Host Set ) GetPublicId ( ) string {
func ( x * Host ) GetPublicId ( ) string {
if x != nil {
return x . PublicId
}
return ""
}
func ( x * HostSet ) GetCreateTime ( ) * timestamp . Timestamp {
func ( x * Host ) GetExternalId ( ) string {
if x != nil {
return x . ExternalId
}
return ""
}
func ( x * Host ) GetCreateTime ( ) * timestamp . Timestamp {
if x != nil {
return x . CreateTime
}
return nil
}
func ( x * HostSet ) GetUpdateTime ( ) * timestamp . Timestamp {
func ( x * Host ) GetUpdateTime ( ) * timestamp . Timestamp {
if x != nil {
return x . UpdateTime
}
return nil
}
func ( x * Host Set ) GetName ( ) string {
func ( x * Host ) GetName ( ) string {
if x != nil {
return x . Name
}
return ""
}
func ( x * Host Set ) GetDescription ( ) string {
func ( x * Host ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * Host Set ) GetCatalogId ( ) string {
func ( x * Host ) GetCatalogId ( ) string {
if x != nil {
return x . CatalogId
}
return ""
}
func ( x * Host Set ) GetVersion ( ) uint32 {
func ( x * Host ) GetVersion ( ) uint32 {
if x != nil {
return x . Version
}
return 0
}
func ( x * Host Set) GetAttributes ( ) [ ] byte {
func ( x * Host ) GetIpAddresses ( ) [ ] string {
if x != nil {
return x . Attribut es
return x . IpAddress es
}
return nil
}
func ( x * Host Set) GetPreferredEndpoint s( ) [ ] string {
func ( x * Host ) GetDnsName s( ) [ ] string {
if x != nil {
return x . PreferredEndpoint s
return x . DnsName s
}
return nil
}
type Host Catalog Secre t struct {
type Host SetMember struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// catalog_id is the public id of the catalog containing this secret.
// @inject_tag: `gorm:"primary_key"`
CatalogId string ` protobuf:"bytes,1,opt,name=catalog_id,json=catalogId,proto3" json:"catalog_id,omitempty" gorm:"primary_key" `
// The create_time is set by the database.
// @inject_tag: `gorm:"default:current_timestamp"`
CreateTime * timestamp . Timestamp ` protobuf:"bytes,2,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty" gorm:"default:current_timestamp" `
// The update_time is set by the database.
// @inject_tag: `gorm:"default:current_timestamp"`
UpdateTime * timestamp . Timestamp ` protobuf:"bytes,3,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty" gorm:"default:current_timestamp" `
// attributes is the plain-text of the attribute data. We are not storing
// this plain-text value in the database.
// @inject_tag: `gorm:"-" wrapping:"pt,secret_data"`
Secret [ ] byte ` protobuf:"bytes,4,opt,name=secret,proto3" json:"secret,omitempty" gorm:"-" wrapping:"pt,secret_data" `
// ct_attributes is the ciphertext of the attribute data stored in the db.
// @inject_tag: `gorm:"column:secret;not_null" wrapping:"ct,secret_data"`
CtSecret [ ] byte ` protobuf:"bytes,5,opt,name=ct_secret,json=ctSecret,proto3" json:"ct_secret,omitempty" gorm:"column:secret;not_null" wrapping:"ct,secret_data" `
// The key_id of the kms database key used for encrypting this entry.
// It must be set.
// @inject_tag: `gorm:"not_null"`
KeyId string ` protobuf:"bytes,6,opt,name=key_id,json=keyId,proto3" json:"key_id,omitempty" gorm:"not_null" `
HostId string ` protobuf:"bytes,1,opt,name=host_id,json=hostId,proto3" json:"host_id,omitempty" gorm:"primary_key" `
// @inject_tag: `gorm:"primary_key"`
SetId string ` protobuf:"bytes,2,opt,name=set_id,json=setId,proto3" json:"set_id,omitempty" gorm:"primary_key" `
// @inject_tag: `gorm:"default:null"`
CatalogId string ` protobuf:"bytes,3,opt,name=catalog_id,json=catalogId,proto3" json:"catalog_id,omitempty" gorm:"default:null" `
}
func ( x * Host Catalog Secre t) Reset ( ) {
* x = Host Catalog Secre t{ }
func ( x * HostSetMember ) Reset ( ) {
* x = HostSetMember { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 3 ]
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 4 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Host Catalog Secre t) String ( ) string {
func ( x * HostSetMember ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Host Catalog Secre t) ProtoMessage ( ) { }
func ( * Host SetMember ) ProtoMessage ( ) { }
func ( x * Host Catalog Secre t) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 3 ]
func ( x * Host SetMember ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 4 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
@ -461,49 +571,28 @@ func (x *HostCatalogSecret) ProtoReflect() protoreflect.Message {
return mi . MessageOf ( x )
}
// Deprecated: Use Host Catalog Secre t.ProtoReflect.Descriptor instead.
func ( * Host Catalog Secre t) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_storage_host_plugin_store_v1_host_proto_rawDescGZIP ( ) , [ ] int { 3 }
// Deprecated: Use Host SetMember .ProtoReflect.Descriptor instead.
func ( * Host SetMember ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_storage_host_plugin_store_v1_host_proto_rawDescGZIP ( ) , [ ] int { 4 }
}
func ( x * Host CatalogSecret) GetCatalog Id( ) string {
func ( x * Host SetMember) GetHost Id( ) string {
if x != nil {
return x . Catalog Id
return x . Host Id
}
return ""
}
func ( x * HostCatalogSecret ) GetCreateTime ( ) * timestamp . Timestamp {
if x != nil {
return x . CreateTime
}
return nil
}
func ( x * HostCatalogSecret ) GetUpdateTime ( ) * timestamp . Timestamp {
func ( x * HostSetMember ) GetSetId ( ) string {
if x != nil {
return x . UpdateTime
return x . SetId
}
return nil
}
func ( x * HostCatalogSecret ) GetSecret ( ) [ ] byte {
if x != nil {
return x . Secret
}
return nil
}
func ( x * HostCatalogSecret ) GetCtSecret ( ) [ ] byte {
if x != nil {
return x . CtSecret
}
return nil
return ""
}
func ( x * Host CatalogSecret) GetKey Id( ) string {
func ( x * HostSetMember ) GetCatalogId ( ) string {
if x != nil {
return x . Key Id
return x . CatalogId
}
return ""
}
@ -550,77 +639,88 @@ var file_controller_storage_host_plugin_store_v1_host_proto_rawDesc = []byte{
0x18 , 0x0a , 0x07 , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x0d ,
0x52 , 0x07 , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x1e , 0x0a , 0x0a , 0x61 , 0x74 , 0x74 ,
0x72 , 0x69 , 0x62 , 0x75 , 0x74 , 0x65 , 0x73 , 0x18 , 0x09 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x0a , 0x61 ,
0x74 , 0x74 , 0x72 , 0x69 , 0x62 , 0x75 , 0x74 , 0x65 , 0x73 , 0x22 , 0xc6 , 0x02 , 0x0a , 0x04 , 0x48 , 0x6f ,
0x73 , 0x74 , 0x12 , 0x1b , 0x0a , 0x09 , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x5f , 0x69 , 0x64 , 0x18 ,
0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x08 , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x49 , 0x64 , 0x12 ,
0x4b , 0x0a , 0x0b , 0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x02 ,
0x74 , 0x74 , 0x72 , 0x69 , 0x62 , 0x75 , 0x74 , 0x65 , 0x73 , 0x22 , 0xb2 , 0x03 , 0x0a , 0x07 , 0x48 , 0x6f ,
0x73 , 0x74 , 0x53 , 0x65 , 0x74 , 0x12 , 0x1b , 0x0a , 0x09 , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x5f ,
0x69 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x08 , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 ,
0x49 , 0x64 , 0x12 , 0x4b , 0x0a , 0x0b , 0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d ,
0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x2a , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f ,
0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x73 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x2e , 0x74 , 0x69 , 0x6d ,
0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x2e , 0x76 , 0x31 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 ,
0x61 , 0x6d , 0x70 , 0x52 , 0x0a , 0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 ,
0x4b , 0x0a , 0x0b , 0x75 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x03 ,
0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x2a , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 ,
0x72 , 0x2e , 0x73 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x2e , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 ,
0x61 , 0x6d , 0x70 , 0x2e , 0x76 , 0x31 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 ,
0x52 , 0x0a , 0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x4b , 0x0a , 0x0b ,
0x75 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 ,
0x0b , 0x32 , 0x2a , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x73 ,
0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x2e , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 ,
0x2e , 0x76 , 0x31 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x52 , 0x0a , 0x75 ,
0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d ,
0x65 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x20 , 0x0a ,
0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x05 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 ,
0x1d , 0x0a , 0x0a , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x5f , 0x69 , 0x64 , 0x18 , 0x06 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x49 , 0x64 , 0x12 , 0x18 ,
0x0a , 0x07 , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x0d , 0x52 ,
0x07 , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x18 , 0x0a , 0x07 , 0x61 , 0x64 , 0x64 , 0x72 ,
0x65 , 0x73 , 0x73 , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x61 , 0x64 , 0x64 , 0x72 , 0x65 ,
0x73 , 0x73 , 0x22 , 0xb2 , 0x03 , 0x0a , 0x07 , 0x48 , 0x6f , 0x73 , 0x74 , 0x53 , 0x65 , 0x74 , 0x12 , 0x1b ,
0x0a , 0x09 , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x5f , 0x69 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x08 , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x49 , 0x64 , 0x12 , 0x4b , 0x0a , 0x0b , 0x63 ,
0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b ,
0x32 , 0x2a , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x73 , 0x74 ,
0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x2e , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x2e ,
0x76 , 0x31 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x52 , 0x0a , 0x63 , 0x72 ,
0x65 , 0x61 , 0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x4b , 0x0a , 0x0b , 0x75 , 0x70 , 0x64 , 0x61 ,
0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x2a , 0x2e ,
0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x73 , 0x74 , 0x6f , 0x72 , 0x61 ,
0x67 , 0x65 , 0x2e , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x2e , 0x76 , 0x31 , 0x2e ,
0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x52 , 0x0a , 0x75 , 0x70 , 0x64 , 0x61 , 0x74 ,
0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x24 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x04 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x42 , 0x10 , 0xc2 , 0xdd , 0x29 , 0x0c , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 ,
0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x40 , 0x0a , 0x0b , 0x64 ,
0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x42 , 0x1e , 0xc2 , 0xdd , 0x29 , 0x1a , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 ,
0x69 , 0x6f , 0x6e , 0x12 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e ,
0x52 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x1d , 0x0a ,
0x0a , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x5f , 0x69 , 0x64 , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x09 , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x49 , 0x64 , 0x12 , 0x18 , 0x0a , 0x07 ,
0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x0d , 0x52 , 0x07 , 0x76 ,
0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x1e , 0x0a , 0x0a , 0x61 , 0x74 , 0x74 , 0x72 , 0x69 , 0x62 ,
0x75 , 0x74 , 0x65 , 0x73 , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x0a , 0x61 , 0x74 , 0x74 , 0x72 ,
0x69 , 0x62 , 0x75 , 0x74 , 0x65 , 0x73 , 0x12 , 0x2f , 0x0a , 0x13 , 0x70 , 0x72 , 0x65 , 0x66 , 0x65 , 0x72 ,
0x72 , 0x65 , 0x64 , 0x5f , 0x65 , 0x6e , 0x64 , 0x70 , 0x6f , 0x69 , 0x6e , 0x74 , 0x73 , 0x18 , 0x09 , 0x20 ,
0x03 , 0x28 , 0x09 , 0x52 , 0x12 , 0x70 , 0x72 , 0x65 , 0x66 , 0x65 , 0x72 , 0x72 , 0x65 , 0x64 , 0x45 , 0x6e ,
0x64 , 0x70 , 0x6f , 0x69 , 0x6e , 0x74 , 0x73 , 0x22 , 0x98 , 0x02 , 0x0a , 0x11 , 0x48 , 0x6f , 0x73 , 0x74 ,
0x43 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x53 , 0x65 , 0x63 , 0x72 , 0x65 , 0x74 , 0x12 , 0x1d , 0x0a ,
0x0a , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x5f , 0x69 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x09 , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x49 , 0x64 , 0x12 , 0x4b , 0x0a , 0x0b ,
0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 ,
0x0b , 0x32 , 0x2a , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x73 ,
0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x2e , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 ,
0x2e , 0x76 , 0x31 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x52 , 0x0a , 0x63 ,
0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x4b , 0x0a , 0x0b , 0x75 , 0x70 , 0x64 ,
0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x2a ,
0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x73 , 0x74 , 0x6f , 0x72 ,
0x61 , 0x67 , 0x65 , 0x2e , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x2e , 0x76 , 0x31 ,
0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x52 , 0x0a , 0x75 , 0x70 , 0x64 , 0x61 ,
0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x16 , 0x0a , 0x06 , 0x73 , 0x65 , 0x63 , 0x72 , 0x65 , 0x74 ,
0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x06 , 0x73 , 0x65 , 0x63 , 0x72 , 0x65 , 0x74 , 0x12 , 0x1b ,
0x0a , 0x09 , 0x63 , 0x74 , 0x5f , 0x73 , 0x65 , 0x63 , 0x72 , 0x65 , 0x74 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 ,
0x0c , 0x52 , 0x08 , 0x63 , 0x74 , 0x53 , 0x65 , 0x63 , 0x72 , 0x65 , 0x74 , 0x12 , 0x15 , 0x0a , 0x06 , 0x6b ,
0x65 , 0x79 , 0x5f , 0x69 , 0x64 , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x6b , 0x65 , 0x79 ,
0x49 , 0x64 , 0x42 , 0x40 , 0x5a , 0x3e , 0x67 , 0x69 , 0x74 , 0x68 , 0x75 , 0x62 , 0x2e , 0x63 , 0x6f , 0x6d ,
0x2f , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2f , 0x62 , 0x6f , 0x75 , 0x6e , 0x64 ,
0x61 , 0x72 , 0x79 , 0x2f , 0x69 , 0x6e , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x2f , 0x68 , 0x6f , 0x73 ,
0x74 , 0x2f , 0x70 , 0x6c , 0x75 , 0x67 , 0x69 , 0x6e , 0x2f , 0x73 , 0x74 , 0x6f , 0x72 , 0x65 , 0x3b , 0x73 ,
0x74 , 0x6f , 0x72 , 0x65 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
0x52 , 0x0a , 0x75 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x24 , 0x0a , 0x04 ,
0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x09 , 0x42 , 0x10 , 0xc2 , 0xdd , 0x29 , 0x0c ,
0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x52 , 0x04 , 0x6e , 0x61 ,
0x6d , 0x65 , 0x12 , 0x40 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x09 , 0x42 , 0x1e , 0xc2 , 0xdd , 0x29 , 0x1a , 0x0a , 0x0b , 0x64 ,
0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 ,
0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x1d , 0x0a , 0x0a , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x5f ,
0x69 , 0x64 , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f ,
0x67 , 0x49 , 0x64 , 0x12 , 0x18 , 0x0a , 0x07 , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x07 ,
0x20 , 0x01 , 0x28 , 0x0d , 0x52 , 0x07 , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x1e , 0x0a ,
0x0a , 0x61 , 0x74 , 0x74 , 0x72 , 0x69 , 0x62 , 0x75 , 0x74 , 0x65 , 0x73 , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 ,
0x0c , 0x52 , 0x0a , 0x61 , 0x74 , 0x74 , 0x72 , 0x69 , 0x62 , 0x75 , 0x74 , 0x65 , 0x73 , 0x12 , 0x2f , 0x0a ,
0x13 , 0x70 , 0x72 , 0x65 , 0x66 , 0x65 , 0x72 , 0x72 , 0x65 , 0x64 , 0x5f , 0x65 , 0x6e , 0x64 , 0x70 , 0x6f ,
0x69 , 0x6e , 0x74 , 0x73 , 0x18 , 0x09 , 0x20 , 0x03 , 0x28 , 0x09 , 0x52 , 0x12 , 0x70 , 0x72 , 0x65 , 0x66 ,
0x65 , 0x72 , 0x72 , 0x65 , 0x64 , 0x45 , 0x6e , 0x64 , 0x70 , 0x6f , 0x69 , 0x6e , 0x74 , 0x73 , 0x22 , 0x98 ,
0x02 , 0x0a , 0x11 , 0x48 , 0x6f , 0x73 , 0x74 , 0x43 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x53 , 0x65 ,
0x63 , 0x72 , 0x65 , 0x74 , 0x12 , 0x1d , 0x0a , 0x0a , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x5f ,
0x69 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f ,
0x67 , 0x49 , 0x64 , 0x12 , 0x4b , 0x0a , 0x0b , 0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 ,
0x6d , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x2a , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 ,
0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x73 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x2e , 0x74 , 0x69 ,
0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x2e , 0x76 , 0x31 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 ,
0x74 , 0x61 , 0x6d , 0x70 , 0x52 , 0x0a , 0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 ,
0x12 , 0x4b , 0x0a , 0x0b , 0x75 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 ,
0x03 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x2a , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c ,
0x65 , 0x72 , 0x2e , 0x73 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x2e , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 ,
0x74 , 0x61 , 0x6d , 0x70 , 0x2e , 0x76 , 0x31 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d ,
0x70 , 0x52 , 0x0a , 0x75 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x16 , 0x0a ,
0x06 , 0x73 , 0x65 , 0x63 , 0x72 , 0x65 , 0x74 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x06 , 0x73 ,
0x65 , 0x63 , 0x72 , 0x65 , 0x74 , 0x12 , 0x1b , 0x0a , 0x09 , 0x63 , 0x74 , 0x5f , 0x73 , 0x65 , 0x63 , 0x72 ,
0x65 , 0x74 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x08 , 0x63 , 0x74 , 0x53 , 0x65 , 0x63 , 0x72 ,
0x65 , 0x74 , 0x12 , 0x15 , 0x0a , 0x06 , 0x6b , 0x65 , 0x79 , 0x5f , 0x69 , 0x64 , 0x18 , 0x06 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x05 , 0x6b , 0x65 , 0x79 , 0x49 , 0x64 , 0x22 , 0x8d , 0x03 , 0x0a , 0x04 , 0x48 , 0x6f ,
0x73 , 0x74 , 0x12 , 0x1b , 0x0a , 0x09 , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x5f , 0x69 , 0x64 , 0x18 ,
0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x08 , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x49 , 0x64 , 0x12 ,
0x1f , 0x0a , 0x0b , 0x65 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x5f , 0x69 , 0x64 , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0a , 0x65 , 0x78 , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x49 , 0x64 ,
0x12 , 0x4b , 0x0a , 0x0b , 0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 ,
0x03 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x2a , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c ,
0x65 , 0x72 , 0x2e , 0x73 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x2e , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 ,
0x74 , 0x61 , 0x6d , 0x70 , 0x2e , 0x76 , 0x31 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d ,
0x70 , 0x52 , 0x0a , 0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x4b , 0x0a ,
0x0b , 0x75 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x04 , 0x20 , 0x01 ,
0x28 , 0x0b , 0x32 , 0x2a , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e ,
0x73 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x2e , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d ,
0x70 , 0x2e , 0x76 , 0x31 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x52 , 0x0a ,
0x75 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6e , 0x61 ,
0x6d , 0x65 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x20 ,
0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x06 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e ,
0x12 , 0x1d , 0x0a , 0x0a , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x5f , 0x69 , 0x64 , 0x18 , 0x07 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x49 , 0x64 , 0x12 ,
0x18 , 0x0a , 0x07 , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x0d ,
0x52 , 0x07 , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x21 , 0x0a , 0x0c , 0x69 , 0x70 , 0x5f ,
0x61 , 0x64 , 0x64 , 0x72 , 0x65 , 0x73 , 0x73 , 0x65 , 0x73 , 0x18 , 0x09 , 0x20 , 0x03 , 0x28 , 0x09 , 0x52 ,
0x0b , 0x69 , 0x70 , 0x41 , 0x64 , 0x64 , 0x72 , 0x65 , 0x73 , 0x73 , 0x65 , 0x73 , 0x12 , 0x1b , 0x0a , 0x09 ,
0x64 , 0x6e , 0x73 , 0x5f , 0x6e , 0x61 , 0x6d , 0x65 , 0x73 , 0x18 , 0x0a , 0x20 , 0x03 , 0x28 , 0x09 , 0x52 ,
0x08 , 0x64 , 0x6e , 0x73 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x22 , 0x5e , 0x0a , 0x0d , 0x48 , 0x6f , 0x73 ,
0x74 , 0x53 , 0x65 , 0x74 , 0x4d , 0x65 , 0x6d , 0x62 , 0x65 , 0x72 , 0x12 , 0x17 , 0x0a , 0x07 , 0x68 , 0x6f ,
0x73 , 0x74 , 0x5f , 0x69 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x06 , 0x68 , 0x6f , 0x73 ,
0x74 , 0x49 , 0x64 , 0x12 , 0x15 , 0x0a , 0x06 , 0x73 , 0x65 , 0x74 , 0x5f , 0x69 , 0x64 , 0x18 , 0x02 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x73 , 0x65 , 0x74 , 0x49 , 0x64 , 0x12 , 0x1d , 0x0a , 0x0a , 0x63 , 0x61 ,
0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x5f , 0x69 , 0x64 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x09 ,
0x63 , 0x61 , 0x74 , 0x61 , 0x6c , 0x6f , 0x67 , 0x49 , 0x64 , 0x42 , 0x40 , 0x5a , 0x3e , 0x67 , 0x69 , 0x74 ,
0x68 , 0x75 , 0x62 , 0x2e , 0x63 , 0x6f , 0x6d , 0x2f , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 ,
0x70 , 0x2f , 0x62 , 0x6f , 0x75 , 0x6e , 0x64 , 0x61 , 0x72 , 0x79 , 0x2f , 0x69 , 0x6e , 0x74 , 0x65 , 0x72 ,
0x6e , 0x61 , 0x6c , 0x2f , 0x68 , 0x6f , 0x73 , 0x74 , 0x2f , 0x70 , 0x6c , 0x75 , 0x67 , 0x69 , 0x6e , 0x2f ,
0x73 , 0x74 , 0x6f , 0x72 , 0x65 , 0x3b , 0x73 , 0x74 , 0x6f , 0x72 , 0x65 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x33 ,
}
var (
@ -635,23 +735,24 @@ func file_controller_storage_host_plugin_store_v1_host_proto_rawDescGZIP() []byt
return file_controller_storage_host_plugin_store_v1_host_proto_rawDescData
}
var file_controller_storage_host_plugin_store_v1_host_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 4 )
var file_controller_storage_host_plugin_store_v1_host_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 5 )
var file_controller_storage_host_plugin_store_v1_host_proto_goTypes = [ ] interface { } {
( * HostCatalog ) ( nil ) , // 0: controller.storage.host.plugin.store.v1.HostCatalog
( * Host ) ( nil ) , // 1: controller.storage.host.plugin.store.v1.Host
( * HostSet ) ( nil ) , // 2: controller.storage.host.plugin.store.v1.HostSet
( * HostCatalogSecret ) ( nil ) , // 3: controller.storage.host.plugin.store.v1.HostCatalogSecret
( * timestamp . Timestamp ) ( nil ) , // 4: controller.storage.timestamp.v1.Timestamp
( * HostSet ) ( nil ) , // 1: controller.storage.host.plugin.store.v1.HostSet
( * HostCatalogSecret ) ( nil ) , // 2: controller.storage.host.plugin.store.v1.HostCatalogSecret
( * Host ) ( nil ) , // 3: controller.storage.host.plugin.store.v1.Host
( * HostSetMember ) ( nil ) , // 4: controller.storage.host.plugin.store.v1.HostSetMember
( * timestamp . Timestamp ) ( nil ) , // 5: controller.storage.timestamp.v1.Timestamp
}
var file_controller_storage_host_plugin_store_v1_host_proto_depIdxs = [ ] int32 {
4 , // 0: controller.storage.host.plugin.store.v1.HostCatalog.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
4 , // 1: controller.storage.host.plugin.store.v1.HostCatalog.update_time:type_name -> controller.storage.timestamp.v1.Timestamp
4 , // 2: controller.storage.host.plugin.store.v1.Hos t.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
4 , // 3: controller.storage.host.plugin.store.v1.Hos t.update_time:type_name -> controller.storage.timestamp.v1.Timestamp
4 , // 4: controller.storage.host.plugin.store.v1.Host Set.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
4 , // 5: controller.storage.host.plugin.store.v1.Host Set.update_time:type_name -> controller.storage.timestamp.v1.Timestamp
4 , // 6: controller.storage.host.plugin.store.v1.Hos tCatalogSecre t.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
4 , // 7: controller.storage.host.plugin.store.v1.Hos tCatalogSecre t.update_time:type_name -> controller.storage.timestamp.v1.Timestamp
5 , // 0: controller.storage.host.plugin.store.v1.HostCatalog.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
5 , // 1: controller.storage.host.plugin.store.v1.HostCatalog.update_time:type_name -> controller.storage.timestamp.v1.Timestamp
5 , // 2: controller.storage.host.plugin.store.v1.Hos tSe t.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
5 , // 3: controller.storage.host.plugin.store.v1.Hos tSe t.update_time:type_name -> controller.storage.timestamp.v1.Timestamp
5 , // 4: controller.storage.host.plugin.store.v1.Host Catalog Secr et.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
5 , // 5: controller.storage.host.plugin.store.v1.Host Catalog Secr et.update_time:type_name -> controller.storage.timestamp.v1.Timestamp
5 , // 6: controller.storage.host.plugin.store.v1.Hos t.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
5 , // 7: controller.storage.host.plugin.store.v1.Hos t.update_time:type_name -> controller.storage.timestamp.v1.Timestamp
8 , // [8:8] is the sub-list for method output_type
8 , // [8:8] is the sub-list for method input_type
8 , // [8:8] is the sub-list for extension type_name
@ -678,7 +779,7 @@ func file_controller_storage_host_plugin_store_v1_host_proto_init() {
}
}
file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 1 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Host ) ; i {
switch v := v . ( * Host Set ) ; i {
case 0 :
return & v . state
case 1 :
@ -690,7 +791,7 @@ func file_controller_storage_host_plugin_store_v1_host_proto_init() {
}
}
file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 2 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Host Set) ; i {
switch v := v . ( * Host Catalog Secr et) ; i {
case 0 :
return & v . state
case 1 :
@ -702,7 +803,19 @@ func file_controller_storage_host_plugin_store_v1_host_proto_init() {
}
}
file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 3 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * HostCatalogSecret ) ; i {
switch v := v . ( * Host ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_controller_storage_host_plugin_store_v1_host_proto_msgTypes [ 4 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * HostSetMember ) ; i {
case 0 :
return & v . state
case 1 :
@ -720,7 +833,7 @@ func file_controller_storage_host_plugin_store_v1_host_proto_init() {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_controller_storage_host_plugin_store_v1_host_proto_rawDesc ,
NumEnums : 0 ,
NumMessages : 4 ,
NumMessages : 5 ,
NumExtensions : 0 ,
NumServices : 0 ,
} ,