Skip to main content

subscriptions_quotas

Creates, updates, deletes, gets or lists a subscriptions_quotas resource.

Overview

Namesubscriptions_quotas
TypeResource
Idazure.stream_analytics.subscriptions_quotas

Fields

The following fields are returned by SELECT queries:

Successfully retrieved the subscription's quota information in the specified region.

NameDatatypeDescription
idstringResource Id
namestringResource name
propertiesDescribes the properties of the quota.
typestringResource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocation, subscriptionIdRetrieves 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.

NameDatatypeDescription
locationstringThe 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/
subscriptionIdstringThe ID of the target subscription.

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 }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;