From d0fb245cb7aacd881468b91447dd427280bbece2 Mon Sep 17 00:00:00 2001 From: Doanh Luong Date: Wed, 1 Jul 2026 10:55:45 +0100 Subject: [PATCH] feat: update keystore role Signed-off-by: Doanh Luong --- internal/proto/service/init/v1/init.pb.go | 2 +- .../proto/service/init/v1/init_grpc.pb.go | 4 +- .../v1/certificate_issuer.pb.go | 2 +- .../v1/certificate_issuer_grpc.pb.go | 2 +- .../v1/identity_management.pb.go | 2 +- .../v1/identity_management_grpc.pb.go | 2 +- proto/plugin/keystore/common/v1/common.pb.go | 2 +- .../keystore/management/v1/management.pb.go | 150 +++++++++++++----- .../keystore/management/v1/management.proto | 9 ++ .../management/v1/management_grpc.pb.go | 2 +- .../keystore/operations/v1/operations.pb.go | 2 +- .../operations/v1/operations_grpc.pb.go | 2 +- .../plugin/notification/v1/notification.pb.go | 2 +- .../notification/v1/notification_grpc.pb.go | 2 +- .../v1/systeminformation.pb.go | 2 +- .../v1/systeminformation_grpc.pb.go | 2 +- proto/plugin/test/v1/test.pb.go | 2 +- proto/plugin/test/v1/test_grpc.pb.go | 2 +- proto/service/common/config/v1/config.pb.go | 2 +- .../common/config/v1/config_grpc.pb.go | 2 +- 20 files changed, 137 insertions(+), 60 deletions(-) diff --git a/internal/proto/service/init/v1/init.pb.go b/internal/proto/service/init/v1/init.pb.go index 2622b06..170c733 100644 --- a/internal/proto/service/init/v1/init.pb.go +++ b/internal/proto/service/init/v1/init.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.34.1 +// protoc v7.35.1 // source: service/init/v1/init.proto package initv1 diff --git a/internal/proto/service/init/v1/init_grpc.pb.go b/internal/proto/service/init/v1/init_grpc.pb.go index 387954b..8b3f379 100644 --- a/internal/proto/service/init/v1/init_grpc.pb.go +++ b/internal/proto/service/init/v1/init_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.6.1 -// - protoc v7.34.1 +// - protoc-gen-go-grpc v1.6.2 +// - protoc v7.35.1 // source: service/init/v1/init.proto package initv1 diff --git a/proto/plugin/certificate_issuer/v1/certificate_issuer.pb.go b/proto/plugin/certificate_issuer/v1/certificate_issuer.pb.go index f27dd62..745b2cc 100644 --- a/proto/plugin/certificate_issuer/v1/certificate_issuer.pb.go +++ b/proto/plugin/certificate_issuer/v1/certificate_issuer.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.35.0 +// protoc v7.35.1 // source: plugin/certificate_issuer/v1/certificate_issuer.proto package certificate_issuerv1 diff --git a/proto/plugin/certificate_issuer/v1/certificate_issuer_grpc.pb.go b/proto/plugin/certificate_issuer/v1/certificate_issuer_grpc.pb.go index 4864ba5..636d3e9 100644 --- a/proto/plugin/certificate_issuer/v1/certificate_issuer_grpc.pb.go +++ b/proto/plugin/certificate_issuer/v1/certificate_issuer_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.2 -// - protoc v7.35.0 +// - protoc v7.35.1 // source: plugin/certificate_issuer/v1/certificate_issuer.proto package certificate_issuerv1 diff --git a/proto/plugin/identity_management/v1/identity_management.pb.go b/proto/plugin/identity_management/v1/identity_management.pb.go index 1a0562d..c8f3619 100644 --- a/proto/plugin/identity_management/v1/identity_management.pb.go +++ b/proto/plugin/identity_management/v1/identity_management.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.35.0 +// protoc v7.35.1 // source: plugin/identity_management/v1/identity_management.proto package identity_managementv1 diff --git a/proto/plugin/identity_management/v1/identity_management_grpc.pb.go b/proto/plugin/identity_management/v1/identity_management_grpc.pb.go index 456c787..f6da6c3 100644 --- a/proto/plugin/identity_management/v1/identity_management_grpc.pb.go +++ b/proto/plugin/identity_management/v1/identity_management_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.2 -// - protoc v7.35.0 +// - protoc v7.35.1 // source: plugin/identity_management/v1/identity_management.proto package identity_managementv1 diff --git a/proto/plugin/keystore/common/v1/common.pb.go b/proto/plugin/keystore/common/v1/common.pb.go index b222bf6..4386c2a 100644 --- a/proto/plugin/keystore/common/v1/common.pb.go +++ b/proto/plugin/keystore/common/v1/common.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.35.0 +// protoc v7.35.1 // source: plugin/keystore/common/v1/common.proto package commonv1 diff --git a/proto/plugin/keystore/management/v1/management.pb.go b/proto/plugin/keystore/management/v1/management.pb.go index eadfe4b..8de0533 100644 --- a/proto/plugin/keystore/management/v1/management.pb.go +++ b/proto/plugin/keystore/management/v1/management.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.35.0 +// protoc v7.35.1 // source: plugin/keystore/management/v1/management.proto package managementv1 @@ -23,6 +23,56 @@ const ( _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) +// TrustType specifies whether a management or crypto role should be created. +type TrustType int32 + +const ( + TrustType_TRUST_TYPE_UNSPECIFIED TrustType = 0 + TrustType_TRUST_TYPE_MANAGEMENT TrustType = 1 + TrustType_TRUST_TYPE_CRYPTO TrustType = 2 +) + +// Enum value maps for TrustType. +var ( + TrustType_name = map[int32]string{ + 0: "TRUST_TYPE_UNSPECIFIED", + 1: "TRUST_TYPE_MANAGEMENT", + 2: "TRUST_TYPE_CRYPTO", + } + TrustType_value = map[string]int32{ + "TRUST_TYPE_UNSPECIFIED": 0, + "TRUST_TYPE_MANAGEMENT": 1, + "TRUST_TYPE_CRYPTO": 2, + } +) + +func (x TrustType) Enum() *TrustType { + p := new(TrustType) + *p = x + return p +} + +func (x TrustType) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (TrustType) Descriptor() protoreflect.EnumDescriptor { + return file_plugin_keystore_management_v1_management_proto_enumTypes[0].Descriptor() +} + +func (TrustType) Type() protoreflect.EnumType { + return &file_plugin_keystore_management_v1_management_proto_enumTypes[0] +} + +func (x TrustType) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use TrustType.Descriptor instead. +func (TrustType) EnumDescriptor() ([]byte, []int) { + return file_plugin_keystore_management_v1_management_proto_rawDescGZIP(), []int{0} +} + // SupportedRegion represents a region where the keystore can be created or accessed. type SupportedRegion struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -343,11 +393,13 @@ func (*DeleteKeystoreResponse) Descriptor() ([]byte, []int) { // which is used to authenticate the request to grant trust. // - The subject field contains the client certificate subject to grant trust to // - The region field specifies the logical region for which the trust is being granted +// - The type field specifies whether to create a management or crypto role type GrantTrustRequest struct { state protoimpl.MessageState `protogen:"open.v1"` Config *v1.KeystoreInstanceConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"` Subject string `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"` Region string `protobuf:"bytes,3,opt,name=region,proto3" json:"region,omitempty"` + Type TrustType `protobuf:"varint,4,opt,name=type,proto3,enum=plugin.keystore.management.v1.TrustType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -403,6 +455,13 @@ func (x *GrantTrustRequest) GetRegion() string { return "" } +func (x *GrantTrustRequest) GetType() TrustType { + if x != nil { + return x.Type + } + return TrustType_TRUST_TYPE_UNSPECIFIED +} + // GrantTrustResponse represents the response after granting trust to a client certificate subject pattern // for accessing a keystore instance. Returns the access data of the configured trust type GrantTrustResponse struct { @@ -566,11 +625,12 @@ const file_plugin_keystore_management_v1_management_proto_rawDesc = "" + "\x11supported_regions\x18\x04 \x03(\v2..plugin.keystore.management.v1.SupportedRegionR\x10supportedRegions\"b\n" + "\x15DeleteKeystoreRequest\x12I\n" + "\x06config\x18\x01 \x01(\v21.plugin.keystore.common.v1.KeystoreInstanceConfigR\x06config\"\x18\n" + - "\x16DeleteKeystoreResponse\"\x90\x01\n" + + "\x16DeleteKeystoreResponse\"\xce\x01\n" + "\x11GrantTrustRequest\x12I\n" + "\x06config\x18\x01 \x01(\v21.plugin.keystore.common.v1.KeystoreInstanceConfigR\x06config\x12\x18\n" + "\asubject\x18\x02 \x01(\tR\asubject\x12\x16\n" + - "\x06region\x18\x03 \x01(\tR\x06region\"N\n" + + "\x06region\x18\x03 \x01(\tR\x06region\x12<\n" + + "\x04type\x18\x04 \x01(\x0e2(.plugin.keystore.management.v1.TrustTypeR\x04type\"N\n" + "\x12GrantTrustResponse\x128\n" + "\vaccess_data\x18\x01 \x01(\v2\x17.google.protobuf.StructR\n" + "accessData\"\x99\x01\n" + @@ -578,7 +638,11 @@ const file_plugin_keystore_management_v1_management_proto_rawDesc = "" + "\x06config\x18\x01 \x01(\v21.plugin.keystore.common.v1.KeystoreInstanceConfigR\x06config\x128\n" + "\vaccess_data\x18\x02 \x01(\v2\x17.google.protobuf.StructR\n" + "accessData\"\x15\n" + - "\x13RemoveTrustResponse2\xf9\x03\n" + + "\x13RemoveTrustResponse*Y\n" + + "\tTrustType\x12\x1a\n" + + "\x16TRUST_TYPE_UNSPECIFIED\x10\x00\x12\x19\n" + + "\x15TRUST_TYPE_MANAGEMENT\x10\x01\x12\x15\n" + + "\x11TRUST_TYPE_CRYPTO\x10\x022\xf9\x03\n" + "\x10KeystoreProvider\x12}\n" + "\x0eCreateKeystore\x124.plugin.keystore.management.v1.CreateKeystoreRequest\x1a5.plugin.keystore.management.v1.CreateKeystoreResponse\x12}\n" + "\x0eDeleteKeystore\x124.plugin.keystore.management.v1.DeleteKeystoreRequest\x1a5.plugin.keystore.management.v1.DeleteKeystoreResponse\x12q\n" + @@ -598,46 +662,49 @@ func file_plugin_keystore_management_v1_management_proto_rawDescGZIP() []byte { return file_plugin_keystore_management_v1_management_proto_rawDescData } +var file_plugin_keystore_management_v1_management_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_plugin_keystore_management_v1_management_proto_msgTypes = make([]protoimpl.MessageInfo, 10) var file_plugin_keystore_management_v1_management_proto_goTypes = []any{ - (*SupportedRegion)(nil), // 0: plugin.keystore.management.v1.SupportedRegion - (*ManagementConfig)(nil), // 1: plugin.keystore.management.v1.ManagementConfig - (*CreateKeystoreRequest)(nil), // 2: plugin.keystore.management.v1.CreateKeystoreRequest - (*CreateKeystoreResponse)(nil), // 3: plugin.keystore.management.v1.CreateKeystoreResponse - (*DeleteKeystoreRequest)(nil), // 4: plugin.keystore.management.v1.DeleteKeystoreRequest - (*DeleteKeystoreResponse)(nil), // 5: plugin.keystore.management.v1.DeleteKeystoreResponse - (*GrantTrustRequest)(nil), // 6: plugin.keystore.management.v1.GrantTrustRequest - (*GrantTrustResponse)(nil), // 7: plugin.keystore.management.v1.GrantTrustResponse - (*RemoveTrustRequest)(nil), // 8: plugin.keystore.management.v1.RemoveTrustRequest - (*RemoveTrustResponse)(nil), // 9: plugin.keystore.management.v1.RemoveTrustResponse - (*v1.KeystoreInstanceConfig)(nil), // 10: plugin.keystore.common.v1.KeystoreInstanceConfig - (*structpb.Struct)(nil), // 11: google.protobuf.Struct + (TrustType)(0), // 0: plugin.keystore.management.v1.TrustType + (*SupportedRegion)(nil), // 1: plugin.keystore.management.v1.SupportedRegion + (*ManagementConfig)(nil), // 2: plugin.keystore.management.v1.ManagementConfig + (*CreateKeystoreRequest)(nil), // 3: plugin.keystore.management.v1.CreateKeystoreRequest + (*CreateKeystoreResponse)(nil), // 4: plugin.keystore.management.v1.CreateKeystoreResponse + (*DeleteKeystoreRequest)(nil), // 5: plugin.keystore.management.v1.DeleteKeystoreRequest + (*DeleteKeystoreResponse)(nil), // 6: plugin.keystore.management.v1.DeleteKeystoreResponse + (*GrantTrustRequest)(nil), // 7: plugin.keystore.management.v1.GrantTrustRequest + (*GrantTrustResponse)(nil), // 8: plugin.keystore.management.v1.GrantTrustResponse + (*RemoveTrustRequest)(nil), // 9: plugin.keystore.management.v1.RemoveTrustRequest + (*RemoveTrustResponse)(nil), // 10: plugin.keystore.management.v1.RemoveTrustResponse + (*v1.KeystoreInstanceConfig)(nil), // 11: plugin.keystore.common.v1.KeystoreInstanceConfig + (*structpb.Struct)(nil), // 12: google.protobuf.Struct } var file_plugin_keystore_management_v1_management_proto_depIdxs = []int32{ - 10, // 0: plugin.keystore.management.v1.ManagementConfig.access_data:type_name -> plugin.keystore.common.v1.KeystoreInstanceConfig - 11, // 1: plugin.keystore.management.v1.CreateKeystoreRequest.values:type_name -> google.protobuf.Struct - 10, // 2: plugin.keystore.management.v1.CreateKeystoreResponse.config:type_name -> plugin.keystore.common.v1.KeystoreInstanceConfig - 1, // 3: plugin.keystore.management.v1.CreateKeystoreResponse.role_management_config:type_name -> plugin.keystore.management.v1.ManagementConfig - 1, // 4: plugin.keystore.management.v1.CreateKeystoreResponse.key_management_config:type_name -> plugin.keystore.management.v1.ManagementConfig - 0, // 5: plugin.keystore.management.v1.CreateKeystoreResponse.supported_regions:type_name -> plugin.keystore.management.v1.SupportedRegion - 10, // 6: plugin.keystore.management.v1.DeleteKeystoreRequest.config:type_name -> plugin.keystore.common.v1.KeystoreInstanceConfig - 10, // 7: plugin.keystore.management.v1.GrantTrustRequest.config:type_name -> plugin.keystore.common.v1.KeystoreInstanceConfig - 11, // 8: plugin.keystore.management.v1.GrantTrustResponse.access_data:type_name -> google.protobuf.Struct - 10, // 9: plugin.keystore.management.v1.RemoveTrustRequest.config:type_name -> plugin.keystore.common.v1.KeystoreInstanceConfig - 11, // 10: plugin.keystore.management.v1.RemoveTrustRequest.access_data:type_name -> google.protobuf.Struct - 2, // 11: plugin.keystore.management.v1.KeystoreProvider.CreateKeystore:input_type -> plugin.keystore.management.v1.CreateKeystoreRequest - 4, // 12: plugin.keystore.management.v1.KeystoreProvider.DeleteKeystore:input_type -> plugin.keystore.management.v1.DeleteKeystoreRequest - 6, // 13: plugin.keystore.management.v1.KeystoreProvider.GrantTrust:input_type -> plugin.keystore.management.v1.GrantTrustRequest - 8, // 14: plugin.keystore.management.v1.KeystoreProvider.RemoveTrust:input_type -> plugin.keystore.management.v1.RemoveTrustRequest - 3, // 15: plugin.keystore.management.v1.KeystoreProvider.CreateKeystore:output_type -> plugin.keystore.management.v1.CreateKeystoreResponse - 5, // 16: plugin.keystore.management.v1.KeystoreProvider.DeleteKeystore:output_type -> plugin.keystore.management.v1.DeleteKeystoreResponse - 7, // 17: plugin.keystore.management.v1.KeystoreProvider.GrantTrust:output_type -> plugin.keystore.management.v1.GrantTrustResponse - 9, // 18: plugin.keystore.management.v1.KeystoreProvider.RemoveTrust:output_type -> plugin.keystore.management.v1.RemoveTrustResponse - 15, // [15:19] is the sub-list for method output_type - 11, // [11:15] is the sub-list for method input_type - 11, // [11:11] is the sub-list for extension type_name - 11, // [11:11] is the sub-list for extension extendee - 0, // [0:11] is the sub-list for field type_name + 11, // 0: plugin.keystore.management.v1.ManagementConfig.access_data:type_name -> plugin.keystore.common.v1.KeystoreInstanceConfig + 12, // 1: plugin.keystore.management.v1.CreateKeystoreRequest.values:type_name -> google.protobuf.Struct + 11, // 2: plugin.keystore.management.v1.CreateKeystoreResponse.config:type_name -> plugin.keystore.common.v1.KeystoreInstanceConfig + 2, // 3: plugin.keystore.management.v1.CreateKeystoreResponse.role_management_config:type_name -> plugin.keystore.management.v1.ManagementConfig + 2, // 4: plugin.keystore.management.v1.CreateKeystoreResponse.key_management_config:type_name -> plugin.keystore.management.v1.ManagementConfig + 1, // 5: plugin.keystore.management.v1.CreateKeystoreResponse.supported_regions:type_name -> plugin.keystore.management.v1.SupportedRegion + 11, // 6: plugin.keystore.management.v1.DeleteKeystoreRequest.config:type_name -> plugin.keystore.common.v1.KeystoreInstanceConfig + 11, // 7: plugin.keystore.management.v1.GrantTrustRequest.config:type_name -> plugin.keystore.common.v1.KeystoreInstanceConfig + 0, // 8: plugin.keystore.management.v1.GrantTrustRequest.type:type_name -> plugin.keystore.management.v1.TrustType + 12, // 9: plugin.keystore.management.v1.GrantTrustResponse.access_data:type_name -> google.protobuf.Struct + 11, // 10: plugin.keystore.management.v1.RemoveTrustRequest.config:type_name -> plugin.keystore.common.v1.KeystoreInstanceConfig + 12, // 11: plugin.keystore.management.v1.RemoveTrustRequest.access_data:type_name -> google.protobuf.Struct + 3, // 12: plugin.keystore.management.v1.KeystoreProvider.CreateKeystore:input_type -> plugin.keystore.management.v1.CreateKeystoreRequest + 5, // 13: plugin.keystore.management.v1.KeystoreProvider.DeleteKeystore:input_type -> plugin.keystore.management.v1.DeleteKeystoreRequest + 7, // 14: plugin.keystore.management.v1.KeystoreProvider.GrantTrust:input_type -> plugin.keystore.management.v1.GrantTrustRequest + 9, // 15: plugin.keystore.management.v1.KeystoreProvider.RemoveTrust:input_type -> plugin.keystore.management.v1.RemoveTrustRequest + 4, // 16: plugin.keystore.management.v1.KeystoreProvider.CreateKeystore:output_type -> plugin.keystore.management.v1.CreateKeystoreResponse + 6, // 17: plugin.keystore.management.v1.KeystoreProvider.DeleteKeystore:output_type -> plugin.keystore.management.v1.DeleteKeystoreResponse + 8, // 18: plugin.keystore.management.v1.KeystoreProvider.GrantTrust:output_type -> plugin.keystore.management.v1.GrantTrustResponse + 10, // 19: plugin.keystore.management.v1.KeystoreProvider.RemoveTrust:output_type -> plugin.keystore.management.v1.RemoveTrustResponse + 16, // [16:20] is the sub-list for method output_type + 12, // [12:16] is the sub-list for method input_type + 12, // [12:12] is the sub-list for extension type_name + 12, // [12:12] is the sub-list for extension extendee + 0, // [0:12] is the sub-list for field type_name } func init() { file_plugin_keystore_management_v1_management_proto_init() } @@ -650,13 +717,14 @@ func file_plugin_keystore_management_v1_management_proto_init() { File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_plugin_keystore_management_v1_management_proto_rawDesc), len(file_plugin_keystore_management_v1_management_proto_rawDesc)), - NumEnums: 0, + NumEnums: 1, NumMessages: 10, NumExtensions: 0, NumServices: 1, }, GoTypes: file_plugin_keystore_management_v1_management_proto_goTypes, DependencyIndexes: file_plugin_keystore_management_v1_management_proto_depIdxs, + EnumInfos: file_plugin_keystore_management_v1_management_proto_enumTypes, MessageInfos: file_plugin_keystore_management_v1_management_proto_msgTypes, }.Build() File_plugin_keystore_management_v1_management_proto = out.File diff --git a/proto/plugin/keystore/management/v1/management.proto b/proto/plugin/keystore/management/v1/management.proto index 7aa2166..93e5bfd 100644 --- a/proto/plugin/keystore/management/v1/management.proto +++ b/proto/plugin/keystore/management/v1/management.proto @@ -53,16 +53,25 @@ message DeleteKeystoreRequest { message DeleteKeystoreResponse {} +// TrustType specifies whether a management or crypto role should be created. +enum TrustType { + TRUST_TYPE_UNSPECIFIED = 0; + TRUST_TYPE_MANAGEMENT = 1; + TRUST_TYPE_CRYPTO = 2; +} + // GrantTrustRequest represents the request to grant trust to a client certificate subject pattern // for accessing a keystore instance from the crypto layer. // - The config field contains the authentication configuration of the role management role for the keystore instance, // which is used to authenticate the request to grant trust. // - The subject field contains the client certificate subject to grant trust to // - The region field specifies the logical region for which the trust is being granted +// - The type field specifies whether to create a management or crypto role message GrantTrustRequest { plugin.keystore.common.v1.KeystoreInstanceConfig config = 1; string subject = 2; string region = 3; + TrustType type = 4; } // GrantTrustResponse represents the response after granting trust to a client certificate subject pattern diff --git a/proto/plugin/keystore/management/v1/management_grpc.pb.go b/proto/plugin/keystore/management/v1/management_grpc.pb.go index 632eb45..ec9b6a6 100644 --- a/proto/plugin/keystore/management/v1/management_grpc.pb.go +++ b/proto/plugin/keystore/management/v1/management_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.2 -// - protoc v7.35.0 +// - protoc v7.35.1 // source: plugin/keystore/management/v1/management.proto package managementv1 diff --git a/proto/plugin/keystore/operations/v1/operations.pb.go b/proto/plugin/keystore/operations/v1/operations.pb.go index 2c2ef58..dd33420 100644 --- a/proto/plugin/keystore/operations/v1/operations.pb.go +++ b/proto/plugin/keystore/operations/v1/operations.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.35.0 +// protoc v7.35.1 // source: plugin/keystore/operations/v1/operations.proto package operationsv1 diff --git a/proto/plugin/keystore/operations/v1/operations_grpc.pb.go b/proto/plugin/keystore/operations/v1/operations_grpc.pb.go index acd684d..efede26 100644 --- a/proto/plugin/keystore/operations/v1/operations_grpc.pb.go +++ b/proto/plugin/keystore/operations/v1/operations_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.2 -// - protoc v7.35.0 +// - protoc v7.35.1 // source: plugin/keystore/operations/v1/operations.proto package operationsv1 diff --git a/proto/plugin/notification/v1/notification.pb.go b/proto/plugin/notification/v1/notification.pb.go index ad4b3c8..a3b3f1a 100644 --- a/proto/plugin/notification/v1/notification.pb.go +++ b/proto/plugin/notification/v1/notification.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.35.0 +// protoc v7.35.1 // source: plugin/notification/v1/notification.proto package notificationv1 diff --git a/proto/plugin/notification/v1/notification_grpc.pb.go b/proto/plugin/notification/v1/notification_grpc.pb.go index b3efedc..adffff5 100644 --- a/proto/plugin/notification/v1/notification_grpc.pb.go +++ b/proto/plugin/notification/v1/notification_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.2 -// - protoc v7.35.0 +// - protoc v7.35.1 // source: plugin/notification/v1/notification.proto package notificationv1 diff --git a/proto/plugin/systeminformation/v1/systeminformation.pb.go b/proto/plugin/systeminformation/v1/systeminformation.pb.go index 959a346..3d0d27d 100644 --- a/proto/plugin/systeminformation/v1/systeminformation.pb.go +++ b/proto/plugin/systeminformation/v1/systeminformation.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.35.0 +// protoc v7.35.1 // source: plugin/systeminformation/v1/systeminformation.proto package systeminformationv1 diff --git a/proto/plugin/systeminformation/v1/systeminformation_grpc.pb.go b/proto/plugin/systeminformation/v1/systeminformation_grpc.pb.go index a852e29..dcc330c 100644 --- a/proto/plugin/systeminformation/v1/systeminformation_grpc.pb.go +++ b/proto/plugin/systeminformation/v1/systeminformation_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.2 -// - protoc v7.35.0 +// - protoc v7.35.1 // source: plugin/systeminformation/v1/systeminformation.proto package systeminformationv1 diff --git a/proto/plugin/test/v1/test.pb.go b/proto/plugin/test/v1/test.pb.go index 4d1ce77..6399f1c 100644 --- a/proto/plugin/test/v1/test.pb.go +++ b/proto/plugin/test/v1/test.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.35.0 +// protoc v7.35.1 // source: plugin/test/v1/test.proto package testv1 diff --git a/proto/plugin/test/v1/test_grpc.pb.go b/proto/plugin/test/v1/test_grpc.pb.go index 91e3be3..a4a0fe2 100644 --- a/proto/plugin/test/v1/test_grpc.pb.go +++ b/proto/plugin/test/v1/test_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.2 -// - protoc v7.35.0 +// - protoc v7.35.1 // source: plugin/test/v1/test.proto package testv1 diff --git a/proto/service/common/config/v1/config.pb.go b/proto/service/common/config/v1/config.pb.go index a97bb7a..4a1552b 100644 --- a/proto/service/common/config/v1/config.pb.go +++ b/proto/service/common/config/v1/config.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.35.0 +// protoc v7.35.1 // source: service/common/config/v1/config.proto package configv1 diff --git a/proto/service/common/config/v1/config_grpc.pb.go b/proto/service/common/config/v1/config_grpc.pb.go index 9782be9..effd324 100644 --- a/proto/service/common/config/v1/config_grpc.pb.go +++ b/proto/service/common/config/v1/config_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.2 -// - protoc v7.35.0 +// - protoc v7.35.1 // source: service/common/config/v1/config.proto package configv1