Skip to main content

location_capabilities

Creates, updates, deletes, gets or lists a location_capabilities resource.

Overview

Namelocation_capabilities
TypeResource
Idazure.container_instances.location_capabilities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
capabilitiesobjectThe supported capabilities.
gpustringThe GPU sku that this capability describes.
ipAddressTypestringThe ip address type that this capability describes.
locationstringThe resource location.
osTypestringThe OS type that this capability describes.
resourceTypestringThe resource type that this capability describes.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, locationGet the list of CPU/memory/GPU capabilities of a region.

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
locationstringThe identifier for the physical azure location.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Get the list of CPU/memory/GPU capabilities of a region.

SELECT
capabilities,
gpu,
ipAddressType,
location,
osType,
resourceType
FROM azure.container_instances.location_capabilities
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;