iot_dps_resource_valid_skus
Creates, updates, deletes, gets or lists an iot_dps_resource_valid_skus
resource.
Overview
Name | iot_dps_resource_valid_skus |
Type | Resource |
Id | azure.iot_hub_device_provisioning.iot_dps_resource_valid_skus |
Fields
The following fields are returned by SELECT
queries:
- list
This is a synchronous operation. The body contains a JSON-serialized array of the valid SKUs for this provisioning service.
Name | Datatype | Description |
---|---|---|
name | string | Sku name. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | provisioningServiceName , subscriptionId , resourceGroupName | api-version | Gets the list of valid SKUs and tiers for a provisioning service. |
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 |
---|---|---|
provisioningServiceName | string | Name of provisioning service. |
resourceGroupName | string | Name of resource group. |
subscriptionId | string | The subscription identifier. |
api-version | string | The version of the API. |
SELECT
examples
- list
Gets the list of valid SKUs and tiers for a provisioning service.
SELECT
name
FROM azure.iot_hub_device_provisioning.iot_dps_resource_valid_skus
WHERE provisioningServiceName = '{{ provisioningServiceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND api-version = '{{ api-version }}'
;