// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.34.1
// protoc (unknown)
// source: resource.proto
package resource
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl . EnforceVersion ( 20 - protoimpl . MinVersion )
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl . EnforceVersion ( protoimpl . MaxVersion - 20 )
)
type ResourceOperation int32
const (
ResourceOperation_UNKNOWN ResourceOperation = 0
ResourceOperation_CREATED ResourceOperation = 1
ResourceOperation_UPDATED ResourceOperation = 2
ResourceOperation_DELETED ResourceOperation = 3
ResourceOperation_BOOKMARK ResourceOperation = 4
)
// Enum value maps for ResourceOperation.
var (
ResourceOperation_name = map [ int32 ] string {
0 : "UNKNOWN" ,
1 : "CREATED" ,
2 : "UPDATED" ,
3 : "DELETED" ,
4 : "BOOKMARK" ,
}
ResourceOperation_value = map [ string ] int32 {
"UNKNOWN" : 0 ,
"CREATED" : 1 ,
"UPDATED" : 2 ,
"DELETED" : 3 ,
"BOOKMARK" : 4 ,
}
)
func ( x ResourceOperation ) Enum ( ) * ResourceOperation {
p := new ( ResourceOperation )
* p = x
return p
}
func ( x ResourceOperation ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( ResourceOperation ) Descriptor ( ) protoreflect . EnumDescriptor {
return file_resource_proto_enumTypes [ 0 ] . Descriptor ( )
}
func ( ResourceOperation ) Type ( ) protoreflect . EnumType {
return & file_resource_proto_enumTypes [ 0 ]
}
func ( x ResourceOperation ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use ResourceOperation.Descriptor instead.
func ( ResourceOperation ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 0 }
}
type ResourceVersionMatch int32
const (
ResourceVersionMatch_NotOlderThan ResourceVersionMatch = 0
ResourceVersionMatch_Exact ResourceVersionMatch = 1
)
// Enum value maps for ResourceVersionMatch.
var (
ResourceVersionMatch_name = map [ int32 ] string {
0 : "NotOlderThan" ,
1 : "Exact" ,
}
ResourceVersionMatch_value = map [ string ] int32 {
"NotOlderThan" : 0 ,
"Exact" : 1 ,
}
)
func ( x ResourceVersionMatch ) Enum ( ) * ResourceVersionMatch {
p := new ( ResourceVersionMatch )
* p = x
return p
}
func ( x ResourceVersionMatch ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( ResourceVersionMatch ) Descriptor ( ) protoreflect . EnumDescriptor {
return file_resource_proto_enumTypes [ 1 ] . Descriptor ( )
}
func ( ResourceVersionMatch ) Type ( ) protoreflect . EnumType {
return & file_resource_proto_enumTypes [ 1 ]
}
func ( x ResourceVersionMatch ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use ResourceVersionMatch.Descriptor instead.
func ( ResourceVersionMatch ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 1 }
}
type LinkBlob_Action int32
const (
LinkBlob_UNKNOWN LinkBlob_Action = 0
// Upload raw bytes
LinkBlob_UPLOAD LinkBlob_Action = 1
// Keep the existing blob (valid for updates)
LinkBlob_KEEP LinkBlob_Action = 2
// Do not keep the existing version (same as not sending LinkBlob, only valid for updates)
LinkBlob_REMOVE LinkBlob_Action = 3 // TODO... support presigned uploads
)
// Enum value maps for LinkBlob_Action.
var (
LinkBlob_Action_name = map [ int32 ] string {
0 : "UNKNOWN" ,
1 : "UPLOAD" ,
2 : "KEEP" ,
3 : "REMOVE" ,
}
LinkBlob_Action_value = map [ string ] int32 {
"UNKNOWN" : 0 ,
"UPLOAD" : 1 ,
"KEEP" : 2 ,
"REMOVE" : 3 ,
}
)
func ( x LinkBlob_Action ) Enum ( ) * LinkBlob_Action {
p := new ( LinkBlob_Action )
* p = x
return p
}
func ( x LinkBlob_Action ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( LinkBlob_Action ) Descriptor ( ) protoreflect . EnumDescriptor {
return file_resource_proto_enumTypes [ 2 ] . Descriptor ( )
}
func ( LinkBlob_Action ) Type ( ) protoreflect . EnumType {
return & file_resource_proto_enumTypes [ 2 ]
}
func ( x LinkBlob_Action ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use LinkBlob_Action.Descriptor instead.
func ( LinkBlob_Action ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 5 , 0 }
}
type Sort_Order int32
const (
Sort_ASC Sort_Order = 0
Sort_DESC Sort_Order = 1
)
// Enum value maps for Sort_Order.
var (
Sort_Order_name = map [ int32 ] string {
0 : "ASC" ,
1 : "DESC" ,
}
Sort_Order_value = map [ string ] int32 {
"ASC" : 0 ,
"DESC" : 1 ,
}
)
func ( x Sort_Order ) Enum ( ) * Sort_Order {
p := new ( Sort_Order )
* p = x
return p
}
func ( x Sort_Order ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( Sort_Order ) Descriptor ( ) protoreflect . EnumDescriptor {
return file_resource_proto_enumTypes [ 3 ] . Descriptor ( )
}
func ( Sort_Order ) Type ( ) protoreflect . EnumType {
return & file_resource_proto_enumTypes [ 3 ]
}
func ( x Sort_Order ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use Sort_Order.Descriptor instead.
func ( Sort_Order ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 17 , 0 }
}
type HealthCheckResponse_ServingStatus int32
const (
HealthCheckResponse_UNKNOWN HealthCheckResponse_ServingStatus = 0
HealthCheckResponse_SERVING HealthCheckResponse_ServingStatus = 1
HealthCheckResponse_NOT_SERVING HealthCheckResponse_ServingStatus = 2
HealthCheckResponse_SERVICE_UNKNOWN HealthCheckResponse_ServingStatus = 3 // Used only by the Watch method.
)
// Enum value maps for HealthCheckResponse_ServingStatus.
var (
HealthCheckResponse_ServingStatus_name = map [ int32 ] string {
0 : "UNKNOWN" ,
1 : "SERVING" ,
2 : "NOT_SERVING" ,
3 : "SERVICE_UNKNOWN" ,
}
HealthCheckResponse_ServingStatus_value = map [ string ] int32 {
"UNKNOWN" : 0 ,
"SERVING" : 1 ,
"NOT_SERVING" : 2 ,
"SERVICE_UNKNOWN" : 3 ,
}
)
func ( x HealthCheckResponse_ServingStatus ) Enum ( ) * HealthCheckResponse_ServingStatus {
p := new ( HealthCheckResponse_ServingStatus )
* p = x
return p
}
func ( x HealthCheckResponse_ServingStatus ) String ( ) string {
return protoimpl . X . EnumStringOf ( x . Descriptor ( ) , protoreflect . EnumNumber ( x ) )
}
func ( HealthCheckResponse_ServingStatus ) Descriptor ( ) protoreflect . EnumDescriptor {
return file_resource_proto_enumTypes [ 4 ] . Descriptor ( )
}
func ( HealthCheckResponse_ServingStatus ) Type ( ) protoreflect . EnumType {
return & file_resource_proto_enumTypes [ 4 ]
}
func ( x HealthCheckResponse_ServingStatus ) Number ( ) protoreflect . EnumNumber {
return protoreflect . EnumNumber ( x )
}
// Deprecated: Use HealthCheckResponse_ServingStatus.Descriptor instead.
func ( HealthCheckResponse_ServingStatus ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 29 , 0 }
}
type ResourceKey struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Namespace (tenant)
Namespace string ` protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty" `
// Resource Group
Group string ` protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty" `
// The resource type
Resource string ` protobuf:"bytes,3,opt,name=resource,proto3" json:"resource,omitempty" `
// Resource identifier (unique within namespace+group+resource)
Name string ` protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty" `
// The resource version
ResourceVersion int64 ` protobuf:"varint,5,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
}
func ( x * ResourceKey ) Reset ( ) {
* x = ResourceKey { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 0 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * ResourceKey ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ResourceKey ) ProtoMessage ( ) { }
func ( x * ResourceKey ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 0 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use ResourceKey.ProtoReflect.Descriptor instead.
func ( * ResourceKey ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 0 }
}
func ( x * ResourceKey ) GetNamespace ( ) string {
if x != nil {
return x . Namespace
}
return ""
}
func ( x * ResourceKey ) GetGroup ( ) string {
if x != nil {
return x . Group
}
return ""
}
func ( x * ResourceKey ) GetResource ( ) string {
if x != nil {
return x . Resource
}
return ""
}
func ( x * ResourceKey ) GetName ( ) string {
if x != nil {
return x . Name
}
return ""
}
func ( x * ResourceKey ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
type ResourceWrapper struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// The resource version
ResourceVersion int64 ` protobuf:"varint,1,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
// Full kubernetes json bytes (although the resource version may not be accurate)
Value [ ] byte ` protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty" `
// Operation
Operation ResourceOperation ` protobuf:"varint,3,opt,name=operation,proto3,enum=resource.ResourceOperation" json:"operation,omitempty" `
// The resource has an attached blob
HasBlob bool ` protobuf:"varint,4,opt,name=has_blob,json=hasBlob,proto3" json:"has_blob,omitempty" `
}
func ( x * ResourceWrapper ) Reset ( ) {
* x = ResourceWrapper { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 1 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * ResourceWrapper ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ResourceWrapper ) ProtoMessage ( ) { }
func ( x * ResourceWrapper ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_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 ResourceWrapper.ProtoReflect.Descriptor instead.
func ( * ResourceWrapper ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 1 }
}
func ( x * ResourceWrapper ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
func ( x * ResourceWrapper ) GetValue ( ) [ ] byte {
if x != nil {
return x . Value
}
return nil
}
func ( x * ResourceWrapper ) GetOperation ( ) ResourceOperation {
if x != nil {
return x . Operation
}
return ResourceOperation_UNKNOWN
}
func ( x * ResourceWrapper ) GetHasBlob ( ) bool {
if x != nil {
return x . HasBlob
}
return false
}
// The history and trash commands need access to commit messages
type ResourceMeta struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// The resource version
ResourceVersion int64 ` protobuf:"varint,1,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
// The optional commit message
Operation ResourceOperation ` protobuf:"varint,2,opt,name=operation,proto3,enum=resource.ResourceOperation" json:"operation,omitempty" `
// Size of the full resource body
Size int32 ` protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty" `
// Hash for the resource
Hash string ` protobuf:"bytes,4,opt,name=hash,proto3" json:"hash,omitempty" `
// The optional commit message
Message string ` protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty" `
// The kubernetes metadata section (not the full resource)
// https://github.com/kubernetes/kubernetes/blob/v1.30.2/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go#L1496
PartialObjectMeta [ ] byte ` protobuf:"bytes,6,opt,name=partial_object_meta,json=partialObjectMeta,proto3" json:"partial_object_meta,omitempty" `
// The resource has an attached blob
HasBlob bool ` protobuf:"varint,7,opt,name=has_blob,json=hasBlob,proto3" json:"has_blob,omitempty" `
}
func ( x * ResourceMeta ) Reset ( ) {
* x = ResourceMeta { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 2 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * ResourceMeta ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ResourceMeta ) ProtoMessage ( ) { }
func ( x * ResourceMeta ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_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 ResourceMeta.ProtoReflect.Descriptor instead.
func ( * ResourceMeta ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 2 }
}
func ( x * ResourceMeta ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
func ( x * ResourceMeta ) GetOperation ( ) ResourceOperation {
if x != nil {
return x . Operation
}
return ResourceOperation_UNKNOWN
}
func ( x * ResourceMeta ) GetSize ( ) int32 {
if x != nil {
return x . Size
}
return 0
}
func ( x * ResourceMeta ) GetHash ( ) string {
if x != nil {
return x . Hash
}
return ""
}
func ( x * ResourceMeta ) GetMessage ( ) string {
if x != nil {
return x . Message
}
return ""
}
func ( x * ResourceMeta ) GetPartialObjectMeta ( ) [ ] byte {
if x != nil {
return x . PartialObjectMeta
}
return nil
}
func ( x * ResourceMeta ) GetHasBlob ( ) bool {
if x != nil {
return x . HasBlob
}
return false
}
// Basic blob metadata
type BlobInfo struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// System identifier
Path string ` protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty" `
// Content Length
Size int64 ` protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty" `
// Content type header
ContentType string ` protobuf:"bytes,3,opt,name=content_type,json=contentType,proto3" json:"content_type,omitempty" `
// Content hash used for an etag
Hash string ` protobuf:"bytes,4,opt,name=hash,proto3" json:"hash,omitempty" `
}
func ( x * BlobInfo ) Reset ( ) {
* x = BlobInfo { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 3 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * BlobInfo ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * BlobInfo ) ProtoMessage ( ) { }
func ( x * BlobInfo ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 3 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use BlobInfo.ProtoReflect.Descriptor instead.
func ( * BlobInfo ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 3 }
}
func ( x * BlobInfo ) GetPath ( ) string {
if x != nil {
return x . Path
}
return ""
}
func ( x * BlobInfo ) GetSize ( ) int64 {
if x != nil {
return x . Size
}
return 0
}
func ( x * BlobInfo ) GetContentType ( ) string {
if x != nil {
return x . ContentType
}
return ""
}
func ( x * BlobInfo ) GetHash ( ) string {
if x != nil {
return x . Hash
}
return ""
}
// Status structure is copied from:
// https://github.com/kubernetes/apimachinery/blob/v0.30.1/pkg/apis/meta/v1/generated.proto#L979
type StatusResult struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Status of the operation.
// One of: "Success" or "Failure".
// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
// +optional
Status string ` protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty" `
// A human-readable description of the status of this operation.
// +optional
Message string ` protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty" `
// A machine-readable description of why this operation is in the
// "Failure" status. If this value is empty there
// is no information available. A Reason clarifies an HTTP status
// code but does not override it.
// +optional
Reason string ` protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty" `
// Suggested HTTP return code for this status, 0 if not set.
// +optional
Code int32 ` protobuf:"varint,4,opt,name=code,proto3" json:"code,omitempty" `
}
func ( x * StatusResult ) Reset ( ) {
* x = StatusResult { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 4 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * StatusResult ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * StatusResult ) ProtoMessage ( ) { }
func ( x * StatusResult ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 4 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use StatusResult.ProtoReflect.Descriptor instead.
func ( * StatusResult ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 4 }
}
func ( x * StatusResult ) GetStatus ( ) string {
if x != nil {
return x . Status
}
return ""
}
func ( x * StatusResult ) GetMessage ( ) string {
if x != nil {
return x . Message
}
return ""
}
func ( x * StatusResult ) GetReason ( ) string {
if x != nil {
return x . Reason
}
return ""
}
func ( x * StatusResult ) GetCode ( ) int32 {
if x != nil {
return x . Code
}
return 0
}
type LinkBlob struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Content type header
ContentType string ` protobuf:"bytes,1,opt,name=content_type,json=contentType,proto3" json:"content_type,omitempty" `
// Raw value to write
Value [ ] byte ` protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty" `
}
func ( x * LinkBlob ) Reset ( ) {
* x = LinkBlob { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 5 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * LinkBlob ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * LinkBlob ) ProtoMessage ( ) { }
func ( x * LinkBlob ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 5 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use LinkBlob.ProtoReflect.Descriptor instead.
func ( * LinkBlob ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 5 }
}
func ( x * LinkBlob ) GetContentType ( ) string {
if x != nil {
return x . ContentType
}
return ""
}
func ( x * LinkBlob ) GetValue ( ) [ ] byte {
if x != nil {
return x . Value
}
return nil
}
type CreateRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Requires group+resource to be configuired
// If name is not set, a unique name will be generated
// The resourceVersion should not be set
Key * ResourceKey ` protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty" `
// The resource JSON.
Value [ ] byte ` protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty" `
// Optional commit message
Message string ` protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty" `
// Optionally include a large binary object
Blob * LinkBlob ` protobuf:"bytes,4,opt,name=blob,proto3" json:"blob,omitempty" `
}
func ( x * CreateRequest ) Reset ( ) {
* x = CreateRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 6 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * CreateRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * CreateRequest ) ProtoMessage ( ) { }
func ( x * CreateRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 6 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use CreateRequest.ProtoReflect.Descriptor instead.
func ( * CreateRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 6 }
}
func ( x * CreateRequest ) GetKey ( ) * ResourceKey {
if x != nil {
return x . Key
}
return nil
}
func ( x * CreateRequest ) GetValue ( ) [ ] byte {
if x != nil {
return x . Value
}
return nil
}
func ( x * CreateRequest ) GetMessage ( ) string {
if x != nil {
return x . Message
}
return ""
}
func ( x * CreateRequest ) GetBlob ( ) * LinkBlob {
if x != nil {
return x . Blob
}
return nil
}
type CreateResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Status code
Status * StatusResult ` protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty" `
// The updated resource version
ResourceVersion int64 ` protobuf:"varint,2,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
}
func ( x * CreateResponse ) Reset ( ) {
* x = CreateResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 7 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * CreateResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * CreateResponse ) ProtoMessage ( ) { }
func ( x * CreateResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 7 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use CreateResponse.ProtoReflect.Descriptor instead.
func ( * CreateResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 7 }
}
func ( x * CreateResponse ) GetStatus ( ) * StatusResult {
if x != nil {
return x . Status
}
return nil
}
func ( x * CreateResponse ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
type UpdateRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Full key must be set
Key * ResourceKey ` protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty" `
// The resource JSON.
Value [ ] byte ` protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty" `
// Optional commit message
// +optional
Message string ` protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty" `
// Optionally link a resource object
Blob * LinkBlob ` protobuf:"bytes,4,opt,name=blob,proto3" json:"blob,omitempty" `
}
func ( x * UpdateRequest ) Reset ( ) {
* x = UpdateRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 8 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * UpdateRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * UpdateRequest ) ProtoMessage ( ) { }
func ( x * UpdateRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 8 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use UpdateRequest.ProtoReflect.Descriptor instead.
func ( * UpdateRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 8 }
}
func ( x * UpdateRequest ) GetKey ( ) * ResourceKey {
if x != nil {
return x . Key
}
return nil
}
func ( x * UpdateRequest ) GetValue ( ) [ ] byte {
if x != nil {
return x . Value
}
return nil
}
func ( x * UpdateRequest ) GetMessage ( ) string {
if x != nil {
return x . Message
}
return ""
}
func ( x * UpdateRequest ) GetBlob ( ) * LinkBlob {
if x != nil {
return x . Blob
}
return nil
}
type UpdateResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Status code
Status * StatusResult ` protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty" `
// The updated resource version
ResourceVersion int64 ` protobuf:"varint,2,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
}
func ( x * UpdateResponse ) Reset ( ) {
* x = UpdateResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 9 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * UpdateResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * UpdateResponse ) ProtoMessage ( ) { }
func ( x * UpdateResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 9 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use UpdateResponse.ProtoReflect.Descriptor instead.
func ( * UpdateResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 9 }
}
func ( x * UpdateResponse ) GetStatus ( ) * StatusResult {
if x != nil {
return x . Status
}
return nil
}
func ( x * UpdateResponse ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
type DeleteRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Key * ResourceKey ` protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty" `
// Preconditions: make sure the uid matches the current saved value
// +optional
Uid string ` protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty" `
}
func ( x * DeleteRequest ) Reset ( ) {
* x = DeleteRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 10 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * DeleteRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * DeleteRequest ) ProtoMessage ( ) { }
func ( x * DeleteRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 10 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use DeleteRequest.ProtoReflect.Descriptor instead.
func ( * DeleteRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 10 }
}
func ( x * DeleteRequest ) GetKey ( ) * ResourceKey {
if x != nil {
return x . Key
}
return nil
}
func ( x * DeleteRequest ) GetUid ( ) string {
if x != nil {
return x . Uid
}
return ""
}
type DeleteResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Status code
Status * StatusResult ` protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty" `
// The new resource version
ResourceVersion int64 ` protobuf:"varint,2,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
}
func ( x * DeleteResponse ) Reset ( ) {
* x = DeleteResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 11 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * DeleteResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * DeleteResponse ) ProtoMessage ( ) { }
func ( x * DeleteResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 11 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use DeleteResponse.ProtoReflect.Descriptor instead.
func ( * DeleteResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 11 }
}
func ( x * DeleteResponse ) GetStatus ( ) * StatusResult {
if x != nil {
return x . Status
}
return nil
}
func ( x * DeleteResponse ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
type ReadRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Key * ResourceKey ` protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty" `
// Do not include any blob details
IgnoreBlob bool ` protobuf:"varint,2,opt,name=ignore_blob,json=ignoreBlob,proto3" json:"ignore_blob,omitempty" `
}
func ( x * ReadRequest ) Reset ( ) {
* x = ReadRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 12 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * ReadRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ReadRequest ) ProtoMessage ( ) { }
func ( x * ReadRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 12 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use ReadRequest.ProtoReflect.Descriptor instead.
func ( * ReadRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 12 }
}
func ( x * ReadRequest ) GetKey ( ) * ResourceKey {
if x != nil {
return x . Key
}
return nil
}
func ( x * ReadRequest ) GetIgnoreBlob ( ) bool {
if x != nil {
return x . IgnoreBlob
}
return false
}
type ReadResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Status code
Status * StatusResult ` protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty" `
// The new resource version
ResourceVersion int64 ` protobuf:"varint,2,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
// The properties
Value [ ] byte ` protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty" `
// The the commit message
Message string ` protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty" `
// A Signed URL that will let you fetch the blob
// If this value starts with # you must read the bytes using the GetResourceBlob request
BlobUrl string ` protobuf:"bytes,5,opt,name=blob_url,json=blobUrl,proto3" json:"blob_url,omitempty" `
}
func ( x * ReadResponse ) Reset ( ) {
* x = ReadResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 13 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * ReadResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ReadResponse ) ProtoMessage ( ) { }
func ( x * ReadResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 13 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use ReadResponse.ProtoReflect.Descriptor instead.
func ( * ReadResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 13 }
}
func ( x * ReadResponse ) GetStatus ( ) * StatusResult {
if x != nil {
return x . Status
}
return nil
}
func ( x * ReadResponse ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
func ( x * ReadResponse ) GetValue ( ) [ ] byte {
if x != nil {
return x . Value
}
return nil
}
func ( x * ReadResponse ) GetMessage ( ) string {
if x != nil {
return x . Message
}
return ""
}
func ( x * ReadResponse ) GetBlobUrl ( ) string {
if x != nil {
return x . BlobUrl
}
return ""
}
type GetBlobRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Key * ResourceKey ` protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty" `
}
func ( x * GetBlobRequest ) Reset ( ) {
* x = GetBlobRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 14 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * GetBlobRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * GetBlobRequest ) ProtoMessage ( ) { }
func ( x * GetBlobRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 14 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use GetBlobRequest.ProtoReflect.Descriptor instead.
func ( * GetBlobRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 14 }
}
func ( x * GetBlobRequest ) GetKey ( ) * ResourceKey {
if x != nil {
return x . Key
}
return nil
}
type GetBlobResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Status code
Status * StatusResult ` protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty" `
// Headers
Info * BlobInfo ` protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty" `
// The raw object value
Value [ ] byte ` protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty" `
}
func ( x * GetBlobResponse ) Reset ( ) {
* x = GetBlobResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 15 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * GetBlobResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * GetBlobResponse ) ProtoMessage ( ) { }
func ( x * GetBlobResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 15 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use GetBlobResponse.ProtoReflect.Descriptor instead.
func ( * GetBlobResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 15 }
}
func ( x * GetBlobResponse ) GetStatus ( ) * StatusResult {
if x != nil {
return x . Status
}
return nil
}
func ( x * GetBlobResponse ) GetInfo ( ) * BlobInfo {
if x != nil {
return x . Info
}
return nil
}
func ( x * GetBlobResponse ) GetValue ( ) [ ] byte {
if x != nil {
return x . Value
}
return nil
}
// The label filtering requirements:
// https://github.com/kubernetes/kubernetes/blob/v1.30.1/staging/src/k8s.io/apimachinery/pkg/labels/selector.go#L141
type Requirement struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Key string ` protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty" `
Operator string ` protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty" ` // See https://github.com/kubernetes/kubernetes/blob/v1.30.1/staging/src/k8s.io/apimachinery/pkg/selection/operator.go#L21
Values [ ] string ` protobuf:"bytes,3,rep,name=values,proto3" json:"values,omitempty" ` // typically one value, but depends on the operator
}
func ( x * Requirement ) Reset ( ) {
* x = Requirement { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 16 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Requirement ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Requirement ) ProtoMessage ( ) { }
func ( x * Requirement ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 16 ]
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 Requirement.ProtoReflect.Descriptor instead.
func ( * Requirement ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 16 }
}
func ( x * Requirement ) GetKey ( ) string {
if x != nil {
return x . Key
}
return ""
}
func ( x * Requirement ) GetOperator ( ) string {
if x != nil {
return x . Operator
}
return ""
}
func ( x * Requirement ) GetValues ( ) [ ] string {
if x != nil {
return x . Values
}
return nil
}
type Sort struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Field string ` protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty" `
Order Sort_Order ` protobuf:"varint,2,opt,name=order,proto3,enum=resource.Sort_Order" json:"order,omitempty" `
}
func ( x * Sort ) Reset ( ) {
* x = Sort { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 17 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * Sort ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * Sort ) ProtoMessage ( ) { }
func ( x * Sort ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 17 ]
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 Sort.ProtoReflect.Descriptor instead.
func ( * Sort ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 17 }
}
func ( x * Sort ) GetField ( ) string {
if x != nil {
return x . Field
}
return ""
}
func ( x * Sort ) GetOrder ( ) Sort_Order {
if x != nil {
return x . Order
}
return Sort_ASC
}
type ListOptions struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Namespace+Group+Resource+etc
// This must *not* include the resource version
Key * ResourceKey ` protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty" `
// Match label
Labels [ ] * Requirement ` protobuf:"bytes,2,rep,name=labels,proto3" json:"labels,omitempty" `
// Match fields (not yet supported)
Fields [ ] * Requirement ` protobuf:"bytes,3,rep,name=fields,proto3" json:"fields,omitempty" `
}
func ( x * ListOptions ) Reset ( ) {
* x = ListOptions { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 18 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * ListOptions ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ListOptions ) ProtoMessage ( ) { }
func ( x * ListOptions ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 18 ]
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 ListOptions.ProtoReflect.Descriptor instead.
func ( * ListOptions ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 18 }
}
func ( x * ListOptions ) GetKey ( ) * ResourceKey {
if x != nil {
return x . Key
}
return nil
}
func ( x * ListOptions ) GetLabels ( ) [ ] * Requirement {
if x != nil {
return x . Labels
}
return nil
}
func ( x * ListOptions ) GetFields ( ) [ ] * Requirement {
if x != nil {
return x . Fields
}
return nil
}
type ListRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Starting from the requested page (other query parameters must match!)
NextPageToken string ` protobuf:"bytes,1,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty" `
// The resource version
ResourceVersion int64 ` protobuf:"varint,2,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
// List options
VersionMatch ResourceVersionMatch ` protobuf:"varint,3,opt,name=version_match,json=versionMatch,proto3,enum=resource.ResourceVersionMatch" json:"version_match,omitempty" `
// Maximum number of items to return
// NOTE responses will also be limited by the response payload size
Limit int64 ` protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty" `
// Filtering
Options * ListOptions ` protobuf:"bytes,5,opt,name=options,proto3" json:"options,omitempty" `
// Sorting instructions `field ASC/DESC`
Sort [ ] * Sort ` protobuf:"bytes,6,rep,name=sort,proto3" json:"sort,omitempty" `
}
func ( x * ListRequest ) Reset ( ) {
* x = ListRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 19 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * ListRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ListRequest ) ProtoMessage ( ) { }
func ( x * ListRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 19 ]
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 ListRequest.ProtoReflect.Descriptor instead.
func ( * ListRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 19 }
}
func ( x * ListRequest ) GetNextPageToken ( ) string {
if x != nil {
return x . NextPageToken
}
return ""
}
func ( x * ListRequest ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
func ( x * ListRequest ) GetVersionMatch ( ) ResourceVersionMatch {
if x != nil {
return x . VersionMatch
}
return ResourceVersionMatch_NotOlderThan
}
func ( x * ListRequest ) GetLimit ( ) int64 {
if x != nil {
return x . Limit
}
return 0
}
func ( x * ListRequest ) GetOptions ( ) * ListOptions {
if x != nil {
return x . Options
}
return nil
}
func ( x * ListRequest ) GetSort ( ) [ ] * Sort {
if x != nil {
return x . Sort
}
return nil
}
type ListResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Items [ ] * ResourceWrapper ` protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty" `
// When more results exist, pass this in the next request
NextPageToken string ` protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty" `
// ResourceVersion of the list response
ResourceVersion int64 ` protobuf:"varint,3,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
// remainingItemCount is the number of subsequent items in the list which are not included in this
// list response. If the list request contained label or field selectors, then the number of
// remaining items is unknown and the field will be left unset and omitted during serialization.
// If the list is complete (either because it is not chunking or because this is the last chunk),
// then there are no more remaining items and this field will be left unset and omitted during
// serialization.
//
// The intended use of the remainingItemCount is *estimating* the size of a collection. Clients
// should not rely on the remainingItemCount to be set or to be exact.
// +optional
RemainingItemCount int64 ` protobuf:"varint,4,opt,name=remaining_item_count,json=remainingItemCount,proto3" json:"remaining_item_count,omitempty" ` // 0 won't be set either (no next page token)
}
func ( x * ListResponse ) Reset ( ) {
* x = ListResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 20 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * ListResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ListResponse ) ProtoMessage ( ) { }
func ( x * ListResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 20 ]
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 ListResponse.ProtoReflect.Descriptor instead.
func ( * ListResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 20 }
}
func ( x * ListResponse ) GetItems ( ) [ ] * ResourceWrapper {
if x != nil {
return x . Items
}
return nil
}
func ( x * ListResponse ) GetNextPageToken ( ) string {
if x != nil {
return x . NextPageToken
}
return ""
}
func ( x * ListResponse ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
func ( x * ListResponse ) GetRemainingItemCount ( ) int64 {
if x != nil {
return x . RemainingItemCount
}
return 0
}
type WatchRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// ResourceVersion of last changes. Empty will default to full history
Since int64 ` protobuf:"varint,1,opt,name=since,proto3" json:"since,omitempty" `
// Additional options
Options * ListOptions ` protobuf:"bytes,3,opt,name=options,proto3" json:"options,omitempty" `
// Return initial events
SendInitialEvents bool ` protobuf:"varint,4,opt,name=send_initial_events,json=sendInitialEvents,proto3" json:"send_initial_events,omitempty" `
// When done with initial events, send a bookmark event
AllowWatchBookmarks bool ` protobuf:"varint,5,opt,name=allow_watch_bookmarks,json=allowWatchBookmarks,proto3" json:"allow_watch_bookmarks,omitempty" `
}
func ( x * WatchRequest ) Reset ( ) {
* x = WatchRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 21 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * WatchRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * WatchRequest ) ProtoMessage ( ) { }
func ( x * WatchRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 21 ]
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 WatchRequest.ProtoReflect.Descriptor instead.
func ( * WatchRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 21 }
}
func ( x * WatchRequest ) GetSince ( ) int64 {
if x != nil {
return x . Since
}
return 0
}
func ( x * WatchRequest ) GetOptions ( ) * ListOptions {
if x != nil {
return x . Options
}
return nil
}
func ( x * WatchRequest ) GetSendInitialEvents ( ) bool {
if x != nil {
return x . SendInitialEvents
}
return false
}
func ( x * WatchRequest ) GetAllowWatchBookmarks ( ) bool {
if x != nil {
return x . AllowWatchBookmarks
}
return false
}
type WatchResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Timestamp the event was sent
Timestamp int64 ` protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty" `
// Entity that was created, updated, or deleted
Resource * ResourceWrapper ` protobuf:"bytes,2,opt,name=resource,proto3" json:"resource,omitempty" `
// previous version of the entity (in update+delete events)
Previous * ResourceWrapper ` protobuf:"bytes,3,opt,name=previous,proto3" json:"previous,omitempty" `
}
func ( x * WatchResponse ) Reset ( ) {
* x = WatchResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 22 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * WatchResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * WatchResponse ) ProtoMessage ( ) { }
func ( x * WatchResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 22 ]
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 WatchResponse.ProtoReflect.Descriptor instead.
func ( * WatchResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 22 }
}
func ( x * WatchResponse ) GetTimestamp ( ) int64 {
if x != nil {
return x . Timestamp
}
return 0
}
func ( x * WatchResponse ) GetResource ( ) * ResourceWrapper {
if x != nil {
return x . Resource
}
return nil
}
func ( x * WatchResponse ) GetPrevious ( ) * ResourceWrapper {
if x != nil {
return x . Previous
}
return nil
}
type HistoryRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Starting from the requested page (other query parameters must match!)
NextPageToken string ` protobuf:"bytes,1,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty" `
// Maximum number of items to return
Limit int64 ` protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty" `
// Resource identifier
Key * ResourceKey ` protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty" `
// List the deleted values (eg, show trash)
ShowDeleted bool ` protobuf:"varint,4,opt,name=show_deleted,json=showDeleted,proto3" json:"show_deleted,omitempty" `
}
func ( x * HistoryRequest ) Reset ( ) {
* x = HistoryRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 23 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * HistoryRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * HistoryRequest ) ProtoMessage ( ) { }
func ( x * HistoryRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 23 ]
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 HistoryRequest.ProtoReflect.Descriptor instead.
func ( * HistoryRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 23 }
}
func ( x * HistoryRequest ) GetNextPageToken ( ) string {
if x != nil {
return x . NextPageToken
}
return ""
}
func ( x * HistoryRequest ) GetLimit ( ) int64 {
if x != nil {
return x . Limit
}
return 0
}
func ( x * HistoryRequest ) GetKey ( ) * ResourceKey {
if x != nil {
return x . Key
}
return nil
}
func ( x * HistoryRequest ) GetShowDeleted ( ) bool {
if x != nil {
return x . ShowDeleted
}
return false
}
type HistoryResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Items [ ] * ResourceMeta ` protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty" `
// More results exist... pass this in the next request
NextPageToken string ` protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty" `
// ResourceVersion of the list response
ResourceVersion int64 ` protobuf:"varint,3,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
}
func ( x * HistoryResponse ) Reset ( ) {
* x = HistoryResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 24 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * HistoryResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * HistoryResponse ) ProtoMessage ( ) { }
func ( x * HistoryResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 24 ]
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 HistoryResponse.ProtoReflect.Descriptor instead.
func ( * HistoryResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 24 }
}
func ( x * HistoryResponse ) GetItems ( ) [ ] * ResourceMeta {
if x != nil {
return x . Items
}
return nil
}
func ( x * HistoryResponse ) GetNextPageToken ( ) string {
if x != nil {
return x . NextPageToken
}
return ""
}
func ( x * HistoryResponse ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
type OriginRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Starting from the requested page (other query parameters must match!)
NextPageToken string ` protobuf:"bytes,1,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty" `
// Maximum number of items to return
Limit int64 ` protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty" `
// Resource identifier
Key * ResourceKey ` protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty" `
// List the deleted values (eg, show trash)
Origin string ` protobuf:"bytes,4,opt,name=origin,proto3" json:"origin,omitempty" `
}
func ( x * OriginRequest ) Reset ( ) {
* x = OriginRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 25 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * OriginRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * OriginRequest ) ProtoMessage ( ) { }
func ( x * OriginRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 25 ]
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 OriginRequest.ProtoReflect.Descriptor instead.
func ( * OriginRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 25 }
}
func ( x * OriginRequest ) GetNextPageToken ( ) string {
if x != nil {
return x . NextPageToken
}
return ""
}
func ( x * OriginRequest ) GetLimit ( ) int64 {
if x != nil {
return x . Limit
}
return 0
}
func ( x * OriginRequest ) GetKey ( ) * ResourceKey {
if x != nil {
return x . Key
}
return nil
}
func ( x * OriginRequest ) GetOrigin ( ) string {
if x != nil {
return x . Origin
}
return ""
}
type ResourceOriginInfo struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// The resource
Key * ResourceKey ` protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty" `
// Size of the full resource body
ResourceSize int32 ` protobuf:"varint,2,opt,name=resource_size,json=resourceSize,proto3" json:"resource_size,omitempty" `
// Hash for the resource
ResourceHash string ` protobuf:"bytes,3,opt,name=resource_hash,json=resourceHash,proto3" json:"resource_hash,omitempty" `
// The origin name
Origin string ` protobuf:"bytes,4,opt,name=origin,proto3" json:"origin,omitempty" `
// Path on the origin
Path string ` protobuf:"bytes,5,opt,name=path,proto3" json:"path,omitempty" `
// Verification hash from the origin
Hash string ` protobuf:"bytes,6,opt,name=hash,proto3" json:"hash,omitempty" `
// Change time from the origin
Timestamp int64 ` protobuf:"varint,7,opt,name=timestamp,proto3" json:"timestamp,omitempty" `
}
func ( x * ResourceOriginInfo ) Reset ( ) {
* x = ResourceOriginInfo { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 26 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * ResourceOriginInfo ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ResourceOriginInfo ) ProtoMessage ( ) { }
func ( x * ResourceOriginInfo ) ProtoReflect ( ) protoreflect . Message {
mi := & file_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 ResourceOriginInfo.ProtoReflect.Descriptor instead.
func ( * ResourceOriginInfo ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 26 }
}
func ( x * ResourceOriginInfo ) GetKey ( ) * ResourceKey {
if x != nil {
return x . Key
}
return nil
}
func ( x * ResourceOriginInfo ) GetResourceSize ( ) int32 {
if x != nil {
return x . ResourceSize
}
return 0
}
func ( x * ResourceOriginInfo ) GetResourceHash ( ) string {
if x != nil {
return x . ResourceHash
}
return ""
}
func ( x * ResourceOriginInfo ) GetOrigin ( ) string {
if x != nil {
return x . Origin
}
return ""
}
func ( x * ResourceOriginInfo ) GetPath ( ) string {
if x != nil {
return x . Path
}
return ""
}
func ( x * ResourceOriginInfo ) GetHash ( ) string {
if x != nil {
return x . Hash
}
return ""
}
func ( x * ResourceOriginInfo ) GetTimestamp ( ) int64 {
if x != nil {
return x . Timestamp
}
return 0
}
type OriginResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Items [ ] * ResourceOriginInfo ` protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty" `
// More results exist... pass this in the next request
NextPageToken string ` protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty" `
// ResourceVersion of the list response
ResourceVersion int64 ` protobuf:"varint,3,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty" `
}
func ( x * OriginResponse ) Reset ( ) {
* x = OriginResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 27 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * OriginResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * OriginResponse ) ProtoMessage ( ) { }
func ( x * OriginResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_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 OriginResponse.ProtoReflect.Descriptor instead.
func ( * OriginResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 27 }
}
func ( x * OriginResponse ) GetItems ( ) [ ] * ResourceOriginInfo {
if x != nil {
return x . Items
}
return nil
}
func ( x * OriginResponse ) GetNextPageToken ( ) string {
if x != nil {
return x . NextPageToken
}
return ""
}
func ( x * OriginResponse ) GetResourceVersion ( ) int64 {
if x != nil {
return x . ResourceVersion
}
return 0
}
type HealthCheckRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Service string ` protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty" `
}
func ( x * HealthCheckRequest ) Reset ( ) {
* x = HealthCheckRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 28 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * HealthCheckRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * HealthCheckRequest ) ProtoMessage ( ) { }
func ( x * HealthCheckRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_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 HealthCheckRequest.ProtoReflect.Descriptor instead.
func ( * HealthCheckRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 28 }
}
func ( x * HealthCheckRequest ) GetService ( ) string {
if x != nil {
return x . Service
}
return ""
}
type HealthCheckResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Status HealthCheckResponse_ServingStatus ` protobuf:"varint,1,opt,name=status,proto3,enum=resource.HealthCheckResponse_ServingStatus" json:"status,omitempty" `
}
func ( x * HealthCheckResponse ) Reset ( ) {
* x = HealthCheckResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_resource_proto_msgTypes [ 29 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * HealthCheckResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * HealthCheckResponse ) ProtoMessage ( ) { }
func ( x * HealthCheckResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_resource_proto_msgTypes [ 29 ]
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 HealthCheckResponse.ProtoReflect.Descriptor instead.
func ( * HealthCheckResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_resource_proto_rawDescGZIP ( ) , [ ] int { 29 }
}
func ( x * HealthCheckResponse ) GetStatus ( ) HealthCheckResponse_ServingStatus {
if x != nil {
return x . Status
}
return HealthCheckResponse_UNKNOWN
}
var File_resource_proto protoreflect . FileDescriptor
var file_resource_proto_rawDesc = [ ] byte {
0x0a , 0x0e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f ,
0x12 , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x22 , 0x9c , 0x01 , 0x0a , 0x0b , 0x52 ,
0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4b , 0x65 , 0x79 , 0x12 , 0x1c , 0x0a , 0x09 , 0x6e , 0x61 ,
0x6d , 0x65 , 0x73 , 0x70 , 0x61 , 0x63 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x6e ,
0x61 , 0x6d , 0x65 , 0x73 , 0x70 , 0x61 , 0x63 , 0x65 , 0x12 , 0x14 , 0x0a , 0x05 , 0x67 , 0x72 , 0x6f , 0x75 ,
0x70 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x67 , 0x72 , 0x6f , 0x75 , 0x70 , 0x12 , 0x1a ,
0x0a , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6e , 0x61 ,
0x6d , 0x65 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x29 ,
0x0a , 0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5f , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 ,
0x6f , 0x6e , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x22 , 0xa8 , 0x01 , 0x0a , 0x0f , 0x52 , 0x65 ,
0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x57 , 0x72 , 0x61 , 0x70 , 0x70 , 0x65 , 0x72 , 0x12 , 0x29 , 0x0a ,
0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5f , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f ,
0x6e , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 ,
0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x12 , 0x39 ,
0x0a , 0x09 , 0x6f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 ,
0x0e , 0x32 , 0x1b , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x09 ,
0x6f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x19 , 0x0a , 0x08 , 0x68 , 0x61 , 0x73 ,
0x5f , 0x62 , 0x6c , 0x6f , 0x62 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x07 , 0x68 , 0x61 , 0x73 ,
0x42 , 0x6c , 0x6f , 0x62 , 0x22 , 0x81 , 0x02 , 0x0a , 0x0c , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0x4d , 0x65 , 0x74 , 0x61 , 0x12 , 0x29 , 0x0a , 0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0x5f , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 ,
0x0f , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e ,
0x12 , 0x39 , 0x0a , 0x09 , 0x6f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x02 , 0x20 ,
0x01 , 0x28 , 0x0e , 0x32 , 0x1b , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 ,
0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e ,
0x52 , 0x09 , 0x6f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x12 , 0x0a , 0x04 , 0x73 ,
0x69 , 0x7a , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x04 , 0x73 , 0x69 , 0x7a , 0x65 , 0x12 ,
0x12 , 0x0a , 0x04 , 0x68 , 0x61 , 0x73 , 0x68 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x68 ,
0x61 , 0x73 , 0x68 , 0x12 , 0x18 , 0x0a , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x18 , 0x05 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x12 , 0x2e , 0x0a ,
0x13 , 0x70 , 0x61 , 0x72 , 0x74 , 0x69 , 0x61 , 0x6c , 0x5f , 0x6f , 0x62 , 0x6a , 0x65 , 0x63 , 0x74 , 0x5f ,
0x6d , 0x65 , 0x74 , 0x61 , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x11 , 0x70 , 0x61 , 0x72 , 0x74 ,
0x69 , 0x61 , 0x6c , 0x4f , 0x62 , 0x6a , 0x65 , 0x63 , 0x74 , 0x4d , 0x65 , 0x74 , 0x61 , 0x12 , 0x19 , 0x0a ,
0x08 , 0x68 , 0x61 , 0x73 , 0x5f , 0x62 , 0x6c , 0x6f , 0x62 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 ,
0x07 , 0x68 , 0x61 , 0x73 , 0x42 , 0x6c , 0x6f , 0x62 , 0x22 , 0x69 , 0x0a , 0x08 , 0x42 , 0x6c , 0x6f , 0x62 ,
0x49 , 0x6e , 0x66 , 0x6f , 0x12 , 0x12 , 0x0a , 0x04 , 0x70 , 0x61 , 0x74 , 0x68 , 0x18 , 0x01 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x04 , 0x70 , 0x61 , 0x74 , 0x68 , 0x12 , 0x12 , 0x0a , 0x04 , 0x73 , 0x69 , 0x7a , 0x65 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x04 , 0x73 , 0x69 , 0x7a , 0x65 , 0x12 , 0x21 , 0x0a , 0x0c ,
0x63 , 0x6f , 0x6e , 0x74 , 0x65 , 0x6e , 0x74 , 0x5f , 0x74 , 0x79 , 0x70 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x0b , 0x63 , 0x6f , 0x6e , 0x74 , 0x65 , 0x6e , 0x74 , 0x54 , 0x79 , 0x70 , 0x65 , 0x12 ,
0x12 , 0x0a , 0x04 , 0x68 , 0x61 , 0x73 , 0x68 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x68 ,
0x61 , 0x73 , 0x68 , 0x22 , 0x6c , 0x0a , 0x0c , 0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x52 , 0x65 , 0x73 ,
0x75 , 0x6c , 0x74 , 0x12 , 0x16 , 0x0a , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x18 , 0x01 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x12 , 0x18 , 0x0a , 0x07 , 0x6d ,
0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x6d , 0x65 ,
0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x12 , 0x16 , 0x0a , 0x06 , 0x72 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x18 ,
0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x06 , 0x72 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x12 , 0x12 , 0x0a ,
0x04 , 0x63 , 0x6f , 0x64 , 0x65 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x04 , 0x63 , 0x6f , 0x64 ,
0x65 , 0x22 , 0x7c , 0x0a , 0x08 , 0x4c , 0x69 , 0x6e , 0x6b , 0x42 , 0x6c , 0x6f , 0x62 , 0x12 , 0x21 , 0x0a ,
0x0c , 0x63 , 0x6f , 0x6e , 0x74 , 0x65 , 0x6e , 0x74 , 0x5f , 0x74 , 0x79 , 0x70 , 0x65 , 0x18 , 0x01 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x63 , 0x6f , 0x6e , 0x74 , 0x65 , 0x6e , 0x74 , 0x54 , 0x79 , 0x70 , 0x65 ,
0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 ,
0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x22 , 0x37 , 0x0a , 0x06 , 0x41 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e ,
0x12 , 0x0b , 0x0a , 0x07 , 0x55 , 0x4e , 0x4b , 0x4e , 0x4f , 0x57 , 0x4e , 0x10 , 0x00 , 0x12 , 0x0a , 0x0a ,
0x06 , 0x55 , 0x50 , 0x4c , 0x4f , 0x41 , 0x44 , 0x10 , 0x01 , 0x12 , 0x08 , 0x0a , 0x04 , 0x4b , 0x45 , 0x45 ,
0x50 , 0x10 , 0x02 , 0x12 , 0x0a , 0x0a , 0x06 , 0x52 , 0x45 , 0x4d , 0x4f , 0x56 , 0x45 , 0x10 , 0x03 , 0x22 ,
0x90 , 0x01 , 0x0a , 0x0d , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 ,
0x74 , 0x12 , 0x27 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 ,
0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x4b , 0x65 , 0x79 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x12 , 0x18 , 0x0a , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x12 , 0x26 , 0x0a , 0x04 , 0x62 , 0x6c ,
0x6f , 0x62 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x12 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x6e , 0x6b , 0x42 , 0x6c , 0x6f , 0x62 , 0x52 , 0x04 , 0x62 , 0x6c ,
0x6f , 0x62 , 0x22 , 0x6b , 0x0a , 0x0e , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x2e , 0x0a , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x18 , 0x01 ,
0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e ,
0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x52 , 0x65 , 0x73 , 0x75 , 0x6c , 0x74 , 0x52 , 0x06 , 0x73 , 0x74 ,
0x61 , 0x74 , 0x75 , 0x73 , 0x12 , 0x29 , 0x0a , 0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x5f , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x22 ,
0x90 , 0x01 , 0x0a , 0x0d , 0x55 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 ,
0x74 , 0x12 , 0x27 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 ,
0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x4b , 0x65 , 0x79 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x14 , 0x0a , 0x05 , 0x76 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x12 , 0x18 , 0x0a , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x12 , 0x26 , 0x0a , 0x04 , 0x62 , 0x6c ,
0x6f , 0x62 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x12 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x6e , 0x6b , 0x42 , 0x6c , 0x6f , 0x62 , 0x52 , 0x04 , 0x62 , 0x6c ,
0x6f , 0x62 , 0x22 , 0x6b , 0x0a , 0x0e , 0x55 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x2e , 0x0a , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x18 , 0x01 ,
0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e ,
0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x52 , 0x65 , 0x73 , 0x75 , 0x6c , 0x74 , 0x52 , 0x06 , 0x73 , 0x74 ,
0x61 , 0x74 , 0x75 , 0x73 , 0x12 , 0x29 , 0x0a , 0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x5f , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x22 ,
0x4a , 0x0a , 0x0d , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 ,
0x12 , 0x27 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 , 0x2e ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0x4b , 0x65 , 0x79 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x10 , 0x0a , 0x03 , 0x75 , 0x69 , 0x64 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x03 , 0x75 , 0x69 , 0x64 , 0x22 , 0x6b , 0x0a , 0x0e , 0x44 ,
0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x2e , 0x0a ,
0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x52 ,
0x65 , 0x73 , 0x75 , 0x6c , 0x74 , 0x52 , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x12 , 0x29 , 0x0a ,
0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5f , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f ,
0x6e , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x22 , 0x57 , 0x0a , 0x0b , 0x52 , 0x65 , 0x61 , 0x64 ,
0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x27 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 ,
0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e ,
0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4b , 0x65 , 0x79 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 ,
0x12 , 0x1f , 0x0a , 0x0b , 0x69 , 0x67 , 0x6e , 0x6f , 0x72 , 0x65 , 0x5f , 0x62 , 0x6c , 0x6f , 0x62 , 0x18 ,
0x02 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0a , 0x69 , 0x67 , 0x6e , 0x6f , 0x72 , 0x65 , 0x42 , 0x6c , 0x6f ,
0x62 , 0x22 , 0xb4 , 0x01 , 0x0a , 0x0c , 0x52 , 0x65 , 0x61 , 0x64 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e ,
0x73 , 0x65 , 0x12 , 0x2e , 0x0a , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x18 , 0x01 , 0x20 , 0x01 ,
0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x53 , 0x74 ,
0x61 , 0x74 , 0x75 , 0x73 , 0x52 , 0x65 , 0x73 , 0x75 , 0x6c , 0x74 , 0x52 , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 ,
0x75 , 0x73 , 0x12 , 0x29 , 0x0a , 0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5f , 0x76 ,
0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x72 , 0x65 ,
0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x14 , 0x0a ,
0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x05 , 0x76 , 0x61 ,
0x6c , 0x75 , 0x65 , 0x12 , 0x18 , 0x0a , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x18 , 0x04 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x12 , 0x19 , 0x0a ,
0x08 , 0x62 , 0x6c , 0x6f , 0x62 , 0x5f , 0x75 , 0x72 , 0x6c , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 ,
0x07 , 0x62 , 0x6c , 0x6f , 0x62 , 0x55 , 0x72 , 0x6c , 0x22 , 0x39 , 0x0a , 0x0e , 0x47 , 0x65 , 0x74 , 0x42 ,
0x6c , 0x6f , 0x62 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x27 , 0x0a , 0x03 , 0x6b , 0x65 ,
0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4b , 0x65 , 0x79 , 0x52 , 0x03 ,
0x6b , 0x65 , 0x79 , 0x22 , 0x7f , 0x0a , 0x0f , 0x47 , 0x65 , 0x74 , 0x42 , 0x6c , 0x6f , 0x62 , 0x52 , 0x65 ,
0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x2e , 0x0a , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0x2e , 0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x52 , 0x65 , 0x73 , 0x75 , 0x6c , 0x74 , 0x52 , 0x06 ,
0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x12 , 0x26 , 0x0a , 0x04 , 0x69 , 0x6e , 0x66 , 0x6f , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x12 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e ,
0x42 , 0x6c , 0x6f , 0x62 , 0x49 , 0x6e , 0x66 , 0x6f , 0x52 , 0x04 , 0x69 , 0x6e , 0x66 , 0x6f , 0x12 , 0x14 ,
0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x05 , 0x76 ,
0x61 , 0x6c , 0x75 , 0x65 , 0x22 , 0x53 , 0x0a , 0x0b , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d ,
0x65 , 0x6e , 0x74 , 0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x1a , 0x0a , 0x08 , 0x6f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x6f ,
0x72 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x08 , 0x6f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x6f ,
0x72 , 0x12 , 0x16 , 0x0a , 0x06 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x73 , 0x18 , 0x03 , 0x20 , 0x03 , 0x28 ,
0x09 , 0x52 , 0x06 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x73 , 0x22 , 0x64 , 0x0a , 0x04 , 0x53 , 0x6f , 0x72 ,
0x74 , 0x12 , 0x14 , 0x0a , 0x05 , 0x66 , 0x69 , 0x65 , 0x6c , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x05 , 0x66 , 0x69 , 0x65 , 0x6c , 0x64 , 0x12 , 0x2a , 0x0a , 0x05 , 0x6f , 0x72 , 0x64 , 0x65 , 0x72 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0e , 0x32 , 0x14 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0x2e , 0x53 , 0x6f , 0x72 , 0x74 , 0x2e , 0x4f , 0x72 , 0x64 , 0x65 , 0x72 , 0x52 , 0x05 , 0x6f , 0x72 ,
0x64 , 0x65 , 0x72 , 0x22 , 0x1a , 0x0a , 0x05 , 0x4f , 0x72 , 0x64 , 0x65 , 0x72 , 0x12 , 0x07 , 0x0a , 0x03 ,
0x41 , 0x53 , 0x43 , 0x10 , 0x00 , 0x12 , 0x08 , 0x0a , 0x04 , 0x44 , 0x45 , 0x53 , 0x43 , 0x10 , 0x01 , 0x22 ,
0x94 , 0x01 , 0x0a , 0x0b , 0x4c , 0x69 , 0x73 , 0x74 , 0x4f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 ,
0x27 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 , 0x2e , 0x72 ,
0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x4b , 0x65 , 0x79 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x2d , 0x0a , 0x06 , 0x6c , 0x61 , 0x62 , 0x65 ,
0x6c , 0x73 , 0x18 , 0x02 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x52 ,
0x06 , 0x6c , 0x61 , 0x62 , 0x65 , 0x6c , 0x73 , 0x12 , 0x2d , 0x0a , 0x06 , 0x66 , 0x69 , 0x65 , 0x6c , 0x64 ,
0x73 , 0x18 , 0x03 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x71 , 0x75 , 0x69 , 0x72 , 0x65 , 0x6d , 0x65 , 0x6e , 0x74 , 0x52 , 0x06 ,
0x66 , 0x69 , 0x65 , 0x6c , 0x64 , 0x73 , 0x22 , 0x90 , 0x02 , 0x0a , 0x0b , 0x4c , 0x69 , 0x73 , 0x74 , 0x52 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x26 , 0x0a , 0x0f , 0x6e , 0x65 , 0x78 , 0x74 , 0x5f , 0x70 ,
0x61 , 0x67 , 0x65 , 0x5f , 0x74 , 0x6f , 0x6b , 0x65 , 0x6e , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 ,
0x0d , 0x6e , 0x65 , 0x78 , 0x74 , 0x50 , 0x61 , 0x67 , 0x65 , 0x54 , 0x6f , 0x6b , 0x65 , 0x6e , 0x12 , 0x29 ,
0x0a , 0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5f , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 ,
0x6f , 0x6e , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x43 , 0x0a , 0x0d , 0x76 , 0x65 , 0x72 ,
0x73 , 0x69 , 0x6f , 0x6e , 0x5f , 0x6d , 0x61 , 0x74 , 0x63 , 0x68 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0e ,
0x32 , 0x1e , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x4d , 0x61 , 0x74 , 0x63 , 0x68 ,
0x52 , 0x0c , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x4d , 0x61 , 0x74 , 0x63 , 0x68 , 0x12 , 0x14 ,
0x0a , 0x05 , 0x6c , 0x69 , 0x6d , 0x69 , 0x74 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x05 , 0x6c ,
0x69 , 0x6d , 0x69 , 0x74 , 0x12 , 0x2f , 0x0a , 0x07 , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 ,
0x05 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x4f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x52 , 0x07 , 0x6f , 0x70 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x22 , 0x0a , 0x04 , 0x73 , 0x6f , 0x72 , 0x74 , 0x18 , 0x06 , 0x20 ,
0x03 , 0x28 , 0x0b , 0x32 , 0x0e , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x53 ,
0x6f , 0x72 , 0x74 , 0x52 , 0x04 , 0x73 , 0x6f , 0x72 , 0x74 , 0x22 , 0xc4 , 0x01 , 0x0a , 0x0c , 0x4c , 0x69 ,
0x73 , 0x74 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x2f , 0x0a , 0x05 , 0x69 , 0x74 ,
0x65 , 0x6d , 0x73 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x19 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x57 , 0x72 , 0x61 ,
0x70 , 0x70 , 0x65 , 0x72 , 0x52 , 0x05 , 0x69 , 0x74 , 0x65 , 0x6d , 0x73 , 0x12 , 0x26 , 0x0a , 0x0f , 0x6e ,
0x65 , 0x78 , 0x74 , 0x5f , 0x70 , 0x61 , 0x67 , 0x65 , 0x5f , 0x74 , 0x6f , 0x6b , 0x65 , 0x6e , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0d , 0x6e , 0x65 , 0x78 , 0x74 , 0x50 , 0x61 , 0x67 , 0x65 , 0x54 , 0x6f ,
0x6b , 0x65 , 0x6e , 0x12 , 0x29 , 0x0a , 0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5f ,
0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x72 ,
0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x30 ,
0x0a , 0x14 , 0x72 , 0x65 , 0x6d , 0x61 , 0x69 , 0x6e , 0x69 , 0x6e , 0x67 , 0x5f , 0x69 , 0x74 , 0x65 , 0x6d ,
0x5f , 0x63 , 0x6f , 0x75 , 0x6e , 0x74 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x12 , 0x72 , 0x65 ,
0x6d , 0x61 , 0x69 , 0x6e , 0x69 , 0x6e , 0x67 , 0x49 , 0x74 , 0x65 , 0x6d , 0x43 , 0x6f , 0x75 , 0x6e , 0x74 ,
0x22 , 0xb9 , 0x01 , 0x0a , 0x0c , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 ,
0x74 , 0x12 , 0x14 , 0x0a , 0x05 , 0x73 , 0x69 , 0x6e , 0x63 , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 ,
0x52 , 0x05 , 0x73 , 0x69 , 0x6e , 0x63 , 0x65 , 0x12 , 0x2f , 0x0a , 0x07 , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x73 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x4f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x52 ,
0x07 , 0x6f , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x2e , 0x0a , 0x13 , 0x73 , 0x65 , 0x6e , 0x64 ,
0x5f , 0x69 , 0x6e , 0x69 , 0x74 , 0x69 , 0x61 , 0x6c , 0x5f , 0x65 , 0x76 , 0x65 , 0x6e , 0x74 , 0x73 , 0x18 ,
0x04 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x11 , 0x73 , 0x65 , 0x6e , 0x64 , 0x49 , 0x6e , 0x69 , 0x74 , 0x69 ,
0x61 , 0x6c , 0x45 , 0x76 , 0x65 , 0x6e , 0x74 , 0x73 , 0x12 , 0x32 , 0x0a , 0x15 , 0x61 , 0x6c , 0x6c , 0x6f ,
0x77 , 0x5f , 0x77 , 0x61 , 0x74 , 0x63 , 0x68 , 0x5f , 0x62 , 0x6f , 0x6f , 0x6b , 0x6d , 0x61 , 0x72 , 0x6b ,
0x73 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x13 , 0x61 , 0x6c , 0x6c , 0x6f , 0x77 , 0x57 , 0x61 ,
0x74 , 0x63 , 0x68 , 0x42 , 0x6f , 0x6f , 0x6b , 0x6d , 0x61 , 0x72 , 0x6b , 0x73 , 0x22 , 0x9b , 0x01 , 0x0a ,
0x0d , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1c ,
0x0a , 0x09 , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x09 , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x12 , 0x35 , 0x0a , 0x08 ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x19 ,
0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x57 , 0x72 , 0x61 , 0x70 , 0x70 , 0x65 , 0x72 , 0x52 , 0x08 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x12 , 0x35 , 0x0a , 0x08 , 0x70 , 0x72 , 0x65 , 0x76 , 0x69 , 0x6f , 0x75 , 0x73 , 0x18 ,
0x03 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x19 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x57 , 0x72 , 0x61 , 0x70 , 0x70 , 0x65 , 0x72 ,
0x52 , 0x08 , 0x70 , 0x72 , 0x65 , 0x76 , 0x69 , 0x6f , 0x75 , 0x73 , 0x22 , 0x9a , 0x01 , 0x0a , 0x0e , 0x48 ,
0x69 , 0x73 , 0x74 , 0x6f , 0x72 , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x26 , 0x0a ,
0x0f , 0x6e , 0x65 , 0x78 , 0x74 , 0x5f , 0x70 , 0x61 , 0x67 , 0x65 , 0x5f , 0x74 , 0x6f , 0x6b , 0x65 , 0x6e ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0d , 0x6e , 0x65 , 0x78 , 0x74 , 0x50 , 0x61 , 0x67 , 0x65 ,
0x54 , 0x6f , 0x6b , 0x65 , 0x6e , 0x12 , 0x14 , 0x0a , 0x05 , 0x6c , 0x69 , 0x6d , 0x69 , 0x74 , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x05 , 0x6c , 0x69 , 0x6d , 0x69 , 0x74 , 0x12 , 0x27 , 0x0a , 0x03 , 0x6b ,
0x65 , 0x79 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4b , 0x65 , 0x79 , 0x52 ,
0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x21 , 0x0a , 0x0c , 0x73 , 0x68 , 0x6f , 0x77 , 0x5f , 0x64 , 0x65 , 0x6c ,
0x65 , 0x74 , 0x65 , 0x64 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0b , 0x73 , 0x68 , 0x6f , 0x77 ,
0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x64 , 0x22 , 0x92 , 0x01 , 0x0a , 0x0f , 0x48 , 0x69 , 0x73 , 0x74 ,
0x6f , 0x72 , 0x79 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x2c , 0x0a , 0x05 , 0x69 ,
0x74 , 0x65 , 0x6d , 0x73 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x16 , 0x2e , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4d , 0x65 ,
0x74 , 0x61 , 0x52 , 0x05 , 0x69 , 0x74 , 0x65 , 0x6d , 0x73 , 0x12 , 0x26 , 0x0a , 0x0f , 0x6e , 0x65 , 0x78 ,
0x74 , 0x5f , 0x70 , 0x61 , 0x67 , 0x65 , 0x5f , 0x74 , 0x6f , 0x6b , 0x65 , 0x6e , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x0d , 0x6e , 0x65 , 0x78 , 0x74 , 0x50 , 0x61 , 0x67 , 0x65 , 0x54 , 0x6f , 0x6b , 0x65 ,
0x6e , 0x12 , 0x29 , 0x0a , 0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5f , 0x76 , 0x65 ,
0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x22 , 0x8e , 0x01 , 0x0a ,
0x0d , 0x4f , 0x72 , 0x69 , 0x67 , 0x69 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x26 ,
0x0a , 0x0f , 0x6e , 0x65 , 0x78 , 0x74 , 0x5f , 0x70 , 0x61 , 0x67 , 0x65 , 0x5f , 0x74 , 0x6f , 0x6b , 0x65 ,
0x6e , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0d , 0x6e , 0x65 , 0x78 , 0x74 , 0x50 , 0x61 , 0x67 ,
0x65 , 0x54 , 0x6f , 0x6b , 0x65 , 0x6e , 0x12 , 0x14 , 0x0a , 0x05 , 0x6c , 0x69 , 0x6d , 0x69 , 0x74 , 0x18 ,
0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x05 , 0x6c , 0x69 , 0x6d , 0x69 , 0x74 , 0x12 , 0x27 , 0x0a , 0x03 ,
0x6b , 0x65 , 0x79 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4b , 0x65 , 0x79 ,
0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x16 , 0x0a , 0x06 , 0x6f , 0x72 , 0x69 , 0x67 , 0x69 , 0x6e , 0x18 ,
0x04 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x06 , 0x6f , 0x72 , 0x69 , 0x67 , 0x69 , 0x6e , 0x22 , 0xe5 , 0x01 ,
0x0a , 0x12 , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4f , 0x72 , 0x69 , 0x67 , 0x69 , 0x6e ,
0x49 , 0x6e , 0x66 , 0x6f , 0x12 , 0x27 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x0b , 0x32 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4b , 0x65 , 0x79 , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 , 0x23 , 0x0a ,
0x0d , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5f , 0x73 , 0x69 , 0x7a , 0x65 , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x0c , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x53 , 0x69 ,
0x7a , 0x65 , 0x12 , 0x23 , 0x0a , 0x0d , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x5f , 0x68 ,
0x61 , 0x73 , 0x68 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0c , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x48 , 0x61 , 0x73 , 0x68 , 0x12 , 0x16 , 0x0a , 0x06 , 0x6f , 0x72 , 0x69 , 0x67 , 0x69 ,
0x6e , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x06 , 0x6f , 0x72 , 0x69 , 0x67 , 0x69 , 0x6e , 0x12 ,
0x12 , 0x0a , 0x04 , 0x70 , 0x61 , 0x74 , 0x68 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x70 ,
0x61 , 0x74 , 0x68 , 0x12 , 0x12 , 0x0a , 0x04 , 0x68 , 0x61 , 0x73 , 0x68 , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x04 , 0x68 , 0x61 , 0x73 , 0x68 , 0x12 , 0x1c , 0x0a , 0x09 , 0x74 , 0x69 , 0x6d , 0x65 , 0x73 ,
0x74 , 0x61 , 0x6d , 0x70 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x09 , 0x74 , 0x69 , 0x6d , 0x65 ,
0x73 , 0x74 , 0x61 , 0x6d , 0x70 , 0x22 , 0x97 , 0x01 , 0x0a , 0x0e , 0x4f , 0x72 , 0x69 , 0x67 , 0x69 , 0x6e ,
0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x32 , 0x0a , 0x05 , 0x69 , 0x74 , 0x65 , 0x6d ,
0x73 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4f , 0x72 , 0x69 , 0x67 , 0x69 ,
0x6e , 0x49 , 0x6e , 0x66 , 0x6f , 0x52 , 0x05 , 0x69 , 0x74 , 0x65 , 0x6d , 0x73 , 0x12 , 0x26 , 0x0a , 0x0f ,
0x6e , 0x65 , 0x78 , 0x74 , 0x5f , 0x70 , 0x61 , 0x67 , 0x65 , 0x5f , 0x74 , 0x6f , 0x6b , 0x65 , 0x6e , 0x18 ,
0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0d , 0x6e , 0x65 , 0x78 , 0x74 , 0x50 , 0x61 , 0x67 , 0x65 , 0x54 ,
0x6f , 0x6b , 0x65 , 0x6e , 0x12 , 0x29 , 0x0a , 0x10 , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x5f , 0x76 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f ,
0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x22 ,
0x2e , 0x0a , 0x12 , 0x48 , 0x65 , 0x61 , 0x6c , 0x74 , 0x68 , 0x43 , 0x68 , 0x65 , 0x63 , 0x6b , 0x52 , 0x65 ,
0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x18 , 0x0a , 0x07 , 0x73 , 0x65 , 0x72 , 0x76 , 0x69 , 0x63 , 0x65 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x73 , 0x65 , 0x72 , 0x76 , 0x69 , 0x63 , 0x65 , 0x22 ,
0xab , 0x01 , 0x0a , 0x13 , 0x48 , 0x65 , 0x61 , 0x6c , 0x74 , 0x68 , 0x43 , 0x68 , 0x65 , 0x63 , 0x6b , 0x52 ,
0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x43 , 0x0a , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 ,
0x73 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0e , 0x32 , 0x2b , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x2e , 0x48 , 0x65 , 0x61 , 0x6c , 0x74 , 0x68 , 0x43 , 0x68 , 0x65 , 0x63 , 0x6b , 0x52 , 0x65 ,
0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x2e , 0x53 , 0x65 , 0x72 , 0x76 , 0x69 , 0x6e , 0x67 , 0x53 , 0x74 ,
0x61 , 0x74 , 0x75 , 0x73 , 0x52 , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x22 , 0x4f , 0x0a , 0x0d ,
0x53 , 0x65 , 0x72 , 0x76 , 0x69 , 0x6e , 0x67 , 0x53 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x12 , 0x0b , 0x0a ,
0x07 , 0x55 , 0x4e , 0x4b , 0x4e , 0x4f , 0x57 , 0x4e , 0x10 , 0x00 , 0x12 , 0x0b , 0x0a , 0x07 , 0x53 , 0x45 ,
0x52 , 0x56 , 0x49 , 0x4e , 0x47 , 0x10 , 0x01 , 0x12 , 0x0f , 0x0a , 0x0b , 0x4e , 0x4f , 0x54 , 0x5f , 0x53 ,
0x45 , 0x52 , 0x56 , 0x49 , 0x4e , 0x47 , 0x10 , 0x02 , 0x12 , 0x13 , 0x0a , 0x0f , 0x53 , 0x45 , 0x52 , 0x56 ,
0x49 , 0x43 , 0x45 , 0x5f , 0x55 , 0x4e , 0x4b , 0x4e , 0x4f , 0x57 , 0x4e , 0x10 , 0x03 , 0x2a , 0x55 , 0x0a ,
0x11 , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x4f , 0x70 , 0x65 , 0x72 , 0x61 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x12 , 0x0b , 0x0a , 0x07 , 0x55 , 0x4e , 0x4b , 0x4e , 0x4f , 0x57 , 0x4e , 0x10 , 0x00 , 0x12 ,
0x0b , 0x0a , 0x07 , 0x43 , 0x52 , 0x45 , 0x41 , 0x54 , 0x45 , 0x44 , 0x10 , 0x01 , 0x12 , 0x0b , 0x0a , 0x07 ,
0x55 , 0x50 , 0x44 , 0x41 , 0x54 , 0x45 , 0x44 , 0x10 , 0x02 , 0x12 , 0x0b , 0x0a , 0x07 , 0x44 , 0x45 , 0x4c ,
0x45 , 0x54 , 0x45 , 0x44 , 0x10 , 0x03 , 0x12 , 0x0c , 0x0a , 0x08 , 0x42 , 0x4f , 0x4f , 0x4b , 0x4d , 0x41 ,
0x52 , 0x4b , 0x10 , 0x04 , 0x2a , 0x33 , 0x0a , 0x14 , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x56 , 0x65 , 0x72 , 0x73 , 0x69 , 0x6f , 0x6e , 0x4d , 0x61 , 0x74 , 0x63 , 0x68 , 0x12 , 0x10 , 0x0a , 0x0c ,
0x4e , 0x6f , 0x74 , 0x4f , 0x6c , 0x64 , 0x65 , 0x72 , 0x54 , 0x68 , 0x61 , 0x6e , 0x10 , 0x00 , 0x12 , 0x09 ,
0x0a , 0x05 , 0x45 , 0x78 , 0x61 , 0x63 , 0x74 , 0x10 , 0x01 , 0x32 , 0xba , 0x03 , 0x0a , 0x0d , 0x52 , 0x65 ,
0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x53 , 0x74 , 0x6f , 0x72 , 0x65 , 0x12 , 0x35 , 0x0a , 0x04 , 0x52 ,
0x65 , 0x61 , 0x64 , 0x12 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 ,
0x65 , 0x61 , 0x64 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x16 , 0x2e , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x61 , 0x64 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e ,
0x73 , 0x65 , 0x12 , 0x3b , 0x0a , 0x06 , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x12 , 0x17 , 0x2e , 0x72 ,
0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 ,
0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x18 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x2e , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 ,
0x3b , 0x0a , 0x06 , 0x55 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x12 , 0x17 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x55 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 ,
0x73 , 0x74 , 0x1a , 0x18 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x55 , 0x70 ,
0x64 , 0x61 , 0x74 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x3b , 0x0a , 0x06 ,
0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x12 , 0x17 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 ,
0x65 , 0x2e , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a ,
0x18 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 ,
0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x35 , 0x0a , 0x04 , 0x4c , 0x69 , 0x73 ,
0x74 , 0x12 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x73 ,
0x74 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x16 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 ,
0x12 , 0x3a , 0x0a , 0x05 , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x12 , 0x16 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x61 , 0x74 , 0x63 , 0x68 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 ,
0x74 , 0x1a , 0x17 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x57 , 0x61 , 0x74 ,
0x63 , 0x68 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x30 , 0x01 , 0x12 , 0x48 , 0x0a , 0x09 ,
0x49 , 0x73 , 0x48 , 0x65 , 0x61 , 0x6c , 0x74 , 0x68 , 0x79 , 0x12 , 0x1c , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f ,
0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x48 , 0x65 , 0x61 , 0x6c , 0x74 , 0x68 , 0x43 , 0x68 , 0x65 , 0x63 , 0x6b ,
0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x1d , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x2e , 0x48 , 0x65 , 0x61 , 0x6c , 0x74 , 0x68 , 0x43 , 0x68 , 0x65 , 0x63 , 0x6b , 0x52 , 0x65 ,
0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x32 , 0xce , 0x02 , 0x0a , 0x0e , 0x52 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x53 , 0x65 , 0x61 , 0x72 , 0x63 , 0x68 , 0x12 , 0x35 , 0x0a , 0x04 , 0x52 , 0x65 , 0x61 ,
0x64 , 0x12 , 0x15 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x61 ,
0x64 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x16 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x2e , 0x52 , 0x65 , 0x61 , 0x64 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 ,
0x12 , 0x3e , 0x0a , 0x07 , 0x47 , 0x65 , 0x74 , 0x42 , 0x6c , 0x6f , 0x62 , 0x12 , 0x18 , 0x2e , 0x72 , 0x65 ,
0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x47 , 0x65 , 0x74 , 0x42 , 0x6c , 0x6f , 0x62 , 0x52 , 0x65 ,
0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x19 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x2e , 0x47 , 0x65 , 0x74 , 0x42 , 0x6c , 0x6f , 0x62 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 ,
0x12 , 0x3e , 0x0a , 0x07 , 0x48 , 0x69 , 0x73 , 0x74 , 0x6f , 0x72 , 0x79 , 0x12 , 0x18 , 0x2e , 0x72 , 0x65 ,
0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x48 , 0x69 , 0x73 , 0x74 , 0x6f , 0x72 , 0x79 , 0x52 , 0x65 ,
0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x19 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 ,
0x2e , 0x48 , 0x69 , 0x73 , 0x74 , 0x6f , 0x72 , 0x79 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 ,
0x12 , 0x3b , 0x0a , 0x06 , 0x4f , 0x72 , 0x69 , 0x67 , 0x69 , 0x6e , 0x12 , 0x17 , 0x2e , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4f , 0x72 , 0x69 , 0x67 , 0x69 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x73 , 0x74 , 0x1a , 0x18 , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x4f ,
0x72 , 0x69 , 0x67 , 0x69 , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x48 , 0x0a ,
0x09 , 0x49 , 0x73 , 0x48 , 0x65 , 0x61 , 0x6c , 0x74 , 0x68 , 0x79 , 0x12 , 0x1c , 0x2e , 0x72 , 0x65 , 0x73 ,
0x6f , 0x75 , 0x72 , 0x63 , 0x65 , 0x2e , 0x48 , 0x65 , 0x61 , 0x6c , 0x74 , 0x68 , 0x43 , 0x68 , 0x65 , 0x63 ,
0x6b , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x1d , 0x2e , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 ,
0x72 , 0x63 , 0x65 , 0x2e , 0x48 , 0x65 , 0x61 , 0x6c , 0x74 , 0x68 , 0x43 , 0x68 , 0x65 , 0x63 , 0x6b , 0x52 ,
0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x42 , 0x39 , 0x5a , 0x37 , 0x67 , 0x69 , 0x74 , 0x68 , 0x75 ,
0x62 , 0x2e , 0x63 , 0x6f , 0x6d , 0x2f , 0x67 , 0x72 , 0x61 , 0x66 , 0x61 , 0x6e , 0x61 , 0x2f , 0x67 , 0x72 ,
0x61 , 0x66 , 0x61 , 0x6e , 0x61 , 0x2f , 0x70 , 0x6b , 0x67 , 0x2f , 0x73 , 0x74 , 0x6f , 0x72 , 0x61 , 0x67 ,
0x65 , 0x2f , 0x75 , 0x6e , 0x69 , 0x66 , 0x69 , 0x65 , 0x64 , 0x2f , 0x72 , 0x65 , 0x73 , 0x6f , 0x75 , 0x72 ,
0x63 , 0x65 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
}
var (
file_resource_proto_rawDescOnce sync . Once
file_resource_proto_rawDescData = file_resource_proto_rawDesc
)
func file_resource_proto_rawDescGZIP ( ) [ ] byte {
file_resource_proto_rawDescOnce . Do ( func ( ) {
file_resource_proto_rawDescData = protoimpl . X . CompressGZIP ( file_resource_proto_rawDescData )
} )
return file_resource_proto_rawDescData
}
var file_resource_proto_enumTypes = make ( [ ] protoimpl . EnumInfo , 5 )
var file_resource_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 30 )
var file_resource_proto_goTypes = [ ] interface { } {
( ResourceOperation ) ( 0 ) , // 0: resource.ResourceOperation
( ResourceVersionMatch ) ( 0 ) , // 1: resource.ResourceVersionMatch
( LinkBlob_Action ) ( 0 ) , // 2: resource.LinkBlob.Action
( Sort_Order ) ( 0 ) , // 3: resource.Sort.Order
( HealthCheckResponse_ServingStatus ) ( 0 ) , // 4: resource.HealthCheckResponse.ServingStatus
( * ResourceKey ) ( nil ) , // 5: resource.ResourceKey
( * ResourceWrapper ) ( nil ) , // 6: resource.ResourceWrapper
( * ResourceMeta ) ( nil ) , // 7: resource.ResourceMeta
( * BlobInfo ) ( nil ) , // 8: resource.BlobInfo
( * StatusResult ) ( nil ) , // 9: resource.StatusResult
( * LinkBlob ) ( nil ) , // 10: resource.LinkBlob
( * CreateRequest ) ( nil ) , // 11: resource.CreateRequest
( * CreateResponse ) ( nil ) , // 12: resource.CreateResponse
( * UpdateRequest ) ( nil ) , // 13: resource.UpdateRequest
( * UpdateResponse ) ( nil ) , // 14: resource.UpdateResponse
( * DeleteRequest ) ( nil ) , // 15: resource.DeleteRequest
( * DeleteResponse ) ( nil ) , // 16: resource.DeleteResponse
( * ReadRequest ) ( nil ) , // 17: resource.ReadRequest
( * ReadResponse ) ( nil ) , // 18: resource.ReadResponse
( * GetBlobRequest ) ( nil ) , // 19: resource.GetBlobRequest
( * GetBlobResponse ) ( nil ) , // 20: resource.GetBlobResponse
( * Requirement ) ( nil ) , // 21: resource.Requirement
( * Sort ) ( nil ) , // 22: resource.Sort
( * ListOptions ) ( nil ) , // 23: resource.ListOptions
( * ListRequest ) ( nil ) , // 24: resource.ListRequest
( * ListResponse ) ( nil ) , // 25: resource.ListResponse
( * WatchRequest ) ( nil ) , // 26: resource.WatchRequest
( * WatchResponse ) ( nil ) , // 27: resource.WatchResponse
( * HistoryRequest ) ( nil ) , // 28: resource.HistoryRequest
( * HistoryResponse ) ( nil ) , // 29: resource.HistoryResponse
( * OriginRequest ) ( nil ) , // 30: resource.OriginRequest
( * ResourceOriginInfo ) ( nil ) , // 31: resource.ResourceOriginInfo
( * OriginResponse ) ( nil ) , // 32: resource.OriginResponse
( * HealthCheckRequest ) ( nil ) , // 33: resource.HealthCheckRequest
( * HealthCheckResponse ) ( nil ) , // 34: resource.HealthCheckResponse
}
var file_resource_proto_depIdxs = [ ] int32 {
0 , // 0: resource.ResourceWrapper.operation:type_name -> resource.ResourceOperation
0 , // 1: resource.ResourceMeta.operation:type_name -> resource.ResourceOperation
5 , // 2: resource.CreateRequest.key:type_name -> resource.ResourceKey
10 , // 3: resource.CreateRequest.blob:type_name -> resource.LinkBlob
9 , // 4: resource.CreateResponse.status:type_name -> resource.StatusResult
5 , // 5: resource.UpdateRequest.key:type_name -> resource.ResourceKey
10 , // 6: resource.UpdateRequest.blob:type_name -> resource.LinkBlob
9 , // 7: resource.UpdateResponse.status:type_name -> resource.StatusResult
5 , // 8: resource.DeleteRequest.key:type_name -> resource.ResourceKey
9 , // 9: resource.DeleteResponse.status:type_name -> resource.StatusResult
5 , // 10: resource.ReadRequest.key:type_name -> resource.ResourceKey
9 , // 11: resource.ReadResponse.status:type_name -> resource.StatusResult
5 , // 12: resource.GetBlobRequest.key:type_name -> resource.ResourceKey
9 , // 13: resource.GetBlobResponse.status:type_name -> resource.StatusResult
8 , // 14: resource.GetBlobResponse.info:type_name -> resource.BlobInfo
3 , // 15: resource.Sort.order:type_name -> resource.Sort.Order
5 , // 16: resource.ListOptions.key:type_name -> resource.ResourceKey
21 , // 17: resource.ListOptions.labels:type_name -> resource.Requirement
21 , // 18: resource.ListOptions.fields:type_name -> resource.Requirement
1 , // 19: resource.ListRequest.version_match:type_name -> resource.ResourceVersionMatch
23 , // 20: resource.ListRequest.options:type_name -> resource.ListOptions
22 , // 21: resource.ListRequest.sort:type_name -> resource.Sort
6 , // 22: resource.ListResponse.items:type_name -> resource.ResourceWrapper
23 , // 23: resource.WatchRequest.options:type_name -> resource.ListOptions
6 , // 24: resource.WatchResponse.resource:type_name -> resource.ResourceWrapper
6 , // 25: resource.WatchResponse.previous:type_name -> resource.ResourceWrapper
5 , // 26: resource.HistoryRequest.key:type_name -> resource.ResourceKey
7 , // 27: resource.HistoryResponse.items:type_name -> resource.ResourceMeta
5 , // 28: resource.OriginRequest.key:type_name -> resource.ResourceKey
5 , // 29: resource.ResourceOriginInfo.key:type_name -> resource.ResourceKey
31 , // 30: resource.OriginResponse.items:type_name -> resource.ResourceOriginInfo
4 , // 31: resource.HealthCheckResponse.status:type_name -> resource.HealthCheckResponse.ServingStatus
17 , // 32: resource.ResourceStore.Read:input_type -> resource.ReadRequest
11 , // 33: resource.ResourceStore.Create:input_type -> resource.CreateRequest
13 , // 34: resource.ResourceStore.Update:input_type -> resource.UpdateRequest
15 , // 35: resource.ResourceStore.Delete:input_type -> resource.DeleteRequest
24 , // 36: resource.ResourceStore.List:input_type -> resource.ListRequest
26 , // 37: resource.ResourceStore.Watch:input_type -> resource.WatchRequest
33 , // 38: resource.ResourceStore.IsHealthy:input_type -> resource.HealthCheckRequest
17 , // 39: resource.ResourceSearch.Read:input_type -> resource.ReadRequest
19 , // 40: resource.ResourceSearch.GetBlob:input_type -> resource.GetBlobRequest
28 , // 41: resource.ResourceSearch.History:input_type -> resource.HistoryRequest
30 , // 42: resource.ResourceSearch.Origin:input_type -> resource.OriginRequest
33 , // 43: resource.ResourceSearch.IsHealthy:input_type -> resource.HealthCheckRequest
18 , // 44: resource.ResourceStore.Read:output_type -> resource.ReadResponse
12 , // 45: resource.ResourceStore.Create:output_type -> resource.CreateResponse
14 , // 46: resource.ResourceStore.Update:output_type -> resource.UpdateResponse
16 , // 47: resource.ResourceStore.Delete:output_type -> resource.DeleteResponse
25 , // 48: resource.ResourceStore.List:output_type -> resource.ListResponse
27 , // 49: resource.ResourceStore.Watch:output_type -> resource.WatchResponse
34 , // 50: resource.ResourceStore.IsHealthy:output_type -> resource.HealthCheckResponse
18 , // 51: resource.ResourceSearch.Read:output_type -> resource.ReadResponse
20 , // 52: resource.ResourceSearch.GetBlob:output_type -> resource.GetBlobResponse
29 , // 53: resource.ResourceSearch.History:output_type -> resource.HistoryResponse
32 , // 54: resource.ResourceSearch.Origin:output_type -> resource.OriginResponse
34 , // 55: resource.ResourceSearch.IsHealthy:output_type -> resource.HealthCheckResponse
44 , // [44:56] is the sub-list for method output_type
32 , // [32:44] is the sub-list for method input_type
32 , // [32:32] is the sub-list for extension type_name
32 , // [32:32] is the sub-list for extension extendee
0 , // [0:32] is the sub-list for field type_name
}
func init ( ) { file_resource_proto_init ( ) }
func file_resource_proto_init ( ) {
if File_resource_proto != nil {
return
}
if ! protoimpl . UnsafeEnabled {
file_resource_proto_msgTypes [ 0 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ResourceKey ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 1 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ResourceWrapper ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 2 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ResourceMeta ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 3 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * BlobInfo ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 4 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * StatusResult ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 5 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * LinkBlob ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 6 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * CreateRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 7 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * CreateResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 8 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * UpdateRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 9 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * UpdateResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 10 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * DeleteRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 11 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * DeleteResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 12 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ReadRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 13 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ReadResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 14 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * GetBlobRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 15 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * GetBlobResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 16 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Requirement ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 17 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Sort ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 18 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ListOptions ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 19 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ListRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 20 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ListResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 21 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * WatchRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 22 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * WatchResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 23 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * HistoryRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 24 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * HistoryResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 25 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * OriginRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 26 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ResourceOriginInfo ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 27 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * OriginResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 28 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * HealthCheckRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_resource_proto_msgTypes [ 29 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * HealthCheckResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
}
type x struct { }
out := protoimpl . TypeBuilder {
File : protoimpl . DescBuilder {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_resource_proto_rawDesc ,
NumEnums : 5 ,
NumMessages : 30 ,
NumExtensions : 0 ,
NumServices : 2 ,
} ,
GoTypes : file_resource_proto_goTypes ,
DependencyIndexes : file_resource_proto_depIdxs ,
EnumInfos : file_resource_proto_enumTypes ,
MessageInfos : file_resource_proto_msgTypes ,
} . Build ( )
File_resource_proto = out . File
file_resource_proto_rawDesc = nil
file_resource_proto_goTypes = nil
file_resource_proto_depIdxs = nil
}