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

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTgroupName, serviceName, subscriptionIdThe 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 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 groupName = '{{ groupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';