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

[bot] APPS-8033 Add the RUN_RESTARTED log type: Re-Generated From digitalocean/openapi@a0a7ddf #258

Merged
merged 1 commit into from
Dec 7, 2023
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
2 changes: 1 addition & 1 deletion DO_OPENAPI_COMMIT_SHA.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cbd1bc6
a0a7ddf
20 changes: 12 additions & 8 deletions src/pydo/aio/operations/_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -51320,8 +51320,9 @@ async def get_logs_active_deployment(

* BUILD: Build-time logs
* DEPLOY: Deploy-time logs
* RUN: Live run-time logs. Known values are: "UNSPECIFIED", "BUILD", "DEPLOY", and "RUN".
Default value is "UNSPECIFIED".
* RUN: Live run-time logs
* RUN_RESTARTED: Logs of crashed/restarted instances during runtime. Known values are:
"UNSPECIFIED", "BUILD", "DEPLOY", "RUN", and "RUN_RESTARTED". Default value is "UNSPECIFIED".
:paramtype type: str
:keyword pod_connection_timeout: An optional time duration to wait if the underlying component
instance is not immediately available. Default: ``3m``. Default value is None.
Expand Down Expand Up @@ -58780,8 +58781,9 @@ async def get_logs(

* BUILD: Build-time logs
* DEPLOY: Deploy-time logs
* RUN: Live run-time logs. Known values are: "UNSPECIFIED", "BUILD", "DEPLOY", and "RUN".
Default value is "UNSPECIFIED".
* RUN: Live run-time logs
* RUN_RESTARTED: Logs of crashed/restarted instances during runtime. Known values are:
"UNSPECIFIED", "BUILD", "DEPLOY", "RUN", and "RUN_RESTARTED". Default value is "UNSPECIFIED".
:paramtype type: str
:keyword pod_connection_timeout: An optional time duration to wait if the underlying component
instance is not immediately available. Default: ``3m``. Default value is None.
Expand Down Expand Up @@ -58919,8 +58921,9 @@ async def get_logs_aggregate(

* BUILD: Build-time logs
* DEPLOY: Deploy-time logs
* RUN: Live run-time logs. Known values are: "UNSPECIFIED", "BUILD", "DEPLOY", and "RUN".
Default value is "UNSPECIFIED".
* RUN: Live run-time logs
* RUN_RESTARTED: Logs of crashed/restarted instances during runtime. Known values are:
"UNSPECIFIED", "BUILD", "DEPLOY", "RUN", and "RUN_RESTARTED". Default value is "UNSPECIFIED".
:paramtype type: str
:keyword pod_connection_timeout: An optional time duration to wait if the underlying component
instance is not immediately available. Default: ``3m``. Default value is None.
Expand Down Expand Up @@ -59055,8 +59058,9 @@ async def get_logs_active_deployment_aggregate(

* BUILD: Build-time logs
* DEPLOY: Deploy-time logs
* RUN: Live run-time logs. Known values are: "UNSPECIFIED", "BUILD", "DEPLOY", and "RUN".
Default value is "UNSPECIFIED".
* RUN: Live run-time logs
* RUN_RESTARTED: Logs of crashed/restarted instances during runtime. Known values are:
"UNSPECIFIED", "BUILD", "DEPLOY", "RUN", and "RUN_RESTARTED". Default value is "UNSPECIFIED".
:paramtype type: str
:keyword pod_connection_timeout: An optional time duration to wait if the underlying component
instance is not immediately available. Default: ``3m``. Default value is None.
Expand Down
20 changes: 12 additions & 8 deletions src/pydo/operations/_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -58259,8 +58259,9 @@ def get_logs_active_deployment(

* BUILD: Build-time logs
* DEPLOY: Deploy-time logs
* RUN: Live run-time logs. Known values are: "UNSPECIFIED", "BUILD", "DEPLOY", and "RUN".
Default value is "UNSPECIFIED".
* RUN: Live run-time logs
* RUN_RESTARTED: Logs of crashed/restarted instances during runtime. Known values are:
"UNSPECIFIED", "BUILD", "DEPLOY", "RUN", and "RUN_RESTARTED". Default value is "UNSPECIFIED".
:paramtype type: str
:keyword pod_connection_timeout: An optional time duration to wait if the underlying component
instance is not immediately available. Default: ``3m``. Default value is None.
Expand Down Expand Up @@ -65715,8 +65716,9 @@ def get_logs(

* BUILD: Build-time logs
* DEPLOY: Deploy-time logs
* RUN: Live run-time logs. Known values are: "UNSPECIFIED", "BUILD", "DEPLOY", and "RUN".
Default value is "UNSPECIFIED".
* RUN: Live run-time logs
* RUN_RESTARTED: Logs of crashed/restarted instances during runtime. Known values are:
"UNSPECIFIED", "BUILD", "DEPLOY", "RUN", and "RUN_RESTARTED". Default value is "UNSPECIFIED".
:paramtype type: str
:keyword pod_connection_timeout: An optional time duration to wait if the underlying component
instance is not immediately available. Default: ``3m``. Default value is None.
Expand Down Expand Up @@ -65854,8 +65856,9 @@ def get_logs_aggregate(

* BUILD: Build-time logs
* DEPLOY: Deploy-time logs
* RUN: Live run-time logs. Known values are: "UNSPECIFIED", "BUILD", "DEPLOY", and "RUN".
Default value is "UNSPECIFIED".
* RUN: Live run-time logs
* RUN_RESTARTED: Logs of crashed/restarted instances during runtime. Known values are:
"UNSPECIFIED", "BUILD", "DEPLOY", "RUN", and "RUN_RESTARTED". Default value is "UNSPECIFIED".
:paramtype type: str
:keyword pod_connection_timeout: An optional time duration to wait if the underlying component
instance is not immediately available. Default: ``3m``. Default value is None.
Expand Down Expand Up @@ -65990,8 +65993,9 @@ def get_logs_active_deployment_aggregate(

* BUILD: Build-time logs
* DEPLOY: Deploy-time logs
* RUN: Live run-time logs. Known values are: "UNSPECIFIED", "BUILD", "DEPLOY", and "RUN".
Default value is "UNSPECIFIED".
* RUN: Live run-time logs
* RUN_RESTARTED: Logs of crashed/restarted instances during runtime. Known values are:
"UNSPECIFIED", "BUILD", "DEPLOY", "RUN", and "RUN_RESTARTED". Default value is "UNSPECIFIED".
:paramtype type: str
:keyword pod_connection_timeout: An optional time duration to wait if the underlying component
instance is not immediately available. Default: ``3m``. Default value is None.
Expand Down
Loading