mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
ff3e84ad67
updating kubernetes to 1.28.0 in the main repo. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
78 lines
2.7 KiB
Protocol Buffer
78 lines
2.7 KiB
Protocol Buffer
/*
|
|
Copyright 2018 The Kubernetes 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
|
|
|
|
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.
|
|
*/
|
|
|
|
// To regenerate api.pb.go run `hack/update-codegen.sh protobindings`
|
|
syntax = "proto3";
|
|
|
|
package v1beta1;
|
|
option go_package = "k8s.io/kms/apis/v1beta1";
|
|
option deprecated = true;
|
|
|
|
// This service defines the public APIs for remote KMS provider.
|
|
service KeyManagementService {
|
|
// Version returns the runtime name and runtime version of the KMS provider.
|
|
rpc Version(VersionRequest) returns (VersionResponse) {}
|
|
|
|
// Execute decryption operation in KMS provider.
|
|
rpc Decrypt(DecryptRequest) returns (DecryptResponse) {}
|
|
// Execute encryption operation in KMS provider.
|
|
rpc Encrypt(EncryptRequest) returns (EncryptResponse) {}
|
|
}
|
|
|
|
// Deprecated: KMSv1 is deprecated in v1.28 and will only receive security updates going forward. Use KMSv2 instead.
|
|
message VersionRequest {
|
|
// Version of the KMS plugin API.
|
|
string version = 1;
|
|
}
|
|
|
|
// Deprecated: KMSv1 is deprecated in v1.28 and will only receive security updates going forward. Use KMSv2 instead.
|
|
message VersionResponse {
|
|
// Version of the KMS plugin API.
|
|
string version = 1;
|
|
// Name of the KMS provider.
|
|
string runtime_name = 2;
|
|
// Version of the KMS provider. The string must be semver-compatible.
|
|
string runtime_version = 3;
|
|
}
|
|
|
|
// Deprecated: KMSv1 is deprecated in v1.28 and will only receive security updates going forward. Use KMSv2 instead.
|
|
message DecryptRequest {
|
|
// Version of the KMS plugin API.
|
|
string version = 1;
|
|
// The data to be decrypted.
|
|
bytes cipher = 2;
|
|
}
|
|
|
|
// Deprecated: KMSv1 is deprecated in v1.28 and will only receive security updates going forward. Use KMSv2 instead.
|
|
message DecryptResponse {
|
|
// The decrypted data.
|
|
bytes plain = 1;
|
|
}
|
|
|
|
// Deprecated: KMSv1 is deprecated in v1.28 and will only receive security updates going forward. Use KMSv2 instead.
|
|
message EncryptRequest {
|
|
// Version of the KMS plugin API.
|
|
string version = 1;
|
|
// The data to be encrypted.
|
|
bytes plain = 2;
|
|
}
|
|
|
|
// Deprecated: KMSv1 is deprecated in v1.28 and will only receive security updates going forward. Use KMSv2 instead.
|
|
message EncryptResponse {
|
|
// The encrypted data.
|
|
bytes cipher = 1;
|
|
}
|