workspace_managed_sql_server_usages
Creates, updates, deletes, gets or lists a workspace_managed_sql_server_usages
resource.
Overview
Name | workspace_managed_sql_server_usages |
Type | Resource |
Id | azure.synapse.workspace_managed_sql_server_usages |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the server usage metric. |
currentValue | number | The current value of the metric. |
displayName | string | The metric display name. |
limit | number | The current limit of the metric. |
nextResetTime | string | The next reset time for the metric (ISO8601 format). |
resourceName | string | The name of the resource. |
unit | string | The units of the metric. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId, workspaceName | Get list of server usages metric for workspace managed sql server. |
SELECT
examples
Get list of server usages metric for workspace managed sql server.
SELECT
name,
currentValue,
displayName,
limit,
nextResetTime,
resourceName,
unit
FROM azure.synapse.workspace_managed_sql_server_usages
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';