Skip to main content

services_skus

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

Overview

Nameservices_skus
TypeResource
Idazure.data_migration.services_skus

Fields

The following fields are returned by SELECT queries:

Got SKUs

NameDatatypeDescription
capacityobjectA description of the scaling capacities of the SKU
resourceTypestringThe resource type, including the provider namespace
skuobjectSKU name, tier, etc.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, groupName, serviceNameapi-versionThe services resource is the top-level resource that represents the Database Migration Service (classic). The skus action returns the list of SKUs that a service resource can be updated to.

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

SELECT examples

The services resource is the top-level resource that represents the Database Migration Service (classic). The skus action returns the list of SKUs that a service resource can be updated to.

SELECT
capacity,
resourceType,
sku
FROM azure.data_migration.services_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND groupName = '{{ groupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND api-version = '{{ api-version }}'
;