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.3.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.3.0.tar.gz | 109.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| capo_arc_region_switch-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 356.8 kB
Release files / capo_arc_region_switch-0.3.0.tar.gz
| Download URL | capo_arc_region_switch-0.3.0.tar.gz |
|---|---|
| Size | 109.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ac50c9a5e2a9960a4e7231aafd2c1ad12e38d13a861438b2f8c021e4d2eacbc6
|
|
BLAKE2b-256 checksum How to use checksums |
b7ebfc9fe6453a20f566ca09a738eacaa5d3e2e8bc0eee75cdf0c6c315c2c90c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","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.3.0-py3-none-any.whl
| Download URL | capo_arc_region_switch-0.3.0-py3-none-any.whl |
|---|---|
| Size | 247.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
de4e9a158594246b2e738db8cd952b43ae47d28d81fd02cded2395e42f1a6e53
|
|
BLAKE2b-256 checksum How to use checksums |
bbfe966ad24befdcf3d6d662b8efa60132b14f5ca1bba8d687301c2d891f5197
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","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}
|