location_capabilities
Creates, updates, deletes, gets or lists a location_capabilities
resource.
Overview
Name | location_capabilities |
Type | Resource |
Id | azure.container_instances.location_capabilities |
Fields
Name | Datatype | Description |
---|---|---|
capabilities | object | The supported capabilities. |
gpu | string | The GPU sku that this capability describes. |
ipAddressType | string | The ip address type that this capability describes. |
location | string | The resource location. |
osType | string | The OS type that this capability describes. |
resourceType | string | The resource type that this capability describes. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Get 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 }}';