sk_us
Creates, updates, deletes, gets or lists a sk_us resource.
Overview
| Name | sk_us |
| Type | Resource |
| Id | azure.engagement_fabric.sk_us |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the SKU |
locationInfo | array | Locations and zones |
locations | array | The set of locations that the SKU is available |
resourceType | string | The fully qualified resource type |
restrictions | array | The restrictions because of which SKU cannot be used |
tier | string | The price tier of the SKU |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId |
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 |
|---|---|---|
subscriptionId | string | Subscription ID |
SELECT examples
- list
OK
SELECT
name,
locationInfo,
locations,
resourceType,
restrictions,
tier
FROM azure.engagement_fabric.sk_us
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;