Skip to content

Commit

Permalink
pb-6586 | chore: add version field for cluster objects
Browse files Browse the repository at this point in the history
  • Loading branch information
strivedi-px committed Apr 9, 2024
1 parent ed18bc0 commit 4b191ef
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pkg/apis/v1/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ message ClusterInfo {
IBM = 4;
Rancher = 5;
}

}

message ClusterObject {
Expand Down Expand Up @@ -351,7 +352,7 @@ message BackupScheduleInfo {
bool skip_vm_auto_exec_rules = 27;
// volume snapshot class mapping for csi based backup <provisioner(string), volumesnapshotclass(string)> (optional)
map<string, string> volume_snapshot_class_mapping = 28;
// option to take backup as direct kdmp
// option to take backup as direct kdmp
bool direct_kdmp = 29;


Expand Down Expand Up @@ -536,7 +537,7 @@ message BackupInfo {
bool skip_vm_auto_exec_rules = 36;
// volume snapshot class mapping for csi based backup <provisioner(string), volumesnapshotclass(string)> (optional)
map<string, string> volume_snapshot_class_mapping = 37;
// option to take backup as direct kdmp
// option to take backup as direct kdmp
bool direct_kdmp = 38;

message BackupType {
Expand Down Expand Up @@ -1012,7 +1013,7 @@ message BackupScheduleCreateRequest {
bool skip_vm_auto_exec_rules = 21;
// volume snapshot class mapping for csi based backup <provisioner(string), volumesnapshotclass(string)> (optional)
map<string, string> volume_snapshot_class_mapping = 22;
// option to take backup as direct kdmp
// option to take backup as direct kdmp
bool direct_kdmp = 23;


Expand Down Expand Up @@ -1398,7 +1399,7 @@ message CloudCredentialOwnershipUpdateResponse {}

service Receiver {
// Create new alert manager receiver
rpc Create(ReceiverCreateRequest)
rpc Create(ReceiverCreateRequest)
returns (ReceiverCreateResponse) {
option (google.api.http) = {
post : "/v1/receiver"
Expand Down Expand Up @@ -1493,7 +1494,7 @@ message ReceiverCreateRequest {
}

message ReceiverCreateResponse {
ReceiverObject receiver = 1;
ReceiverObject receiver = 1;
}


Expand Down Expand Up @@ -1546,7 +1547,7 @@ message ReceiverValidateSMTPRequest {
message ReceiverValidateSMTPResponse {}

service Recipient {
rpc Create(RecipientCreateRequest)
rpc Create(RecipientCreateRequest)
returns (RecipientCreateResponse) {
option (google.api.http) = {
post : "/v1/recipient"
Expand Down Expand Up @@ -1928,7 +1929,7 @@ message BackupCreateRequest {
bool skip_vm_auto_exec_rules = 18;
// volume snapshot class mapping for csi based backup <provisioner(string), volumesnapshotclass(string)> (optional)
map<string, string> volume_snapshot_class_mapping = 19;
// option to take backup as direct kdmp
// option to take backup as direct kdmp
bool direct_kdmp = 20;

enum BackupType {
Expand Down

0 comments on commit 4b191ef

Please sign in to comment.