## List Regions `load_balancers.regions.list(RegionListParams**kwargs) -> RegionListResponse` **get** `/accounts/{account_id}/load_balancers/regions` List all region mappings. ### Parameters - `account_id: str` Identifier. - `country_code_a2: Optional[str]` Two-letter alpha-2 country code followed in ISO 3166-1. - `subdivision_code: Optional[str]` Two-letter subdivision code followed in ISO 3166-2. - `subdivision_code_a2: Optional[str]` Two-letter subdivision code followed in ISO 3166-2. ### Returns - `Union[Optional[str], Optional[object]]` - `Optional[str]` - `Optional[object]` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) regions = client.load_balancers.regions.list( account_id="023e105f4ecef8ad9ca31a8372d0c353", ) print(regions) ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "result": {}, "success": true } ```