Skip to main content

service_available_skus_by_resource_groups

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

Overview

Nameservice_available_skus_by_resource_groups
TypeResource
Idazure.data_box.service_available_skus_by_resource_groups

Fields

The following fields are returned by SELECT queries:

The list of available skus under Resource group.

NameDatatypeDescription
enabledbooleanThe sku is enabled or not.
propertiesobjectProperties of the sku.
skuobjectThe Sku.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, locationThis 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.

NameDatatypeDescription
locationstringThe location of the resource
resourceGroupNamestringThe Resource Group Name
subscriptionIdstringThe Subscription Id

SELECT examples

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
;