Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(backup): add parameters fields to backup #11

Merged
merged 1 commit into from
Jun 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
100 changes: 52 additions & 48 deletions generated-py/imrpc/proxy_pb2.py

Large diffs are not rendered by default.

84 changes: 44 additions & 40 deletions generated-py/ptypes/syncagent_pb2.py

Large diffs are not rendered by default.

613 changes: 316 additions & 297 deletions pkg/generated/enginerpc/syncagent.pb.go

Large diffs are not rendered by default.

1,111 changes: 565 additions & 546 deletions pkg/generated/imrpc/proxy.pb.go

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions protobuf/imrpc/proxy.proto
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ message EngineSnapshotBackupRequest {
string compression_method = 9;
int32 concurrent_limit = 10;
string storage_class_name = 11;
map<string, string> parameters = 12;
}

message EngineSnapshotBackupProxyResponse {
Expand Down
1 change: 1 addition & 0 deletions protobuf/ptypes/syncagent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ message BackupCreateRequest {
string compression_method = 9;
int32 concurrent_limit = 10;
string storage_class_name = 11;
map<string, string> parameters = 12;
}

message BackupCreateResponse {
Expand Down