Skip to main content

net_app_resource_quota_limits

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

Overview

Namenet_app_resource_quota_limits
TypeResource
Idazure.netapp.net_app_resource_quota_limits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
currentintegerThe current quota value.
defaultintegerThe default quota value.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
usageintegerThe usage quota value.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, quota_limit_name, subscription_idGet the default and current quota limit.
listselectlocation, subscription_idGet 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. Required.
quota_limit_namestringThe name of the Quota Limit. Required.
subscription_idstring

SELECT examples

Get the default and current quota limit.

SELECT
id,
name,
current,
default,
systemData,
type,
usage
FROM azure.netapp.net_app_resource_quota_limits
WHERE location = '{{ location }}' -- required
AND quota_limit_name = '{{ quota_limit_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;