Skip to main content

workspace_managed_sql_server_usages

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

Overview

Nameworkspace_managed_sql_server_usages
TypeResource
Idazure.synapse.workspace_managed_sql_server_usages

Fields

NameDatatypeDescription
namestringName of the server usage metric.
currentValuenumberThe current value of the metric.
displayNamestringThe metric display name.
limitnumberThe current limit of the metric.
nextResetTimestringThe next reset time for the metric (ISO8601 format).
resourceNamestringThe name of the resource.
unitstringThe units of the metric.

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, subscriptionId, workspaceNameGet 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 }}';