Getting Started
Installation
pip install capo-arc-region-switch
Usage
from capo_arc_region_switch import AsyncARCRegionswitchClient
async def main():
async with AsyncARCRegionswitchClient() as arc_regionswitch:
# Example: call the approve_plan_execution_step operation
response = await arc_regionswitch.approve_plan_execution_step()
print(response)
Pagination
Some operations in this SDK support pagination. If the operation supports pagination it will have an iter_ prefixed method that returns an async iterator.
from capo_arc_region_switch import AsyncARCRegionswitchClient
async def main():
async with AsyncARCRegionswitchClient() as arc_regionswitch:
# Example: paginate over get_plan_evaluation_status
async for item in arc_regionswitch.iter_get_plan_evaluation_status():
print(item)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from capo_arc_region_switch import AsyncARCRegionswitchClient
from capo_arc_region_switch.error import AccessDeniedException
async def main():
async with AsyncARCRegionswitchClient() as arc_regionswitch:
try:
await arc_regionswitch.approve_plan_execution_step()
except AccessDeniedException as e:
print(f"Error: {e}")
print(e.data) # additional error data
Retrying
The SDK retries failed operations automatically. Retry behaviour follows the Smithy specification: errors are retried based on their is_retryable and is_throttling_error attributes. Throttling errors use a longer base delay. Network-level failures (connection errors and timeouts) are also retried. Non-retryable errors, such as client errors without the @retryable trait, are raised immediately without further attempts.
The number of attempts defaults to 3 and can be changed at the client level via retry_max_attempts, or per call via config_overrides.
from capo_arc_region_switch import AsyncARCRegionswitchClient
async def main():
async with AsyncARCRegionswitchClient() as arc_regionswitch:
# Default: 3 attempts for every operation
response = await arc_regionswitch.approve_plan_execution_step()
# Override per operation
response = await arc_regionswitch.approve_plan_execution_step(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await arc_regionswitch.approve_plan_execution_step(config_overrides={"retry_max_attempts": 1})
Release files for capo-arc-region-switch 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| capo_arc_region_switch-0.1.0.tar.gz | 101.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_arc_region_switch-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 341.1 kB
Release files / capo_arc_region_switch-0.1.0.tar.gz
| Download URL | capo_arc_region_switch-0.1.0.tar.gz |
|---|---|
| Size | 101.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
24286fc9e479cea5f6e448840420417b7fa39f1e16588ed6f418e92e0103b9b3
|
|
BLAKE2b-256 checksum How to use checksums |
6d2f35024afd0b5bb4acb9f63507e706d61b401a7287550ebe29ea7b3b03ef87
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.15 {"installer":{"name":"uv","version":"0.12.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / capo_arc_region_switch-0.1.0-py3-none-any.whl
| Download URL | capo_arc_region_switch-0.1.0-py3-none-any.whl |
|---|---|
| Size | 239.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3c4321bcd94bc0751dd0e4f669b2bc447c64459ac0a6c935db46e0536dbed728
|
|
BLAKE2b-256 checksum How to use checksums |
dd1fb5d39ad3b9349192b78816ec1f3d20e946f925cfe1656da0df6036cf526d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.15 {"installer":{"name":"uv","version":"0.12.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|