available_services
Creates, updates, deletes, gets or lists an available_services resource.
Overview
| Name | available_services |
| Type | Resource |
| Id | linode.account.available_services |
Fields
The following fields are returned by SELECT queries:
- get_availability
List of regions and the services available in each.
| Name | Datatype | Description |
|---|---|---|
available | array | Read-only A list of services available to your account in the region. |
region | string | Read-only The Akamai cloud computing data center (region), represented by a slug value. You can view a full list of regions and their associated slugs with the List regions operation. (example: us-east) |
unavailable | array | Read-only A list of services unavailable to your account in the region. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_availability | select | page, page_size | Returns a paginated list of the services available to you, for all Linode regions. > 📘 > > Only authorized users can run this operation. Learn more... Learn more... |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
page | integer | The page of a collection to return. |
page_size | integer | The number of items to return per page. |
SELECT examples
- get_availability
Returns a paginated list of the services available to you, for all Linode regions.
> 📘
>
> Only authorized users can run this operation.
Learn more...
Learn more...
SELECT
available,
region,
unavailable
FROM linode.account.available_services
WHERE page = '{{ page }}'
AND page_size = '{{ page_size }}'
;