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
The following fields are returned by SELECT
queries:
- list
Successfully retrieved the subscription's quota information in the specified region.
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
properties |
| Describes the properties of the quota. |
type | string | Resource type |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | location , subscriptionId | Retrieves the subscription's current quota information in a particular region. |
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 |
---|---|---|
location | string | The region in which to retrieve the subscription's quota information. You can find out which regions Azure Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/ |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
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 }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;