// //Copyright © 2022 ESO Maintainer Team // //Licensed under the Apache License, Version 2.0 (the "License"); //you may not use this file except in compliance with the License. //You may obtain a copy of the License at // //http://www.apache.org/licenses/LICENSE-2.0 // //Unless required by applicable law or agreed to in writing, software //distributed under the License is distributed on an "AS IS" BASIS, //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //See the License for the specific language governing permissions and //limitations under the License. // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.28.1 // protoc v3.21.12 // source: pkg/plugin/grpc/provider.proto package plugin_proto 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 GetSecretRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Store []byte `protobuf:"bytes,1,opt,name=store,proto3" json:"store,omitempty"` Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"` Objects []byte `protobuf:"bytes,3,opt,name=objects,proto3" json:"objects,omitempty"` RemoteRef *RemoteRef `protobuf:"bytes,4,opt,name=remoteRef,proto3" json:"remoteRef,omitempty"` } func (x *GetSecretRequest) Reset() { *x = GetSecretRequest{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetSecretRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetSecretRequest) ProtoMessage() {} func (x *GetSecretRequest) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 GetSecretRequest.ProtoReflect.Descriptor instead. func (*GetSecretRequest) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{0} } func (x *GetSecretRequest) GetStore() []byte { if x != nil { return x.Store } return nil } func (x *GetSecretRequest) GetNamespace() string { if x != nil { return x.Namespace } return "" } func (x *GetSecretRequest) GetObjects() []byte { if x != nil { return x.Objects } return nil } func (x *GetSecretRequest) GetRemoteRef() *RemoteRef { if x != nil { return x.RemoteRef } return nil } type GetSecretReply struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Secret []byte `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"` Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"` } func (x *GetSecretReply) Reset() { *x = GetSecretReply{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetSecretReply) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetSecretReply) ProtoMessage() {} func (x *GetSecretReply) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 GetSecretReply.ProtoReflect.Descriptor instead. func (*GetSecretReply) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{1} } func (x *GetSecretReply) GetSecret() []byte { if x != nil { return x.Secret } return nil } func (x *GetSecretReply) GetError() string { if x != nil { return x.Error } return "" } type PushSecretRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Store []byte `protobuf:"bytes,1,opt,name=store,proto3" json:"store,omitempty"` Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"` Objects []byte `protobuf:"bytes,3,opt,name=objects,proto3" json:"objects,omitempty"` Secret []byte `protobuf:"bytes,4,opt,name=secret,proto3" json:"secret,omitempty"` RemoteRef *PushRemoteRef `protobuf:"bytes,5,opt,name=remoteRef,proto3" json:"remoteRef,omitempty"` } func (x *PushSecretRequest) Reset() { *x = PushSecretRequest{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *PushSecretRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*PushSecretRequest) ProtoMessage() {} func (x *PushSecretRequest) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 PushSecretRequest.ProtoReflect.Descriptor instead. func (*PushSecretRequest) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{2} } func (x *PushSecretRequest) GetStore() []byte { if x != nil { return x.Store } return nil } func (x *PushSecretRequest) GetNamespace() string { if x != nil { return x.Namespace } return "" } func (x *PushSecretRequest) GetObjects() []byte { if x != nil { return x.Objects } return nil } func (x *PushSecretRequest) GetSecret() []byte { if x != nil { return x.Secret } return nil } func (x *PushSecretRequest) GetRemoteRef() *PushRemoteRef { if x != nil { return x.RemoteRef } return nil } type PushSecretReply struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"` } func (x *PushSecretReply) Reset() { *x = PushSecretReply{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *PushSecretReply) String() string { return protoimpl.X.MessageStringOf(x) } func (*PushSecretReply) ProtoMessage() {} func (x *PushSecretReply) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 PushSecretReply.ProtoReflect.Descriptor instead. func (*PushSecretReply) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{3} } func (x *PushSecretReply) GetError() string { if x != nil { return x.Error } return "" } type DeleteSecretRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Store []byte `protobuf:"bytes,1,opt,name=store,proto3" json:"store,omitempty"` Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"` Objects []byte `protobuf:"bytes,3,opt,name=objects,proto3" json:"objects,omitempty"` RemoteRef *PushRemoteRef `protobuf:"bytes,4,opt,name=remoteRef,proto3" json:"remoteRef,omitempty"` } func (x *DeleteSecretRequest) Reset() { *x = DeleteSecretRequest{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *DeleteSecretRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*DeleteSecretRequest) ProtoMessage() {} func (x *DeleteSecretRequest) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 DeleteSecretRequest.ProtoReflect.Descriptor instead. func (*DeleteSecretRequest) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{4} } func (x *DeleteSecretRequest) GetStore() []byte { if x != nil { return x.Store } return nil } func (x *DeleteSecretRequest) GetNamespace() string { if x != nil { return x.Namespace } return "" } func (x *DeleteSecretRequest) GetObjects() []byte { if x != nil { return x.Objects } return nil } func (x *DeleteSecretRequest) GetRemoteRef() *PushRemoteRef { if x != nil { return x.RemoteRef } return nil } type DeleteSecretReply struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"` } func (x *DeleteSecretReply) Reset() { *x = DeleteSecretReply{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *DeleteSecretReply) String() string { return protoimpl.X.MessageStringOf(x) } func (*DeleteSecretReply) ProtoMessage() {} func (x *DeleteSecretReply) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 DeleteSecretReply.ProtoReflect.Descriptor instead. func (*DeleteSecretReply) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{5} } func (x *DeleteSecretReply) GetError() string { if x != nil { return x.Error } return "" } type GetSecretMapRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Store []byte `protobuf:"bytes,1,opt,name=store,proto3" json:"store,omitempty"` Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"` Objects []byte `protobuf:"bytes,3,opt,name=objects,proto3" json:"objects,omitempty"` RemoteRef *RemoteRef `protobuf:"bytes,4,opt,name=remoteRef,proto3" json:"remoteRef,omitempty"` } func (x *GetSecretMapRequest) Reset() { *x = GetSecretMapRequest{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetSecretMapRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetSecretMapRequest) ProtoMessage() {} func (x *GetSecretMapRequest) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 GetSecretMapRequest.ProtoReflect.Descriptor instead. func (*GetSecretMapRequest) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{6} } func (x *GetSecretMapRequest) GetStore() []byte { if x != nil { return x.Store } return nil } func (x *GetSecretMapRequest) GetNamespace() string { if x != nil { return x.Namespace } return "" } func (x *GetSecretMapRequest) GetObjects() []byte { if x != nil { return x.Objects } return nil } func (x *GetSecretMapRequest) GetRemoteRef() *RemoteRef { if x != nil { return x.RemoteRef } return nil } type GetSecretMapReply struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Data map[string][]byte `protobuf:"bytes,9,rep,name=data,proto3" json:"data,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"` } func (x *GetSecretMapReply) Reset() { *x = GetSecretMapReply{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetSecretMapReply) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetSecretMapReply) ProtoMessage() {} func (x *GetSecretMapReply) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 GetSecretMapReply.ProtoReflect.Descriptor instead. func (*GetSecretMapReply) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{7} } func (x *GetSecretMapReply) GetData() map[string][]byte { if x != nil { return x.Data } return nil } func (x *GetSecretMapReply) GetError() string { if x != nil { return x.Error } return "" } type GetAllSecretsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Store []byte `protobuf:"bytes,1,opt,name=store,proto3" json:"store,omitempty"` Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"` Objects []byte `protobuf:"bytes,3,opt,name=objects,proto3" json:"objects,omitempty"` RemoteRef *ExternalSecretFind `protobuf:"bytes,4,opt,name=remoteRef,proto3" json:"remoteRef,omitempty"` } func (x *GetAllSecretsRequest) Reset() { *x = GetAllSecretsRequest{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetAllSecretsRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetAllSecretsRequest) ProtoMessage() {} func (x *GetAllSecretsRequest) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 GetAllSecretsRequest.ProtoReflect.Descriptor instead. func (*GetAllSecretsRequest) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{8} } func (x *GetAllSecretsRequest) GetStore() []byte { if x != nil { return x.Store } return nil } func (x *GetAllSecretsRequest) GetNamespace() string { if x != nil { return x.Namespace } return "" } func (x *GetAllSecretsRequest) GetObjects() []byte { if x != nil { return x.Objects } return nil } func (x *GetAllSecretsRequest) GetRemoteRef() *ExternalSecretFind { if x != nil { return x.RemoteRef } return nil } type GetAllSecretsReply struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Data map[string][]byte `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"` } func (x *GetAllSecretsReply) Reset() { *x = GetAllSecretsReply{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetAllSecretsReply) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetAllSecretsReply) ProtoMessage() {} func (x *GetAllSecretsReply) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 GetAllSecretsReply.ProtoReflect.Descriptor instead. func (*GetAllSecretsReply) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{9} } func (x *GetAllSecretsReply) GetData() map[string][]byte { if x != nil { return x.Data } return nil } func (x *GetAllSecretsReply) GetError() string { if x != nil { return x.Error } return "" } type RemoteRef struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` MetadataPolicy string `protobuf:"bytes,2,opt,name=metadataPolicy,proto3" json:"metadataPolicy,omitempty"` Property string `protobuf:"bytes,3,opt,name=property,proto3" json:"property,omitempty"` Version string `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"` ConversionStrategy string `protobuf:"bytes,5,opt,name=conversionStrategy,proto3" json:"conversionStrategy,omitempty"` DecodingStrategy string `protobuf:"bytes,6,opt,name=decodingStrategy,proto3" json:"decodingStrategy,omitempty"` } func (x *RemoteRef) Reset() { *x = RemoteRef{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *RemoteRef) String() string { return protoimpl.X.MessageStringOf(x) } func (*RemoteRef) ProtoMessage() {} func (x *RemoteRef) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 RemoteRef.ProtoReflect.Descriptor instead. func (*RemoteRef) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{10} } func (x *RemoteRef) GetKey() string { if x != nil { return x.Key } return "" } func (x *RemoteRef) GetMetadataPolicy() string { if x != nil { return x.MetadataPolicy } return "" } func (x *RemoteRef) GetProperty() string { if x != nil { return x.Property } return "" } func (x *RemoteRef) GetVersion() string { if x != nil { return x.Version } return "" } func (x *RemoteRef) GetConversionStrategy() string { if x != nil { return x.ConversionStrategy } return "" } func (x *RemoteRef) GetDecodingStrategy() string { if x != nil { return x.DecodingStrategy } return "" } type PushRemoteRef struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields RemoteKey string `protobuf:"bytes,1,opt,name=remoteKey,proto3" json:"remoteKey,omitempty"` Property string `protobuf:"bytes,2,opt,name=property,proto3" json:"property,omitempty"` } func (x *PushRemoteRef) Reset() { *x = PushRemoteRef{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *PushRemoteRef) String() string { return protoimpl.X.MessageStringOf(x) } func (*PushRemoteRef) ProtoMessage() {} func (x *PushRemoteRef) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 PushRemoteRef.ProtoReflect.Descriptor instead. func (*PushRemoteRef) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{11} } func (x *PushRemoteRef) GetRemoteKey() string { if x != nil { return x.RemoteKey } return "" } func (x *PushRemoteRef) GetProperty() string { if x != nil { return x.Property } return "" } type ExternalSecretFind struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"` FindNameRegexp string `protobuf:"bytes,2,opt,name=findNameRegexp,proto3" json:"findNameRegexp,omitempty"` Tags map[string]string `protobuf:"bytes,3,rep,name=tags,proto3" json:"tags,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` ConversionStrategy string `protobuf:"bytes,4,opt,name=conversionStrategy,proto3" json:"conversionStrategy,omitempty"` DecodingStrategy string `protobuf:"bytes,5,opt,name=decodingStrategy,proto3" json:"decodingStrategy,omitempty"` } func (x *ExternalSecretFind) Reset() { *x = ExternalSecretFind{} if protoimpl.UnsafeEnabled { mi := &file_pkg_plugin_grpc_provider_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ExternalSecretFind) String() string { return protoimpl.X.MessageStringOf(x) } func (*ExternalSecretFind) ProtoMessage() {} func (x *ExternalSecretFind) ProtoReflect() protoreflect.Message { mi := &file_pkg_plugin_grpc_provider_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 ExternalSecretFind.ProtoReflect.Descriptor instead. func (*ExternalSecretFind) Descriptor() ([]byte, []int) { return file_pkg_plugin_grpc_provider_proto_rawDescGZIP(), []int{12} } func (x *ExternalSecretFind) GetPath() string { if x != nil { return x.Path } return "" } func (x *ExternalSecretFind) GetFindNameRegexp() string { if x != nil { return x.FindNameRegexp } return "" } func (x *ExternalSecretFind) GetTags() map[string]string { if x != nil { return x.Tags } return nil } func (x *ExternalSecretFind) GetConversionStrategy() string { if x != nil { return x.ConversionStrategy } return "" } func (x *ExternalSecretFind) GetDecodingStrategy() string { if x != nil { return x.DecodingStrategy } return "" } var File_pkg_plugin_grpc_provider_proto protoreflect.FileDescriptor var file_pkg_plugin_grpc_provider_proto_rawDesc = []byte{ 0x0a, 0x1e, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x2f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x22, 0x91, 0x01, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x73, 0x74, 0x6f, 0x72, 0x65, 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, 0x18, 0x0a, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x2f, 0x0a, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x52, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x22, 0x3e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0xae, 0x01, 0x0a, 0x11, 0x50, 0x75, 0x73, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x73, 0x74, 0x6f, 0x72, 0x65, 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, 0x18, 0x0a, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x33, 0x0a, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x52, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x22, 0x27, 0x0a, 0x0f, 0x50, 0x75, 0x73, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x98, 0x01, 0x0a, 0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x73, 0x74, 0x6f, 0x72, 0x65, 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, 0x18, 0x0a, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x33, 0x0a, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x52, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x22, 0x29, 0x0a, 0x11, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x94, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x73, 0x74, 0x6f, 0x72, 0x65, 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, 0x18, 0x0a, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x2f, 0x0a, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x52, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x22, 0x9b, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x37, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a, 0x37, 0x0a, 0x09, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 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, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x9e, 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x73, 0x74, 0x6f, 0x72, 0x65, 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, 0x18, 0x0a, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x38, 0x0a, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x22, 0x9d, 0x01, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x38, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a, 0x37, 0x0a, 0x09, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 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, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xd7, 0x01, 0x0a, 0x09, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x12, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x2a, 0x0a, 0x10, 0x64, 0x65, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x64, 0x65, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x22, 0x49, 0x0a, 0x0d, 0x50, 0x75, 0x73, 0x68, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x66, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x22, 0x9f, 0x02, 0x0a, 0x12, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x46, 0x69, 0x6e, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x26, 0x0a, 0x0e, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x67, 0x65, 0x78, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x67, 0x65, 0x78, 0x70, 0x12, 0x38, 0x0a, 0x04, 0x74, 0x61, 0x67, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x46, 0x69, 0x6e, 0x64, 0x2e, 0x54, 0x61, 0x67, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x74, 0x61, 0x67, 0x73, 0x12, 0x2e, 0x0a, 0x12, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x2a, 0x0a, 0x10, 0x64, 0x65, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x64, 0x65, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x1a, 0x37, 0x0a, 0x09, 0x54, 0x61, 0x67, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x32, 0xf5, 0x02, 0x0a, 0x0d, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x12, 0x3f, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x18, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x0a, 0x50, 0x75, 0x73, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x19, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x1b, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4d, 0x61, 0x70, 0x12, 0x1b, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x12, 0x1c, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x42, 0x87, 0x01, 0x0a, 0x23, 0x69, 0x6f, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x42, 0x13, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( file_pkg_plugin_grpc_provider_proto_rawDescOnce sync.Once file_pkg_plugin_grpc_provider_proto_rawDescData = file_pkg_plugin_grpc_provider_proto_rawDesc ) func file_pkg_plugin_grpc_provider_proto_rawDescGZIP() []byte { file_pkg_plugin_grpc_provider_proto_rawDescOnce.Do(func() { file_pkg_plugin_grpc_provider_proto_rawDescData = protoimpl.X.CompressGZIP(file_pkg_plugin_grpc_provider_proto_rawDescData) }) return file_pkg_plugin_grpc_provider_proto_rawDescData } var file_pkg_plugin_grpc_provider_proto_msgTypes = make([]protoimpl.MessageInfo, 16) var file_pkg_plugin_grpc_provider_proto_goTypes = []interface{}{ (*GetSecretRequest)(nil), // 0: plugin.GetSecretRequest (*GetSecretReply)(nil), // 1: plugin.GetSecretReply (*PushSecretRequest)(nil), // 2: plugin.PushSecretRequest (*PushSecretReply)(nil), // 3: plugin.PushSecretReply (*DeleteSecretRequest)(nil), // 4: plugin.DeleteSecretRequest (*DeleteSecretReply)(nil), // 5: plugin.DeleteSecretReply (*GetSecretMapRequest)(nil), // 6: plugin.GetSecretMapRequest (*GetSecretMapReply)(nil), // 7: plugin.GetSecretMapReply (*GetAllSecretsRequest)(nil), // 8: plugin.GetAllSecretsRequest (*GetAllSecretsReply)(nil), // 9: plugin.GetAllSecretsReply (*RemoteRef)(nil), // 10: plugin.RemoteRef (*PushRemoteRef)(nil), // 11: plugin.PushRemoteRef (*ExternalSecretFind)(nil), // 12: plugin.ExternalSecretFind nil, // 13: plugin.GetSecretMapReply.DataEntry nil, // 14: plugin.GetAllSecretsReply.DataEntry nil, // 15: plugin.ExternalSecretFind.TagsEntry } var file_pkg_plugin_grpc_provider_proto_depIdxs = []int32{ 10, // 0: plugin.GetSecretRequest.remoteRef:type_name -> plugin.RemoteRef 11, // 1: plugin.PushSecretRequest.remoteRef:type_name -> plugin.PushRemoteRef 11, // 2: plugin.DeleteSecretRequest.remoteRef:type_name -> plugin.PushRemoteRef 10, // 3: plugin.GetSecretMapRequest.remoteRef:type_name -> plugin.RemoteRef 13, // 4: plugin.GetSecretMapReply.data:type_name -> plugin.GetSecretMapReply.DataEntry 12, // 5: plugin.GetAllSecretsRequest.remoteRef:type_name -> plugin.ExternalSecretFind 14, // 6: plugin.GetAllSecretsReply.data:type_name -> plugin.GetAllSecretsReply.DataEntry 15, // 7: plugin.ExternalSecretFind.tags:type_name -> plugin.ExternalSecretFind.TagsEntry 0, // 8: plugin.SecretsClient.GetSecret:input_type -> plugin.GetSecretRequest 2, // 9: plugin.SecretsClient.PushSecret:input_type -> plugin.PushSecretRequest 4, // 10: plugin.SecretsClient.DeleteSecret:input_type -> plugin.DeleteSecretRequest 6, // 11: plugin.SecretsClient.GetSecretMap:input_type -> plugin.GetSecretMapRequest 8, // 12: plugin.SecretsClient.GetAllSecrets:input_type -> plugin.GetAllSecretsRequest 1, // 13: plugin.SecretsClient.GetSecret:output_type -> plugin.GetSecretReply 3, // 14: plugin.SecretsClient.PushSecret:output_type -> plugin.PushSecretReply 5, // 15: plugin.SecretsClient.DeleteSecret:output_type -> plugin.DeleteSecretReply 7, // 16: plugin.SecretsClient.GetSecretMap:output_type -> plugin.GetSecretMapReply 9, // 17: plugin.SecretsClient.GetAllSecrets:output_type -> plugin.GetAllSecretsReply 13, // [13:18] is the sub-list for method output_type 8, // [8:13] is the sub-list for method input_type 8, // [8:8] is the sub-list for extension type_name 8, // [8:8] is the sub-list for extension extendee 0, // [0:8] is the sub-list for field type_name } func init() { file_pkg_plugin_grpc_provider_proto_init() } func file_pkg_plugin_grpc_provider_proto_init() { if File_pkg_plugin_grpc_provider_proto != nil { return } if !protoimpl.UnsafeEnabled { file_pkg_plugin_grpc_provider_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetSecretRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetSecretReply); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PushSecretRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PushSecretReply); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteSecretRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DeleteSecretReply); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetSecretMapRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetSecretMapReply); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetAllSecretsRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetAllSecretsReply); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RemoteRef); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PushRemoteRef); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_plugin_grpc_provider_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExternalSecretFind); 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_pkg_plugin_grpc_provider_proto_rawDesc, NumEnums: 0, NumMessages: 16, NumExtensions: 0, NumServices: 1, }, GoTypes: file_pkg_plugin_grpc_provider_proto_goTypes, DependencyIndexes: file_pkg_plugin_grpc_provider_proto_depIdxs, MessageInfos: file_pkg_plugin_grpc_provider_proto_msgTypes, }.Build() File_pkg_plugin_grpc_provider_proto = out.File file_pkg_plugin_grpc_provider_proto_rawDesc = nil file_pkg_plugin_grpc_provider_proto_goTypes = nil file_pkg_plugin_grpc_provider_proto_depIdxs = nil }