Skip to main content

net_app_resource_quota_limits_account

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

Overview

Namenet_app_resource_quota_limits_account
TypeResource
Idazure.netapp.net_app_resource_quota_limits_account

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
getselectresource_group_name, account_name, quota_limit_name, subscription_idGet the default, current and usages account quota limit.
listselectresource_group_name, account_name, subscription_idGets a list of quota limits for all quotas that are under account. Currently PoolsPerAccount is the only one.

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
account_namestringThe name of the NetApp account. Required.
quota_limit_namestringThe name of the Quota Limit. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Get the default, current and usages account quota limit.

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