Skip to main content

resource_skus_skus

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

Overview

Nameresource_skus_skus
TypeResource
Idazure.data_migration.resource_skus_skus

Fields

The following fields are returned by SELECT queries:

Got SKUs

NameDatatypeDescription
namestringThe name of SKU.
apiVersionsarrayThe api versions that support this SKU.
capabilitiesarrayA name value pair to describe the capability.
capacityobjectNot used.
costsarrayMetadata for retrieving price info.
familystringThe Family of this particular SKU.
kindstringThe Kind of resources that are supported in this SKU.
locationsarrayThe set of locations that the SKU is available.
resourceTypestringThe type of resource the SKU applies to.
restrictionsarrayThe restrictions because of which SKU cannot be used. This is empty if there are no restrictions.
sizestringThe Size of the SKU.
tierstringSpecifies the tier of DMS (classic) in a scale set.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdapi-versionThe skus action returns the list of SKUs that DMS (classic) supports.

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
subscriptionIdstringSubscription ID that identifies an Azure subscription.
api-versionstringVersion of the API

SELECT examples

The skus action returns the list of SKUs that DMS (classic) supports.

SELECT
name,
apiVersions,
capabilities,
capacity,
costs,
family,
kind,
locations,
resourceType,
restrictions,
size,
tier
FROM azure.data_migration.resource_skus_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
;