Skip to content

Commit

Permalink
PMM-12460 Add created_at to the dump API model
Browse files Browse the repository at this point in the history
  • Loading branch information
artemgavrilov committed Sep 25, 2023
1 parent 649cc21 commit 7195f54
Show file tree
Hide file tree
Showing 6 changed files with 198 additions and 125 deletions.
263 changes: 138 additions & 125 deletions api/managementpb/dump/dump.pb.go

Large diffs are not rendered by default.

29 changes: 29 additions & 0 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.

1 change: 1 addition & 0 deletions api/managementpb/dump/dump.proto
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ message Dump {
repeated string node_ids = 3; // TODO or node names?
google.protobuf.Timestamp start_time = 4;
google.protobuf.Timestamp end_time = 5;
google.protobuf.Timestamp created_at = 7;
}

message StartDumpRequest {
Expand Down
20 changes: 20 additions & 0 deletions api/managementpb/dump/json/client/dumps/list_dumps_responses.go

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

5 changes: 5 additions & 0 deletions api/managementpb/dump/json/dump.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,11 @@
"items": {
"type": "object",
"properties": {
"created_at": {
"type": "string",
"format": "date-time",
"x-order": 5
},
"dump_id": {
"type": "string",
"x-order": 0
Expand Down
5 changes: 5 additions & 0 deletions api/swagger/swagger-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -34806,6 +34806,11 @@
"type": "string",
"format": "date-time",
"x-order": 4
},
"created_at": {
"type": "string",
"format": "date-time",
"x-order": 5
}
}
},
Expand Down

0 comments on commit 7195f54

Please sign in to comment.