diff --git a/DO_OPENAPI_COMMIT_SHA.txt b/DO_OPENAPI_COMMIT_SHA.txt index fcda552..622654a 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 bce0eb2..4b43aae 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 67ae6ee..fa646cd 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