| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- /*
- Copyright © The ESO Authors
- 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
- https://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.35.1
- // protoc v5.29.3
- // source: providers/v2/common/proto/generator/generator.proto
- package generator
- 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)
- )
- // GeneratorRef references a generator custom resource.
- type GeneratorRef struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- // Specify the apiVersion of the generator resource
- ApiVersion string `protobuf:"bytes,1,opt,name=api_version,json=apiVersion,proto3" json:"api_version,omitempty"`
- // Specify the Kind of the generator resource
- Kind string `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
- // Specify the name of the generator resource
- Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
- // Namespace of the generator resource (optional for cluster-scoped generators)
- Namespace string `protobuf:"bytes,4,opt,name=namespace,proto3" json:"namespace,omitempty"`
- }
- func (x *GeneratorRef) Reset() {
- *x = GeneratorRef{}
- mi := &file_providers_v2_common_proto_generator_generator_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GeneratorRef) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GeneratorRef) ProtoMessage() {}
- func (x *GeneratorRef) ProtoReflect() protoreflect.Message {
- mi := &file_providers_v2_common_proto_generator_generator_proto_msgTypes[0]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GeneratorRef.ProtoReflect.Descriptor instead.
- func (*GeneratorRef) Descriptor() ([]byte, []int) {
- return file_providers_v2_common_proto_generator_generator_proto_rawDescGZIP(), []int{0}
- }
- func (x *GeneratorRef) GetApiVersion() string {
- if x != nil {
- return x.ApiVersion
- }
- return ""
- }
- func (x *GeneratorRef) GetKind() string {
- if x != nil {
- return x.Kind
- }
- return ""
- }
- func (x *GeneratorRef) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *GeneratorRef) GetNamespace() string {
- if x != nil {
- return x.Namespace
- }
- return ""
- }
- // GenerateRequest contains the information needed to generate secrets
- type GenerateRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- // Reference to the generator resource
- GeneratorRef *GeneratorRef `protobuf:"bytes,1,opt,name=generator_ref,json=generatorRef,proto3" json:"generator_ref,omitempty"`
- // Namespace of the ExternalSecret making the request (for validation)
- SourceNamespace string `protobuf:"bytes,2,opt,name=source_namespace,json=sourceNamespace,proto3" json:"source_namespace,omitempty"`
- }
- func (x *GenerateRequest) Reset() {
- *x = GenerateRequest{}
- mi := &file_providers_v2_common_proto_generator_generator_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GenerateRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GenerateRequest) ProtoMessage() {}
- func (x *GenerateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_providers_v2_common_proto_generator_generator_proto_msgTypes[1]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GenerateRequest.ProtoReflect.Descriptor instead.
- func (*GenerateRequest) Descriptor() ([]byte, []int) {
- return file_providers_v2_common_proto_generator_generator_proto_rawDescGZIP(), []int{1}
- }
- func (x *GenerateRequest) GetGeneratorRef() *GeneratorRef {
- if x != nil {
- return x.GeneratorRef
- }
- return nil
- }
- func (x *GenerateRequest) GetSourceNamespace() string {
- if x != nil {
- return x.SourceNamespace
- }
- return ""
- }
- // GenerateResponse contains the generated secrets and optional state
- type GenerateResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- // Map of secret keys to their values
- Secrets map[string][]byte `protobuf:"bytes,1,rep,name=secrets,proto3" json:"secrets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
- // Optional state that can be used during cleanup
- // This is provider-specific and opaque to the controller
- State []byte `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
- }
- func (x *GenerateResponse) Reset() {
- *x = GenerateResponse{}
- mi := &file_providers_v2_common_proto_generator_generator_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GenerateResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GenerateResponse) ProtoMessage() {}
- func (x *GenerateResponse) ProtoReflect() protoreflect.Message {
- mi := &file_providers_v2_common_proto_generator_generator_proto_msgTypes[2]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GenerateResponse.ProtoReflect.Descriptor instead.
- func (*GenerateResponse) Descriptor() ([]byte, []int) {
- return file_providers_v2_common_proto_generator_generator_proto_rawDescGZIP(), []int{2}
- }
- func (x *GenerateResponse) GetSecrets() map[string][]byte {
- if x != nil {
- return x.Secrets
- }
- return nil
- }
- func (x *GenerateResponse) GetState() []byte {
- if x != nil {
- return x.State
- }
- return nil
- }
- // CleanupRequest contains the information needed to cleanup resources
- type CleanupRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- // Reference to the generator resource
- GeneratorRef *GeneratorRef `protobuf:"bytes,1,opt,name=generator_ref,json=generatorRef,proto3" json:"generator_ref,omitempty"`
- // State returned from the Generate call
- State []byte `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
- // Namespace of the ExternalSecret making the request (for validation)
- SourceNamespace string `protobuf:"bytes,3,opt,name=source_namespace,json=sourceNamespace,proto3" json:"source_namespace,omitempty"`
- }
- func (x *CleanupRequest) Reset() {
- *x = CleanupRequest{}
- mi := &file_providers_v2_common_proto_generator_generator_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *CleanupRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CleanupRequest) ProtoMessage() {}
- func (x *CleanupRequest) ProtoReflect() protoreflect.Message {
- mi := &file_providers_v2_common_proto_generator_generator_proto_msgTypes[3]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use CleanupRequest.ProtoReflect.Descriptor instead.
- func (*CleanupRequest) Descriptor() ([]byte, []int) {
- return file_providers_v2_common_proto_generator_generator_proto_rawDescGZIP(), []int{3}
- }
- func (x *CleanupRequest) GetGeneratorRef() *GeneratorRef {
- if x != nil {
- return x.GeneratorRef
- }
- return nil
- }
- func (x *CleanupRequest) GetState() []byte {
- if x != nil {
- return x.State
- }
- return nil
- }
- func (x *CleanupRequest) GetSourceNamespace() string {
- if x != nil {
- return x.SourceNamespace
- }
- return ""
- }
- // CleanupResponse is the response from cleanup
- type CleanupResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- }
- func (x *CleanupResponse) Reset() {
- *x = CleanupResponse{}
- mi := &file_providers_v2_common_proto_generator_generator_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *CleanupResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CleanupResponse) ProtoMessage() {}
- func (x *CleanupResponse) ProtoReflect() protoreflect.Message {
- mi := &file_providers_v2_common_proto_generator_generator_proto_msgTypes[4]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use CleanupResponse.ProtoReflect.Descriptor instead.
- func (*CleanupResponse) Descriptor() ([]byte, []int) {
- return file_providers_v2_common_proto_generator_generator_proto_rawDescGZIP(), []int{4}
- }
- var File_providers_v2_common_proto_generator_generator_proto protoreflect.FileDescriptor
- var file_providers_v2_common_proto_generator_generator_proto_rawDesc = []byte{
- 0x0a, 0x33, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x63,
- 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x65, 0x6e, 0x65,
- 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0c, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
- 0x2e, 0x76, 0x31, 0x22, 0x75, 0x0a, 0x0c, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
- 0x52, 0x65, 0x66, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x70, 0x69, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x70, 0x69, 0x56, 0x65, 0x72,
- 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09,
- 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x7d, 0x0a, 0x0f, 0x47, 0x65,
- 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a,
- 0x0d, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x72, 0x65, 0x66, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
- 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x66,
- 0x52, 0x0c, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x66, 0x12, 0x29,
- 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61,
- 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
- 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0xab, 0x01, 0x0a, 0x10, 0x47, 0x65,
- 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x45,
- 0x0a, 0x07, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x2b, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x47,
- 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e,
- 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x73, 0x65,
- 0x63, 0x72, 0x65, 0x74, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x3a, 0x0a, 0x0c, 0x53,
- 0x65, 0x63, 0x72, 0x65, 0x74, 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, 0x0c, 0x52, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x92, 0x01, 0x0a, 0x0e, 0x43, 0x6c, 0x65, 0x61,
- 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x0d, 0x67, 0x65,
- 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x72, 0x65, 0x66, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31,
- 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x66, 0x52, 0x0c, 0x67,
- 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x66, 0x12, 0x14, 0x0a, 0x05, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x12, 0x29, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x11, 0x0a, 0x0f,
- 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32,
- 0xa6, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f,
- 0x76, 0x69, 0x64, 0x65, 0x72, 0x12, 0x49, 0x0a, 0x08, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74,
- 0x65, 0x12, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31,
- 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x2e,
- 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x46, 0x0a, 0x07, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x12, 0x1c, 0x2e, 0x67, 0x65,
- 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e,
- 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65,
- 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x48, 0x5a, 0x46, 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, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
- 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x3b, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74,
- 0x6f, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
- }
- var (
- file_providers_v2_common_proto_generator_generator_proto_rawDescOnce sync.Once
- file_providers_v2_common_proto_generator_generator_proto_rawDescData = file_providers_v2_common_proto_generator_generator_proto_rawDesc
- )
- func file_providers_v2_common_proto_generator_generator_proto_rawDescGZIP() []byte {
- file_providers_v2_common_proto_generator_generator_proto_rawDescOnce.Do(func() {
- file_providers_v2_common_proto_generator_generator_proto_rawDescData = protoimpl.X.CompressGZIP(file_providers_v2_common_proto_generator_generator_proto_rawDescData)
- })
- return file_providers_v2_common_proto_generator_generator_proto_rawDescData
- }
- var file_providers_v2_common_proto_generator_generator_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
- var file_providers_v2_common_proto_generator_generator_proto_goTypes = []any{
- (*GeneratorRef)(nil), // 0: generator.v1.GeneratorRef
- (*GenerateRequest)(nil), // 1: generator.v1.GenerateRequest
- (*GenerateResponse)(nil), // 2: generator.v1.GenerateResponse
- (*CleanupRequest)(nil), // 3: generator.v1.CleanupRequest
- (*CleanupResponse)(nil), // 4: generator.v1.CleanupResponse
- nil, // 5: generator.v1.GenerateResponse.SecretsEntry
- }
- var file_providers_v2_common_proto_generator_generator_proto_depIdxs = []int32{
- 0, // 0: generator.v1.GenerateRequest.generator_ref:type_name -> generator.v1.GeneratorRef
- 5, // 1: generator.v1.GenerateResponse.secrets:type_name -> generator.v1.GenerateResponse.SecretsEntry
- 0, // 2: generator.v1.CleanupRequest.generator_ref:type_name -> generator.v1.GeneratorRef
- 1, // 3: generator.v1.GeneratorProvider.Generate:input_type -> generator.v1.GenerateRequest
- 3, // 4: generator.v1.GeneratorProvider.Cleanup:input_type -> generator.v1.CleanupRequest
- 2, // 5: generator.v1.GeneratorProvider.Generate:output_type -> generator.v1.GenerateResponse
- 4, // 6: generator.v1.GeneratorProvider.Cleanup:output_type -> generator.v1.CleanupResponse
- 5, // [5:7] is the sub-list for method output_type
- 3, // [3:5] is the sub-list for method input_type
- 3, // [3:3] is the sub-list for extension type_name
- 3, // [3:3] is the sub-list for extension extendee
- 0, // [0:3] is the sub-list for field type_name
- }
- func init() { file_providers_v2_common_proto_generator_generator_proto_init() }
- func file_providers_v2_common_proto_generator_generator_proto_init() {
- if File_providers_v2_common_proto_generator_generator_proto != nil {
- return
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_providers_v2_common_proto_generator_generator_proto_rawDesc,
- NumEnums: 0,
- NumMessages: 6,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_providers_v2_common_proto_generator_generator_proto_goTypes,
- DependencyIndexes: file_providers_v2_common_proto_generator_generator_proto_depIdxs,
- MessageInfos: file_providers_v2_common_proto_generator_generator_proto_msgTypes,
- }.Build()
- File_providers_v2_common_proto_generator_generator_proto = out.File
- file_providers_v2_common_proto_generator_generator_proto_rawDesc = nil
- file_providers_v2_common_proto_generator_generator_proto_goTypes = nil
- file_providers_v2_common_proto_generator_generator_proto_depIdxs = nil
- }
|