diff --git a/examples/16_create_sandbox_with_auto_delete_simple.py b/examples/16_create_sandbox_with_auto_delete_simple.py index 67b4c97d..d5c49551 100644 --- a/examples/16_create_sandbox_with_auto_delete_simple.py +++ b/examples/16_create_sandbox_with_auto_delete_simple.py @@ -52,7 +52,6 @@ def main(): name=f"auto-delete-test-simple-{suffix}", wait_ready=True, api_token=api_token, - region="fra", delete_after_delay=delete_after_delay, ) create_duration = time.time() - create_start diff --git a/examples/17_create_sandbox_with_auto_delete.py b/examples/17_create_sandbox_with_auto_delete.py index b2f02431..1b9badd2 100644 --- a/examples/17_create_sandbox_with_auto_delete.py +++ b/examples/17_create_sandbox_with_auto_delete.py @@ -141,7 +141,6 @@ def main(): name="auto-delete-test-1", wait_ready=True, api_token=api_token, - region="fra", delete_after_delay=delete_after_delay_1, ) create_duration = time.time() - create_start @@ -184,7 +183,6 @@ def main(): name=f"auto-delete-test-2-{suffix}", wait_ready=True, api_token=api_token, - region="fra", idle_timeout=idle_timeout_2, delete_after_inactivity_delay=delete_after_inactivity_2, ) diff --git a/examples/18_create_sandbox_with_existing_app.py b/examples/18_create_sandbox_with_existing_app.py index c46bffe9..4ff6def0 100644 --- a/examples/18_create_sandbox_with_existing_app.py +++ b/examples/18_create_sandbox_with_existing_app.py @@ -54,7 +54,6 @@ def main(): name=f"sandbox-in-existing-app-{suffix}", wait_ready=True, api_token=api_token, - region="fra", app_id=app_id, # Use the existing app instead of creating a new one )