From bd1f74dd76579b9232875c94ccad12b91144d1ed Mon Sep 17 00:00:00 2001 From: digitalocean-engineering Date: Wed, 29 Nov 2023 11:03:13 -0500 Subject: [PATCH] [bot] Updated client based on openapi-423c2d3/clientgen (#248) Co-authored-by: API Engineering Co-authored-by: Andrew Starr-Bochicchio --- DO_OPENAPI_COMMIT_SHA.txt | 2 +- src/pydo/aio/operations/_operations.py | 4 ++++ src/pydo/operations/_operations.py | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/DO_OPENAPI_COMMIT_SHA.txt b/DO_OPENAPI_COMMIT_SHA.txt index fcda552c..622654a3 100644 --- a/DO_OPENAPI_COMMIT_SHA.txt +++ b/DO_OPENAPI_COMMIT_SHA.txt @@ -1 +1 @@ -7a717b3 +423c2d3 \ No newline at end of file diff --git a/src/pydo/aio/operations/_operations.py b/src/pydo/aio/operations/_operations.py index bce0eb26..4b43aaea 100644 --- a/src/pydo/aio/operations/_operations.py +++ b/src/pydo/aio/operations/_operations.py @@ -72987,6 +72987,10 @@ async def update_online_migration( body = { "disable_ssl": bool, # Optional. Enables SSL encryption when connecting to the source database. + "ignore_dbs": [ + "str" # Optional. List of databases that should be ignored during + migration. + ], "source": { "dbname": "str", # Optional. The name of the default database. "host": "str", # Optional. The FQDN pointing to the database diff --git a/src/pydo/operations/_operations.py b/src/pydo/operations/_operations.py index 67ae6ee2..fa646cd4 100644 --- a/src/pydo/operations/_operations.py +++ b/src/pydo/operations/_operations.py @@ -79862,6 +79862,10 @@ def update_online_migration( body = { "disable_ssl": bool, # Optional. Enables SSL encryption when connecting to the source database. + "ignore_dbs": [ + "str" # Optional. List of databases that should be ignored during + migration. + ], "source": { "dbname": "str", # Optional. The name of the default database. "host": "str", # Optional. The FQDN pointing to the database