@ -94,6 +94,10 @@ type Worker struct {
// - not configured: The worker does not have a local storage path configured
// - unknown: The default local storage state of a worker. Used when the local storage state of a worker is not yet known
LocalStorageState string ` protobuf:"bytes,310,opt,name=local_storage_state,proto3" json:"local_storage_state,omitempty" class:"public" ` // @gotags: `class:"public"`
// Output only. The remote_storage_state indicats the permission state of the storage buckets that the Worker
// is actively using. The possible permission state types include: write, read, and delete. The possible
// permission state values include: unknown, error, and ok.
RemoteStorageState map [ string ] * RemoteStorageState ` protobuf:"bytes,320,rep,name=remote_storage_state,proto3" json:"remote_storage_state,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" class:"public" ` // @gotags: `class:"public"`
}
func ( x * Worker ) Reset ( ) {
@ -275,6 +279,141 @@ func (x *Worker) GetLocalStorageState() string {
return ""
}
func ( x * Worker ) GetRemoteStorageState ( ) map [ string ] * RemoteStorageState {
if x != nil {
return x . RemoteStorageState
}
return nil
}
type RemoteStorageState struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Output only. The overall health status of the storage bucket. The possible values include: error and available.
// The status exists in an available state if each remote storage permission state does not have an error. An unknown remote
// storage permission state does not affect the overall health status.
Status string ` protobuf:"bytes,10,opt,name=status,proto3" json:"status,omitempty" class:"public" ` // @gotags: `class:"public"`
// Output only. The remote storage permissions contains the permission state for each individual permission type.
Permissions * RemoteStoragePermissions ` protobuf:"bytes,20,opt,name=permissions,proto3" json:"permissions,omitempty" class:"public" ` // @gotags: `class:"public"`
}
func ( x * RemoteStorageState ) Reset ( ) {
* x = RemoteStorageState { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 1 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * RemoteStorageState ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * RemoteStorageState ) ProtoMessage ( ) { }
func ( x * RemoteStorageState ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_api_resources_workers_v1_worker_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 RemoteStorageState.ProtoReflect.Descriptor instead.
func ( * RemoteStorageState ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_api_resources_workers_v1_worker_proto_rawDescGZIP ( ) , [ ] int { 1 }
}
func ( x * RemoteStorageState ) GetStatus ( ) string {
if x != nil {
return x . Status
}
return ""
}
func ( x * RemoteStorageState ) GetPermissions ( ) * RemoteStoragePermissions {
if x != nil {
return x . Permissions
}
return nil
}
type RemoteStoragePermissions struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Output only. The status of the write permission state for the given storage bucket.
// Possible values are: unknown, error, and ok.
Write string ` protobuf:"bytes,10,opt,name=write,proto3" json:"write,omitempty" class:"public" ` // @gotags: `class:"public"`
// Output only. The status of the read permission state for the given storage bucket.
// Possible values are: unknown, error, and ok.
Read string ` protobuf:"bytes,20,opt,name=read,proto3" json:"read,omitempty" class:"public" ` // @gotags: `class:"public"`
// Output only. The status of the delete permission state for the given storage bucket.
// Possible values are: unknown, error, and ok.
Delete string ` protobuf:"bytes,30,opt,name=delete,proto3" json:"delete,omitempty" class:"public" ` // @gotags: `class:"public"`
}
func ( x * RemoteStoragePermissions ) Reset ( ) {
* x = RemoteStoragePermissions { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 2 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * RemoteStoragePermissions ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * RemoteStoragePermissions ) ProtoMessage ( ) { }
func ( x * RemoteStoragePermissions ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_api_resources_workers_v1_worker_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 RemoteStoragePermissions.ProtoReflect.Descriptor instead.
func ( * RemoteStoragePermissions ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_api_resources_workers_v1_worker_proto_rawDescGZIP ( ) , [ ] int { 2 }
}
func ( x * RemoteStoragePermissions ) GetWrite ( ) string {
if x != nil {
return x . Write
}
return ""
}
func ( x * RemoteStoragePermissions ) GetRead ( ) string {
if x != nil {
return x . Read
}
return ""
}
func ( x * RemoteStoragePermissions ) GetDelete ( ) string {
if x != nil {
return x . Delete
}
return ""
}
type Certificate struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
@ -293,7 +432,7 @@ type Certificate struct {
func ( x * Certificate ) Reset ( ) {
* x = Certificate { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 1 ]
mi := & file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 3 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
@ -306,7 +445,7 @@ func (x *Certificate) String() string {
func ( * Certificate ) ProtoMessage ( ) { }
func ( x * Certificate ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 1 ]
mi := & file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 3 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
@ -319,7 +458,7 @@ func (x *Certificate) ProtoReflect() protoreflect.Message {
// Deprecated: Use Certificate.ProtoReflect.Descriptor instead.
func ( * Certificate ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_api_resources_workers_v1_worker_proto_rawDescGZIP ( ) , [ ] int { 1 }
return file_controller_api_resources_workers_v1_worker_proto_rawDescGZIP ( ) , [ ] int { 3 }
}
func ( x * Certificate ) GetId ( ) string {
@ -361,7 +500,7 @@ type CertificateAuthority struct {
func ( x * CertificateAuthority ) Reset ( ) {
* x = CertificateAuthority { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 2 ]
mi := & file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 4 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
@ -374,7 +513,7 @@ func (x *CertificateAuthority) String() string {
func ( * CertificateAuthority ) ProtoMessage ( ) { }
func ( x * CertificateAuthority ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 2 ]
mi := & file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 4 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
@ -387,7 +526,7 @@ func (x *CertificateAuthority) ProtoReflect() protoreflect.Message {
// Deprecated: Use CertificateAuthority.ProtoReflect.Descriptor instead.
func ( * CertificateAuthority ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_api_resources_workers_v1_worker_proto_rawDescGZIP ( ) , [ ] int { 2 }
return file_controller_api_resources_workers_v1_worker_proto_rawDescGZIP ( ) , [ ] int { 4 }
}
func ( x * CertificateAuthority ) GetCerts ( ) [ ] * Certificate {
@ -417,7 +556,7 @@ var file_controller_api_resources_workers_v1_worker_proto_rawDesc = []byte{
0x75 , 0x66 , 0x2f , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x2e , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x1a , 0x1e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2f , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f ,
0x62 , 0x75 , 0x66 , 0x2f , 0x77 , 0x72 , 0x61 , 0x70 , 0x70 , 0x65 , 0x72 , 0x73 , 0x2e , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x22 , 0xf c, 0x0c , 0x0a , 0x06 , 0x57 , 0x6f , 0x72 , 0x6b , 0x65 , 0x72 , 0x12 , 0x0e , 0x0a ,
0x74 , 0x6f , 0x22 , 0xf 6, 0x0e , 0x0a , 0x06 , 0x57 , 0x6f , 0x72 , 0x6b , 0x65 , 0x72 , 0x12 , 0x0e , 0x0a ,
0x02 , 0x69 , 0x64 , 0x18 , 0x0a , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x02 , 0x69 , 0x64 , 0x12 , 0x1a , 0x0a ,
0x08 , 0x73 , 0x63 , 0x6f , 0x70 , 0x65 , 0x5f , 0x69 , 0x64 , 0x18 , 0x14 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 ,
0x08 , 0x73 , 0x63 , 0x6f , 0x70 , 0x65 , 0x5f , 0x69 , 0x64 , 0x12 , 0x43 , 0x0a , 0x05 , 0x73 , 0x63 , 0x6f ,
@ -504,48 +643,79 @@ var file_controller_api_resources_workers_v1_worker_proto_rawDesc = []byte{
0x13 , 0x6c , 0x6f , 0x63 , 0x61 , 0x6c , 0x5f , 0x73 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x5f , 0x73 ,
0x74 , 0x61 , 0x74 , 0x65 , 0x18 , 0xb6 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x13 , 0x6c , 0x6f , 0x63 ,
0x61 , 0x6c , 0x5f , 0x73 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x5f , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 ,
0x1a , 0x5c , 0x0a , 0x12 , 0x43 , 0x61 , 0x6e , 0x6f , 0x6e , 0x69 , 0x63 , 0x61 , 0x6c , 0x54 , 0x61 , 0x67 ,
0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x30 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 ,
0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1a , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 ,
0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x56 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x59 ,
0x0a , 0x0f , 0x43 , 0x6f , 0x6e , 0x66 , 0x69 , 0x67 , 0x54 , 0x61 , 0x67 , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 ,
0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 ,
0x6b , 0x65 , 0x79 , 0x12 , 0x30 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x0b , 0x32 , 0x1a , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 ,
0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 ,
0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x56 , 0x0a , 0x0c , 0x41 , 0x70 , 0x69 ,
0x54 , 0x61 , 0x67 , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x30 , 0x0a , 0x05 , 0x76 ,
0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1a , 0x2e , 0x67 , 0x6f , 0x6f ,
0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x4c , 0x69 , 0x73 ,
0x74 , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 ,
0x01 , 0x22 , 0xcf , 0x01 , 0x0a , 0x0b , 0x43 , 0x65 , 0x72 , 0x74 , 0x69 , 0x66 , 0x69 , 0x63 , 0x61 , 0x74 ,
0x65 , 0x12 , 0x0e , 0x0a , 0x02 , 0x69 , 0x64 , 0x18 , 0x0a , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x02 , 0x69 ,
0x64 , 0x12 , 0x2a , 0x0a , 0x11 , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x5f , 0x6b , 0x65 , 0x79 , 0x5f ,
0x73 , 0x68 , 0x61 , 0x32 , 0x35 , 0x36 , 0x18 , 0x14 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0f , 0x70 , 0x75 ,
0x62 , 0x6c , 0x69 , 0x63 , 0x4b , 0x65 , 0x79 , 0x53 , 0x68 , 0x61 , 0x32 , 0x35 , 0x36 , 0x12 , 0x42 , 0x0a ,
0x0f , 0x6e , 0x6f , 0x74 , 0x5f , 0x62 , 0x65 , 0x66 , 0x6f , 0x72 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 ,
0x18 , 0x1e , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1a , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e ,
0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 ,
0x6d , 0x70 , 0x52 , 0x0d , 0x6e , 0x6f , 0x74 , 0x42 , 0x65 , 0x66 , 0x6f , 0x72 , 0x65 , 0x54 , 0x69 , 0x6d ,
0x65 , 0x12 , 0x40 , 0x0a , 0x0e , 0x6e , 0x6f , 0x74 , 0x5f , 0x61 , 0x66 , 0x74 , 0x65 , 0x72 , 0x5f , 0x74 ,
0x69 , 0x6d , 0x65 , 0x18 , 0x28 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1a , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 ,
0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 ,
0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x52 , 0x0c , 0x6e , 0x6f , 0x74 , 0x41 , 0x66 , 0x74 , 0x65 , 0x72 , 0x54 ,
0x69 , 0x6d , 0x65 , 0x22 , 0x5e , 0x0a , 0x14 , 0x43 , 0x65 , 0x72 , 0x74 , 0x69 , 0x66 , 0x69 , 0x63 , 0x61 ,
0x74 , 0x65 , 0x41 , 0x75 , 0x74 , 0x68 , 0x6f , 0x72 , 0x69 , 0x74 , 0x79 , 0x12 , 0x46 , 0x0a , 0x05 , 0x63 ,
0x65 , 0x72 , 0x74 , 0x73 , 0x18 , 0x0a , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x30 , 0x2e , 0x63 , 0x6f , 0x6e ,
0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x61 , 0x70 , 0x69 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x73 , 0x2e , 0x77 , 0x6f , 0x72 , 0x6b , 0x65 , 0x72 , 0x73 , 0x2e , 0x76 , 0x31 ,
0x2e , 0x43 , 0x65 , 0x72 , 0x74 , 0x69 , 0x66 , 0x69 , 0x63 , 0x61 , 0x74 , 0x65 , 0x52 , 0x05 , 0x63 , 0x65 ,
0x72 , 0x74 , 0x73 , 0x42 , 0x50 , 0x5a , 0x4e , 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 , 0x73 , 0x64 , 0x6b , 0x2f , 0x70 , 0x62 , 0x73 , 0x2f , 0x63 , 0x6f , 0x6e ,
0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2f , 0x61 , 0x70 , 0x69 , 0x2f , 0x72 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x73 , 0x2f , 0x77 , 0x6f , 0x72 , 0x6b , 0x65 , 0x72 , 0x73 , 0x3b , 0x77 , 0x6f ,
0x72 , 0x6b , 0x65 , 0x72 , 0x73 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
0x12 , 0x78 , 0x0a , 0x14 , 0x72 , 0x65 , 0x6d , 0x6f , 0x74 , 0x65 , 0x5f , 0x73 , 0x74 , 0x6f , 0x72 , 0x61 ,
0x67 , 0x65 , 0x5f , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x18 , 0xc0 , 0x02 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 ,
0x43 , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x61 , 0x70 , 0x69 ,
0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x73 , 0x2e , 0x77 , 0x6f , 0x72 , 0x6b , 0x65 ,
0x72 , 0x73 , 0x2e , 0x76 , 0x31 , 0x2e , 0x57 , 0x6f , 0x72 , 0x6b , 0x65 , 0x72 , 0x2e , 0x52 , 0x65 , 0x6d ,
0x6f , 0x74 , 0x65 , 0x53 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x53 , 0x74 , 0x61 , 0x74 , 0x65 , 0x45 ,
0x6e , 0x74 , 0x72 , 0x79 , 0x52 , 0x14 , 0x72 , 0x65 , 0x6d , 0x6f , 0x74 , 0x65 , 0x5f , 0x73 , 0x74 , 0x6f ,
0x72 , 0x61 , 0x67 , 0x65 , 0x5f , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x1a , 0x5c , 0x0a , 0x12 , 0x43 , 0x61 ,
0x6e , 0x6f , 0x6e , 0x69 , 0x63 , 0x61 , 0x6c , 0x54 , 0x61 , 0x67 , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 ,
0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b ,
0x65 , 0x79 , 0x12 , 0x30 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 ,
0x0b , 0x32 , 0x1a , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f ,
0x62 , 0x75 , 0x66 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 ,
0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x59 , 0x0a , 0x0f , 0x43 , 0x6f , 0x6e , 0x66 ,
0x69 , 0x67 , 0x54 , 0x61 , 0x67 , 0x73 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b ,
0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x30 , 0x0a ,
0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1a , 0x2e , 0x67 ,
0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x4c ,
0x69 , 0x73 , 0x74 , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a ,
0x02 , 0x38 , 0x01 , 0x1a , 0x56 , 0x0a , 0x0c , 0x41 , 0x70 , 0x69 , 0x54 , 0x61 , 0x67 , 0x73 , 0x45 , 0x6e ,
0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x30 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1a , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 ,
0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x1a , 0x7e , 0x0a , 0x17 , 0x52 ,
0x65 , 0x6d , 0x6f , 0x74 , 0x65 , 0x53 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x53 , 0x74 , 0x61 , 0x74 ,
0x65 , 0x45 , 0x6e , 0x74 , 0x72 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x4d , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 ,
0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x37 , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f ,
0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x61 , 0x70 , 0x69 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0x73 , 0x2e , 0x77 , 0x6f , 0x72 , 0x6b , 0x65 , 0x72 , 0x73 , 0x2e , 0x76 , 0x31 , 0x2e , 0x52 , 0x65 ,
0x6d , 0x6f , 0x74 , 0x65 , 0x53 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x53 , 0x74 , 0x61 , 0x74 , 0x65 ,
0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x3a , 0x02 , 0x38 , 0x01 , 0x22 , 0x8d , 0x01 , 0x0a , 0x12 ,
0x52 , 0x65 , 0x6d , 0x6f , 0x74 , 0x65 , 0x53 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x53 , 0x74 , 0x61 ,
0x74 , 0x65 , 0x12 , 0x16 , 0x0a , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x18 , 0x0a , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x12 , 0x5f , 0x0a , 0x0b , 0x70 , 0x65 ,
0x72 , 0x6d , 0x69 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x14 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 ,
0x3d , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x61 , 0x70 , 0x69 ,
0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x73 , 0x2e , 0x77 , 0x6f , 0x72 , 0x6b , 0x65 ,
0x72 , 0x73 , 0x2e , 0x76 , 0x31 , 0x2e , 0x52 , 0x65 , 0x6d , 0x6f , 0x74 , 0x65 , 0x53 , 0x74 , 0x6f , 0x72 ,
0x61 , 0x67 , 0x65 , 0x50 , 0x65 , 0x72 , 0x6d , 0x69 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x52 , 0x0b ,
0x70 , 0x65 , 0x72 , 0x6d , 0x69 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x22 , 0x5c , 0x0a , 0x18 , 0x52 ,
0x65 , 0x6d , 0x6f , 0x74 , 0x65 , 0x53 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 , 0x65 , 0x50 , 0x65 , 0x72 , 0x6d ,
0x69 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x14 , 0x0a , 0x05 , 0x77 , 0x72 , 0x69 , 0x74 , 0x65 ,
0x18 , 0x0a , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x77 , 0x72 , 0x69 , 0x74 , 0x65 , 0x12 , 0x12 , 0x0a ,
0x04 , 0x72 , 0x65 , 0x61 , 0x64 , 0x18 , 0x14 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x72 , 0x65 , 0x61 ,
0x64 , 0x12 , 0x16 , 0x0a , 0x06 , 0x64 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x18 , 0x1e , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x06 , 0x64 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x22 , 0xcf , 0x01 , 0x0a , 0x0b , 0x43 , 0x65 ,
0x72 , 0x74 , 0x69 , 0x66 , 0x69 , 0x63 , 0x61 , 0x74 , 0x65 , 0x12 , 0x0e , 0x0a , 0x02 , 0x69 , 0x64 , 0x18 ,
0x0a , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x02 , 0x69 , 0x64 , 0x12 , 0x2a , 0x0a , 0x11 , 0x70 , 0x75 , 0x62 ,
0x6c , 0x69 , 0x63 , 0x5f , 0x6b , 0x65 , 0x79 , 0x5f , 0x73 , 0x68 , 0x61 , 0x32 , 0x35 , 0x36 , 0x18 , 0x14 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0f , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x4b , 0x65 , 0x79 , 0x53 ,
0x68 , 0x61 , 0x32 , 0x35 , 0x36 , 0x12 , 0x42 , 0x0a , 0x0f , 0x6e , 0x6f , 0x74 , 0x5f , 0x62 , 0x65 , 0x66 ,
0x6f , 0x72 , 0x65 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x1e , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1a ,
0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x62 , 0x75 , 0x66 ,
0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x52 , 0x0d , 0x6e , 0x6f , 0x74 , 0x42 ,
0x65 , 0x66 , 0x6f , 0x72 , 0x65 , 0x54 , 0x69 , 0x6d , 0x65 , 0x12 , 0x40 , 0x0a , 0x0e , 0x6e , 0x6f , 0x74 ,
0x5f , 0x61 , 0x66 , 0x74 , 0x65 , 0x72 , 0x5f , 0x74 , 0x69 , 0x6d , 0x65 , 0x18 , 0x28 , 0x20 , 0x01 , 0x28 ,
0x0b , 0x32 , 0x1a , 0x2e , 0x67 , 0x6f , 0x6f , 0x67 , 0x6c , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f ,
0x62 , 0x75 , 0x66 , 0x2e , 0x54 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x52 , 0x0c , 0x6e ,
0x6f , 0x74 , 0x41 , 0x66 , 0x74 , 0x65 , 0x72 , 0x54 , 0x69 , 0x6d , 0x65 , 0x22 , 0x5e , 0x0a , 0x14 , 0x43 ,
0x65 , 0x72 , 0x74 , 0x69 , 0x66 , 0x69 , 0x63 , 0x61 , 0x74 , 0x65 , 0x41 , 0x75 , 0x74 , 0x68 , 0x6f , 0x72 ,
0x69 , 0x74 , 0x79 , 0x12 , 0x46 , 0x0a , 0x05 , 0x63 , 0x65 , 0x72 , 0x74 , 0x73 , 0x18 , 0x0a , 0x20 , 0x03 ,
0x28 , 0x0b , 0x32 , 0x30 , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e ,
0x61 , 0x70 , 0x69 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x73 , 0x2e , 0x77 , 0x6f ,
0x72 , 0x6b , 0x65 , 0x72 , 0x73 , 0x2e , 0x76 , 0x31 , 0x2e , 0x43 , 0x65 , 0x72 , 0x74 , 0x69 , 0x66 , 0x69 ,
0x63 , 0x61 , 0x74 , 0x65 , 0x52 , 0x05 , 0x63 , 0x65 , 0x72 , 0x74 , 0x73 , 0x42 , 0x50 , 0x5a , 0x4e , 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 , 0x73 , 0x64 , 0x6b ,
0x2f , 0x70 , 0x62 , 0x73 , 0x2f , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2f ,
0x61 , 0x70 , 0x69 , 0x2f , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x73 , 0x2f , 0x77 , 0x6f ,
0x72 , 0x6b , 0x65 , 0x72 , 0x73 , 0x3b , 0x77 , 0x6f , 0x72 , 0x6b , 0x65 , 0x72 , 0x73 , 0x62 , 0x06 , 0x70 ,
0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
}
var (
@ -560,44 +730,50 @@ func file_controller_api_resources_workers_v1_worker_proto_rawDescGZIP() []byte
return file_controller_api_resources_workers_v1_worker_proto_rawDescData
}
var file_controller_api_resources_workers_v1_worker_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 6 )
var file_controller_api_resources_workers_v1_worker_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 9 )
var file_controller_api_resources_workers_v1_worker_proto_goTypes = [ ] interface { } {
( * Worker ) ( nil ) , // 0: controller.api.resources.workers.v1.Worker
( * Certificate ) ( nil ) , // 1: controller.api.resources.workers.v1.Certificate
( * CertificateAuthority ) ( nil ) , // 2: controller.api.resources.workers.v1.CertificateAuthority
nil , // 3: controller.api.resources.workers.v1.Worker.CanonicalTagsEntry
nil , // 4: controller.api.resources.workers.v1.Worker.ConfigTagsEntry
nil , // 5: controller.api.resources.workers.v1.Worker.ApiTagsEntry
( * scopes . ScopeInfo ) ( nil ) , // 6: controller.api.resources.scopes.v1.ScopeInfo
( * wrapperspb . StringValue ) ( nil ) , // 7: google.protobuf.StringValue
( * timestamppb . Timestamp ) ( nil ) , // 8: google.protobuf.Timestamp
( * wrapperspb . UInt32Value ) ( nil ) , // 9: google.protobuf.UInt32Value
( * structpb . ListValue ) ( nil ) , // 10: google.protobuf.ListValue
( * Worker ) ( nil ) , // 0: controller.api.resources.workers.v1.Worker
( * RemoteStorageState ) ( nil ) , // 1: controller.api.resources.workers.v1.RemoteStorageState
( * RemoteStoragePermissions ) ( nil ) , // 2: controller.api.resources.workers.v1.RemoteStoragePermissions
( * Certificate ) ( nil ) , // 3: controller.api.resources.workers.v1.Certificate
( * CertificateAuthority ) ( nil ) , // 4: controller.api.resources.workers.v1.CertificateAuthority
nil , // 5: controller.api.resources.workers.v1.Worker.CanonicalTagsEntry
nil , // 6: controller.api.resources.workers.v1.Worker.ConfigTagsEntry
nil , // 7: controller.api.resources.workers.v1.Worker.ApiTagsEntry
nil , // 8: controller.api.resources.workers.v1.Worker.RemoteStorageStateEntry
( * scopes . ScopeInfo ) ( nil ) , // 9: controller.api.resources.scopes.v1.ScopeInfo
( * wrapperspb . StringValue ) ( nil ) , // 10: google.protobuf.StringValue
( * timestamppb . Timestamp ) ( nil ) , // 11: google.protobuf.Timestamp
( * wrapperspb . UInt32Value ) ( nil ) , // 12: google.protobuf.UInt32Value
( * structpb . ListValue ) ( nil ) , // 13: google.protobuf.ListValue
}
var file_controller_api_resources_workers_v1_worker_proto_depIdxs = [ ] int32 {
6 , // 0: controller.api.resources.workers.v1.Worker.scope:type_name -> controller.api.resources.scopes.v1.ScopeInfo
7 , // 1: controller.api.resources.workers.v1.Worker.name:type_name -> google.protobuf.StringValue
7 , // 2: controller.api.resources.workers.v1.Worker.description:type_name -> google.protobuf.StringValue
8 , // 3: controller.api.resources.workers.v1.Worker.created_time:type_name -> google.protobuf.Timestamp
8 , // 4: controller.api.resources.workers.v1.Worker.updated_time:type_name -> google.protobuf.Timestamp
3 , // 5: controller.api.resources.workers.v1.Worker.canonical_tags:type_name -> controller.api.resources.workers.v1.Worker.CanonicalTagsEntry
4 , // 6: controller.api.resources.workers.v1.Worker.config_tags:type_name -> controller.api.resources.workers.v1.Worker.ConfigTagsEntry
8 , // 7: controller.api.resources.workers.v1.Worker.last_status_time:type_name -> google.protobuf.Timestamp
7 , // 8: controller.api.resources.workers.v1.Worker.worker_generated_auth_token:type_name -> google.protobuf.StringValue
7 , // 9: controller.api.resources.workers.v1.Worker.controller_generated_activation_token:type_name -> google.protobuf.StringValue
9 , // 10: controller.api.resources.workers.v1.Worker.active_connection_count:type_name -> google.protobuf.UInt32Value
5 , // 11: controller.api.resources.workers.v1.Worker.api_tags:type_name -> controller.api.resources.workers.v1.Worker.ApiTagsEntry
8 , // 12: controller.api.resources.workers.v1.Certificate.not_before_time:type_name -> google.protobuf.Timestamp
8 , // 13: controller.api.resources.workers.v1.Certificate.not_after_time:type_name -> google.protobuf.Timestamp
1 , // 14: controller.api.resources.workers.v1.CertificateAuthority.certs:type_name -> controller.api.resources.workers.v1.Certificate
10 , // 15: controller.api.resources.workers.v1.Worker.CanonicalTagsEntry.value:type_name -> google.protobuf.ListValue
10 , // 16: controller.api.resources.workers.v1.Worker.ConfigTagsEntry.value:type_name -> google.protobuf.ListValue
10 , // 17: controller.api.resources.workers.v1.Worker.ApiTagsEntry.value:type_name -> google.protobuf.ListValue
18 , // [18:18] is the sub-list for method output_type
18 , // [18:18] is the sub-list for method input_type
18 , // [18:18] is the sub-list for extension type_name
18 , // [18:18] is the sub-list for extension extendee
0 , // [0:18] is the sub-list for field type_name
9 , // 0: controller.api.resources.workers.v1.Worker.scope:type_name -> controller.api.resources.scopes.v1.ScopeInfo
10 , // 1: controller.api.resources.workers.v1.Worker.name:type_name -> google.protobuf.StringValue
10 , // 2: controller.api.resources.workers.v1.Worker.description:type_name -> google.protobuf.StringValue
11 , // 3: controller.api.resources.workers.v1.Worker.created_time:type_name -> google.protobuf.Timestamp
11 , // 4: controller.api.resources.workers.v1.Worker.updated_time:type_name -> google.protobuf.Timestamp
5 , // 5: controller.api.resources.workers.v1.Worker.canonical_tags:type_name -> controller.api.resources.workers.v1.Worker.CanonicalTagsEntry
6 , // 6: controller.api.resources.workers.v1.Worker.config_tags:type_name -> controller.api.resources.workers.v1.Worker.ConfigTagsEntry
11 , // 7: controller.api.resources.workers.v1.Worker.last_status_time:type_name -> google.protobuf.Timestamp
10 , // 8: controller.api.resources.workers.v1.Worker.worker_generated_auth_token:type_name -> google.protobuf.StringValue
10 , // 9: controller.api.resources.workers.v1.Worker.controller_generated_activation_token:type_name -> google.protobuf.StringValue
12 , // 10: controller.api.resources.workers.v1.Worker.active_connection_count:type_name -> google.protobuf.UInt32Value
7 , // 11: controller.api.resources.workers.v1.Worker.api_tags:type_name -> controller.api.resources.workers.v1.Worker.ApiTagsEntry
8 , // 12: controller.api.resources.workers.v1.Worker.remote_storage_state:type_name -> controller.api.resources.workers.v1.Worker.RemoteStorageStateEntry
2 , // 13: controller.api.resources.workers.v1.RemoteStorageState.permissions:type_name -> controller.api.resources.workers.v1.RemoteStoragePermissions
11 , // 14: controller.api.resources.workers.v1.Certificate.not_before_time:type_name -> google.protobuf.Timestamp
11 , // 15: controller.api.resources.workers.v1.Certificate.not_after_time:type_name -> google.protobuf.Timestamp
3 , // 16: controller.api.resources.workers.v1.CertificateAuthority.certs:type_name -> controller.api.resources.workers.v1.Certificate
13 , // 17: controller.api.resources.workers.v1.Worker.CanonicalTagsEntry.value:type_name -> google.protobuf.ListValue
13 , // 18: controller.api.resources.workers.v1.Worker.ConfigTagsEntry.value:type_name -> google.protobuf.ListValue
13 , // 19: controller.api.resources.workers.v1.Worker.ApiTagsEntry.value:type_name -> google.protobuf.ListValue
1 , // 20: controller.api.resources.workers.v1.Worker.RemoteStorageStateEntry.value:type_name -> controller.api.resources.workers.v1.RemoteStorageState
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_controller_api_resources_workers_v1_worker_proto_init ( ) }
@ -619,7 +795,7 @@ func file_controller_api_resources_workers_v1_worker_proto_init() {
}
}
file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 1 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Certific ate) ; i {
switch v := v . ( * RemoteStorageSt ate) ; i {
case 0 :
return & v . state
case 1 :
@ -631,6 +807,30 @@ func file_controller_api_resources_workers_v1_worker_proto_init() {
}
}
file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 2 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * RemoteStoragePermissions ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 3 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Certificate ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_controller_api_resources_workers_v1_worker_proto_msgTypes [ 4 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * CertificateAuthority ) ; i {
case 0 :
return & v . state
@ -649,7 +849,7 @@ func file_controller_api_resources_workers_v1_worker_proto_init() {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_controller_api_resources_workers_v1_worker_proto_rawDesc ,
NumEnums : 0 ,
NumMessages : 6 ,
NumMessages : 9 ,
NumExtensions : 0 ,
NumServices : 0 ,
} ,