service_available_skus_by_resource_groups
Creates, updates, deletes, gets or lists a service_available_skus_by_resource_groups
resource.
Overview
Name | service_available_skus_by_resource_groups |
Type | Resource |
Id | azure.data_box.service_available_skus_by_resource_groups |
Fields
The following fields are returned by SELECT
queries:
- list
The list of available skus under Resource group.
Name | Datatype | Description |
---|---|---|
enabled | boolean | The sku is enabled or not. |
properties | object | Properties of the sku. |
sku | object | The Sku. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , location | This method provides the list of available skus for the given subscription, resource group and location. |
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 location of the resource |
resourceGroupName | string | The Resource Group Name |
subscriptionId | string | The Subscription Id |
SELECT
examples
- list
This method provides the list of available skus for the given subscription, resource group and location.
SELECT
enabled,
properties,
sku
FROM azure.data_box.service_available_skus_by_resource_groups
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
;