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

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, resourceGroupName, subscriptionId, data__country, data__location, data__transferTypeThis method provides the list of available skus for the given subscription, resource group and location.

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