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
The following fields are returned by SELECT
queries:
- list
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , location | Get 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.
Name | Datatype | Description |
---|---|---|
location | string | The identifier for the physical azure location. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- list
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
;