services_skus
Creates, updates, deletes, gets or lists a services_skus resource.
Overview
| Name | services_skus |
| Type | Resource |
| Id | azure.data_migration.services_skus |
Fields
The following fields are returned by SELECT queries:
- list
Got SKUs
| Name | Datatype | Description |
|---|---|---|
capacity | object | A description of the scaling capacities of the SKU |
resourceType | string | The resource type, including the provider namespace |
sku | object | SKU name, tier, etc. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, groupName, serviceName | api-version | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
groupName | string | Name of the resource group |
serviceName | string | Name of the service |
subscriptionId | string | Subscription ID that identifies an Azure subscription. |
api-version | string | Version of the API |
SELECT examples
- list
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 }}'
;