123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.28.1
- // protoc v3.21.4
- // source: proto/certificate.proto
- package certificate
- 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 CreateCertificateRequestCloudflare struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
- ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
- ZoneName string `protobuf:"bytes,3,opt,name=zoneName,proto3" json:"zoneName,omitempty"`
- Certificate string `protobuf:"bytes,4,opt,name=certificate,proto3" json:"certificate,omitempty"`
- PrivateKey string `protobuf:"bytes,5,opt,name=privateKey,proto3" json:"privateKey,omitempty"`
- }
- func (x *CreateCertificateRequestCloudflare) Reset() {
- *x = CreateCertificateRequestCloudflare{}
- if protoimpl.UnsafeEnabled {
- mi := &file_proto_certificate_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *CreateCertificateRequestCloudflare) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CreateCertificateRequestCloudflare) ProtoMessage() {}
- func (x *CreateCertificateRequestCloudflare) ProtoReflect() protoreflect.Message {
- mi := &file_proto_certificate_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 CreateCertificateRequestCloudflare.ProtoReflect.Descriptor instead.
- func (*CreateCertificateRequestCloudflare) Descriptor() ([]byte, []int) {
- return file_proto_certificate_proto_rawDescGZIP(), []int{0}
- }
- func (x *CreateCertificateRequestCloudflare) GetApiKey() string {
- if x != nil {
- return x.ApiKey
- }
- return ""
- }
- func (x *CreateCertificateRequestCloudflare) GetApiEmail() string {
- if x != nil {
- return x.ApiEmail
- }
- return ""
- }
- func (x *CreateCertificateRequestCloudflare) GetZoneName() string {
- if x != nil {
- return x.ZoneName
- }
- return ""
- }
- func (x *CreateCertificateRequestCloudflare) GetCertificate() string {
- if x != nil {
- return x.Certificate
- }
- return ""
- }
- func (x *CreateCertificateRequestCloudflare) GetPrivateKey() string {
- if x != nil {
- return x.PrivateKey
- }
- return ""
- }
- type DeleteCertificateRequestCloudflare struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
- ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
- ZoneName string `protobuf:"bytes,3,opt,name=zoneName,proto3" json:"zoneName,omitempty"`
- CertificateId string `protobuf:"bytes,4,opt,name=certificateId,proto3" json:"certificateId,omitempty"`
- }
- func (x *DeleteCertificateRequestCloudflare) Reset() {
- *x = DeleteCertificateRequestCloudflare{}
- if protoimpl.UnsafeEnabled {
- mi := &file_proto_certificate_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *DeleteCertificateRequestCloudflare) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DeleteCertificateRequestCloudflare) ProtoMessage() {}
- func (x *DeleteCertificateRequestCloudflare) ProtoReflect() protoreflect.Message {
- mi := &file_proto_certificate_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 DeleteCertificateRequestCloudflare.ProtoReflect.Descriptor instead.
- func (*DeleteCertificateRequestCloudflare) Descriptor() ([]byte, []int) {
- return file_proto_certificate_proto_rawDescGZIP(), []int{1}
- }
- func (x *DeleteCertificateRequestCloudflare) GetApiKey() string {
- if x != nil {
- return x.ApiKey
- }
- return ""
- }
- func (x *DeleteCertificateRequestCloudflare) GetApiEmail() string {
- if x != nil {
- return x.ApiEmail
- }
- return ""
- }
- func (x *DeleteCertificateRequestCloudflare) GetZoneName() string {
- if x != nil {
- return x.ZoneName
- }
- return ""
- }
- func (x *DeleteCertificateRequestCloudflare) GetCertificateId() string {
- if x != nil {
- return x.CertificateId
- }
- return ""
- }
- type EditCertificateRequestCloudflare struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
- ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
- ZoneName string `protobuf:"bytes,3,opt,name=zoneName,proto3" json:"zoneName,omitempty"`
- CertificateId string `protobuf:"bytes,4,opt,name=certificateId,proto3" json:"certificateId,omitempty"`
- Certificate string `protobuf:"bytes,5,opt,name=certificate,proto3" json:"certificate,omitempty"`
- PrivateKey string `protobuf:"bytes,6,opt,name=privateKey,proto3" json:"privateKey,omitempty"`
- }
- func (x *EditCertificateRequestCloudflare) Reset() {
- *x = EditCertificateRequestCloudflare{}
- if protoimpl.UnsafeEnabled {
- mi := &file_proto_certificate_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EditCertificateRequestCloudflare) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EditCertificateRequestCloudflare) ProtoMessage() {}
- func (x *EditCertificateRequestCloudflare) ProtoReflect() protoreflect.Message {
- mi := &file_proto_certificate_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 EditCertificateRequestCloudflare.ProtoReflect.Descriptor instead.
- func (*EditCertificateRequestCloudflare) Descriptor() ([]byte, []int) {
- return file_proto_certificate_proto_rawDescGZIP(), []int{2}
- }
- func (x *EditCertificateRequestCloudflare) GetApiKey() string {
- if x != nil {
- return x.ApiKey
- }
- return ""
- }
- func (x *EditCertificateRequestCloudflare) GetApiEmail() string {
- if x != nil {
- return x.ApiEmail
- }
- return ""
- }
- func (x *EditCertificateRequestCloudflare) GetZoneName() string {
- if x != nil {
- return x.ZoneName
- }
- return ""
- }
- func (x *EditCertificateRequestCloudflare) GetCertificateId() string {
- if x != nil {
- return x.CertificateId
- }
- return ""
- }
- func (x *EditCertificateRequestCloudflare) GetCertificate() string {
- if x != nil {
- return x.Certificate
- }
- return ""
- }
- func (x *EditCertificateRequestCloudflare) GetPrivateKey() string {
- if x != nil {
- return x.PrivateKey
- }
- return ""
- }
- type CreateCertificateReplyCloudflare struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
- }
- func (x *CreateCertificateReplyCloudflare) Reset() {
- *x = CreateCertificateReplyCloudflare{}
- if protoimpl.UnsafeEnabled {
- mi := &file_proto_certificate_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *CreateCertificateReplyCloudflare) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CreateCertificateReplyCloudflare) ProtoMessage() {}
- func (x *CreateCertificateReplyCloudflare) ProtoReflect() protoreflect.Message {
- mi := &file_proto_certificate_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 CreateCertificateReplyCloudflare.ProtoReflect.Descriptor instead.
- func (*CreateCertificateReplyCloudflare) Descriptor() ([]byte, []int) {
- return file_proto_certificate_proto_rawDescGZIP(), []int{3}
- }
- func (x *CreateCertificateReplyCloudflare) GetSuccess() bool {
- if x != nil {
- return x.Success
- }
- return false
- }
- func (x *CreateCertificateReplyCloudflare) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- type DeleteCertificateReplyCloudflare struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
- }
- func (x *DeleteCertificateReplyCloudflare) Reset() {
- *x = DeleteCertificateReplyCloudflare{}
- if protoimpl.UnsafeEnabled {
- mi := &file_proto_certificate_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *DeleteCertificateReplyCloudflare) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DeleteCertificateReplyCloudflare) ProtoMessage() {}
- func (x *DeleteCertificateReplyCloudflare) ProtoReflect() protoreflect.Message {
- mi := &file_proto_certificate_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 DeleteCertificateReplyCloudflare.ProtoReflect.Descriptor instead.
- func (*DeleteCertificateReplyCloudflare) Descriptor() ([]byte, []int) {
- return file_proto_certificate_proto_rawDescGZIP(), []int{4}
- }
- func (x *DeleteCertificateReplyCloudflare) GetSuccess() bool {
- if x != nil {
- return x.Success
- }
- return false
- }
- func (x *DeleteCertificateReplyCloudflare) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- type EditCertificateReplyCloudflare struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
- }
- func (x *EditCertificateReplyCloudflare) Reset() {
- *x = EditCertificateReplyCloudflare{}
- if protoimpl.UnsafeEnabled {
- mi := &file_proto_certificate_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *EditCertificateReplyCloudflare) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EditCertificateReplyCloudflare) ProtoMessage() {}
- func (x *EditCertificateReplyCloudflare) ProtoReflect() protoreflect.Message {
- mi := &file_proto_certificate_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 EditCertificateReplyCloudflare.ProtoReflect.Descriptor instead.
- func (*EditCertificateReplyCloudflare) Descriptor() ([]byte, []int) {
- return file_proto_certificate_proto_rawDescGZIP(), []int{5}
- }
- func (x *EditCertificateReplyCloudflare) GetSuccess() bool {
- if x != nil {
- return x.Success
- }
- return false
- }
- func (x *EditCertificateReplyCloudflare) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- var File_proto_certificate_proto protoreflect.FileDescriptor
- var file_proto_certificate_proto_rawDesc = []byte{
- 0x0a, 0x17, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63,
- 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x63, 0x6c, 0x6f, 0x75, 0x64,
- 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43,
- 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x22, 0xb6, 0x01, 0x0a, 0x22, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72,
- 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69,
- 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69,
- 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x7a, 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d,
- 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x7a, 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63,
- 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65,
- 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65,
- 0x4b, 0x65, 0x79, 0x22, 0x9a, 0x01, 0x0a, 0x22, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65,
- 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70,
- 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b,
- 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a,
- 0x0a, 0x08, 0x7a, 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x7a, 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x65,
- 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0d, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, 0x64,
- 0x22, 0xda, 0x01, 0x0a, 0x20, 0x45, 0x64, 0x69, 0x74, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69,
- 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64,
- 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a,
- 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x7a, 0x6f, 0x6e,
- 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x7a, 0x6f, 0x6e,
- 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69,
- 0x63, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x65,
- 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63,
- 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x0b, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a,
- 0x0a, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0a, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x22, 0x4c, 0x0a,
- 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
- 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72,
- 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x4c, 0x0a, 0x20, 0x44,
- 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65,
- 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12,
- 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x4a, 0x0a, 0x1e, 0x45, 0x64, 0x69,
- 0x74, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c,
- 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73,
- 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75,
- 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x02, 0x69, 0x64, 0x32, 0xf1, 0x03, 0x0a, 0x15, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66,
- 0x69, 0x63, 0x61, 0x74, 0x65, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12,
- 0x9d, 0x01, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66,
- 0x69, 0x63, 0x61, 0x74, 0x65, 0x12, 0x43, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
- 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65, 0x72, 0x74,
- 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x65,
- 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x41, 0x2e, 0x63, 0x6c, 0x6f,
- 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65,
- 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x43, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x12,
- 0x9d, 0x01, 0x0a, 0x11, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66,
- 0x69, 0x63, 0x61, 0x74, 0x65, 0x12, 0x43, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
- 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65, 0x72, 0x74,
- 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65,
- 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x41, 0x2e, 0x63, 0x6c, 0x6f,
- 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65,
- 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x44, 0x65, 0x6c,
- 0x65, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x12,
- 0x97, 0x01, 0x0a, 0x0f, 0x45, 0x64, 0x69, 0x74, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63,
- 0x61, 0x74, 0x65, 0x12, 0x41, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65,
- 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66,
- 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66,
- 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75,
- 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x3f, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c,
- 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65, 0x72,
- 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x43, 0x65, 0x72,
- 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f,
- 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x42, 0x51, 0x0a, 0x1e, 0x69, 0x6f, 0x2e,
- 0x67, 0x72, 0x70, 0x63, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x2e,
- 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x42, 0x10, 0x63, 0x65, 0x72,
- 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
- 0x1b, 0x2e, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69,
- 0x2f, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x62, 0x06, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x33,
- }
- var (
- file_proto_certificate_proto_rawDescOnce sync.Once
- file_proto_certificate_proto_rawDescData = file_proto_certificate_proto_rawDesc
- )
- func file_proto_certificate_proto_rawDescGZIP() []byte {
- file_proto_certificate_proto_rawDescOnce.Do(func() {
- file_proto_certificate_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_certificate_proto_rawDescData)
- })
- return file_proto_certificate_proto_rawDescData
- }
- var file_proto_certificate_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
- var file_proto_certificate_proto_goTypes = []interface{}{
- (*CreateCertificateRequestCloudflare)(nil), // 0: cloudflareApi.cache.Certificate.CreateCertificateRequestCloudflare
- (*DeleteCertificateRequestCloudflare)(nil), // 1: cloudflareApi.cache.Certificate.DeleteCertificateRequestCloudflare
- (*EditCertificateRequestCloudflare)(nil), // 2: cloudflareApi.cache.Certificate.EditCertificateRequestCloudflare
- (*CreateCertificateReplyCloudflare)(nil), // 3: cloudflareApi.cache.Certificate.CreateCertificateReplyCloudflare
- (*DeleteCertificateReplyCloudflare)(nil), // 4: cloudflareApi.cache.Certificate.DeleteCertificateReplyCloudflare
- (*EditCertificateReplyCloudflare)(nil), // 5: cloudflareApi.cache.Certificate.EditCertificateReplyCloudflare
- }
- var file_proto_certificate_proto_depIdxs = []int32{
- 0, // 0: cloudflareApi.cache.Certificate.CertificateCloudflare.CreateCertificate:input_type -> cloudflareApi.cache.Certificate.CreateCertificateRequestCloudflare
- 1, // 1: cloudflareApi.cache.Certificate.CertificateCloudflare.DeleteCertificate:input_type -> cloudflareApi.cache.Certificate.DeleteCertificateRequestCloudflare
- 2, // 2: cloudflareApi.cache.Certificate.CertificateCloudflare.EditCertificate:input_type -> cloudflareApi.cache.Certificate.EditCertificateRequestCloudflare
- 3, // 3: cloudflareApi.cache.Certificate.CertificateCloudflare.CreateCertificate:output_type -> cloudflareApi.cache.Certificate.CreateCertificateReplyCloudflare
- 4, // 4: cloudflareApi.cache.Certificate.CertificateCloudflare.DeleteCertificate:output_type -> cloudflareApi.cache.Certificate.DeleteCertificateReplyCloudflare
- 5, // 5: cloudflareApi.cache.Certificate.CertificateCloudflare.EditCertificate:output_type -> cloudflareApi.cache.Certificate.EditCertificateReplyCloudflare
- 3, // [3:6] is the sub-list for method output_type
- 0, // [0:3] is the sub-list for method input_type
- 0, // [0:0] is the sub-list for extension type_name
- 0, // [0:0] is the sub-list for extension extendee
- 0, // [0:0] is the sub-list for field type_name
- }
- func init() { file_proto_certificate_proto_init() }
- func file_proto_certificate_proto_init() {
- if File_proto_certificate_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_proto_certificate_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CreateCertificateRequestCloudflare); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_proto_certificate_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*DeleteCertificateRequestCloudflare); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_proto_certificate_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EditCertificateRequestCloudflare); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_proto_certificate_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CreateCertificateReplyCloudflare); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_proto_certificate_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*DeleteCertificateReplyCloudflare); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_proto_certificate_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*EditCertificateReplyCloudflare); 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_proto_certificate_proto_rawDesc,
- NumEnums: 0,
- NumMessages: 6,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_proto_certificate_proto_goTypes,
- DependencyIndexes: file_proto_certificate_proto_depIdxs,
- MessageInfos: file_proto_certificate_proto_msgTypes,
- }.Build()
- File_proto_certificate_proto = out.File
- file_proto_certificate_proto_rawDesc = nil
- file_proto_certificate_proto_goTypes = nil
- file_proto_certificate_proto_depIdxs = nil
- }
|