Skip to main content

resource_quota_limits

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

Overview

Nameresource_quota_limits
TypeResource
Idazure_isv.netapp.resource_quota_limits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectSubscriptionQuotaItem properties

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, location, quotaLimitNameGet the default and current subscription quota limit
listselectsubscriptionId, locationGet the default and current limits for quotas

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 name of the Azure region.
quotaLimitNamestringThe name of the Quota Limit
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get the default and current subscription quota limit

SELECT
properties
FROM azure_isv.netapp.resource_quota_limits
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND quotaLimitName = '{{ quotaLimitName }}' -- required
;