Skip to content
Closed
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
2 changes: 1 addition & 1 deletion DO_OPENAPI_COMMIT_SHA.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7b21224
de27a00
13 changes: 12 additions & 1 deletion src/pydo/aio/operations/_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -107221,7 +107221,18 @@ async def list_backups(self, database_cluster_uuid: str, **kwargs: Any) -> JSON:
"size_gigabytes": 0.0 # The size of the database backup in
GBs. Required.
}
]
],
"backup_progress": "str", # Optional. If a backup is currently in progress,
this attribute shows the percentage of completion. If no backup is in progress,
this attribute will be hidden.
"scheduled_backup_time": {
"backup_hour": 0, # Optional. The hour of the day when the backup is
scheduled (in UTC).
"backup_interval_hours": 0, # Optional. The frequency, in hours, at
which backups are taken.
"backup_minute": 0 # Optional. The minute of the hour when the
backup is scheduled.
}
}
# response body for status code(s): 404
response == {
Expand Down
13 changes: 12 additions & 1 deletion src/pydo/operations/_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -119374,7 +119374,18 @@ def list_backups(self, database_cluster_uuid: str, **kwargs: Any) -> JSON:
"size_gigabytes": 0.0 # The size of the database backup in
GBs. Required.
}
]
],
"backup_progress": "str", # Optional. If a backup is currently in progress,
this attribute shows the percentage of completion. If no backup is in progress,
this attribute will be hidden.
"scheduled_backup_time": {
"backup_hour": 0, # Optional. The hour of the day when the backup is
scheduled (in UTC).
"backup_interval_hours": 0, # Optional. The frequency, in hours, at
which backups are taken.
"backup_minute": 0 # Optional. The minute of the hour when the
backup is scheduled.
}
}
# response body for status code(s): 404
response == {
Expand Down