Skip to main content

available_services

Creates, updates, deletes, gets or lists an available_services resource.

Overview

Nameavailable_services
TypeResource
Idlinode.account.available_services

Fields

The following fields are returned by SELECT queries:

List of regions and the services available in each.

NameDatatypeDescription
availablearrayRead-only A list of services available to your account in the region.
regionstringRead-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)
unavailablearrayRead-only A list of services unavailable to your account in the region.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_availabilityselectpage, page_sizeReturns 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.

NameDatatypeDescription
pageintegerThe page of a collection to return.
page_sizeintegerThe number of items to return per page.

SELECT examples

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 }}';