Skip to main content

usages

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

Overview

Nameusages
TypeResource
Idazure.container_apps.usages

Fields

NameDatatypeDescription
nameobjectThe Usage Names.
currentValuenumberThe current usage of the resource.
limitnumberThe maximum permitted usage of the resource.
unitstringAn enum describing the unit of usage measurement.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdGets, for the specified location, the current resource usage information as well as the limits under the subscription.

SELECT examples

Gets, for the specified location, the current resource usage information as well as the limits under the subscription.

SELECT
name,
currentValue,
limit,
unit
FROM azure.container_apps.usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';