subscriptions_quotas
Creates, updates, deletes, gets or lists a subscriptions_quotas
resource.
Overview
Name | subscriptions_quotas |
Type | Resource |
Id | azure.stream_analytics.subscriptions_quotas |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
properties | `` | Describes the properties of the quota. |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Retrieves the subscription's current quota information in a particular region. |
SELECT
examples
Retrieves the subscription's current quota information in a particular region.
SELECT
id,
name,
properties,
type
FROM azure.stream_analytics.subscriptions_quotas
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';