usages
Creates, updates, deletes, gets or lists a usages
resource.
Overview
Name | usages |
Type | Resource |
Id | azure.data_migration.usages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The resource ID of the quota object |
name | object | The name of the quota |
currentValue | number | The current value of the quota. If null or missing, the current value cannot be determined in the context of the request. |
limit | number | The maximum value of the quota. If null or missing, the quota has no maximum, in which case it merely tracks usage. |
unit | string | The unit for the quota, such as Count, Bytes, BytesPerSecond, etc. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | This method returns region-specific quotas and resource usage information for the Azure Database Migration Service (classic). |
SELECT
examples
This method returns region-specific quotas and resource usage information for the Azure Database Migration Service (classic).
SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.data_migration.usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';