Skip to main content

availability

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

Overview

Nameavailability
TypeResource
Idlinode.account.availability

Fields

The following fields are returned by SELECT queries:

The services available in the specified region.

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
getselectregionIdView the available services for your account, in a specific region.

> 📘
>
> Only account users with unrestricted access 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
regionIdstringThe abbreviated value ("slug") for the applicable data center. Run the List regions operation to view the slug for each data center.

SELECT examples

View the available services for your account, in a specific region.

> 📘
>
> Only account users with unrestricted access can run this operation.

Learn more...

Learn more...

SELECT
available,
region,
unavailable
FROM linode.account.availability
WHERE regionId = '{{ regionId }}' -- required
;