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

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

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdGet the list of CPU/memory/GPU capabilities of a region.

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 location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';