Skip to content

Commit

Permalink
PMM-12460 Allow batch dupm deletes
Browse files Browse the repository at this point in the history
  • Loading branch information
artemgavrilov committed Sep 28, 2023
1 parent b9daaed commit 8722c01
Show file tree
Hide file tree
Showing 6 changed files with 104 additions and 100 deletions.
182 changes: 91 additions & 91 deletions api/managementpb/dump/dump.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions api/managementpb/dump/dump.pb.validate.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/managementpb/dump/dump.proto
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ message ListDumpsResponse {
}

message DeleteDumpRequest {
string dump_id = 1;
repeated string dump_ids = 1;
}

message DeleteDumpResponse {}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions api/managementpb/dump/json/dump.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@
"schema": {
"type": "object",
"properties": {
"dump_id": {
"type": "string",
"dump_ids": {
"type": "array",
"items": {
"type": "string"
},
"x-order": 0
}
}
Expand Down
7 changes: 5 additions & 2 deletions api/swagger/swagger-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -34618,8 +34618,11 @@
"schema": {
"type": "object",
"properties": {
"dump_id": {
"type": "string",
"dump_ids": {
"type": "array",
"items": {
"type": "string"
},
"x-order": 0
}
}
Expand Down

0 comments on commit 8722c01

Please sign in to comment.