Skip to main content

usages

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

Overview

Nameusages
TypeResource
Idazure_isv.vmware_cloud_simple.usages

Fields

NameDatatypeDescription
nameobjectUser name model
currentValueintegerThe current usage value
limitintegerlimit of a given sku in a region for a subscription. The maximum permitted value for the usage quota. If there is no limit, this value will be -1
unitstringThe usages' unit

Methods

NameAccessible byRequired ParamsDescription
listSELECTregionId, subscriptionIdReturns list of usage in region

SELECT examples

Returns list of usage in region

SELECT
name,
currentValue,
limit,
unit
FROM azure_isv.vmware_cloud_simple.usages
WHERE regionId = '{{ regionId }}'
AND subscriptionId = '{{ subscriptionId }}';