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.2.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.2.0.tar.gz | 105.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_arc_region_switch-0.2.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 349.3 kB
Release files / capo_arc_region_switch-0.2.0.tar.gz
| Download URL | capo_arc_region_switch-0.2.0.tar.gz |
|---|---|
| Size | 105.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
0678b502ab22242c293dabf0668f40bc2e8a820de9bdb828ac5df6a9b8fdf342
|
|
BLAKE2b-256 checksum How to use checksums |
3b1c65f9424690590830e1eb83e8f9f5b58ffb443eb127dd67431c803e3668a7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","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.2.0-py3-none-any.whl
| Download URL | capo_arc_region_switch-0.2.0-py3-none-any.whl |
|---|---|
| Size | 243.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c8ef9c7ae3bb820ebf87a93eb036e81e0196c2b91f0aa265053b100c54aeafea
|
|
BLAKE2b-256 checksum How to use checksums |
91dece2264afdc8c155032a0c97c67d5244bec5a33a6d9e6fb0183d12c278cd7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","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}
|