volume_containers_metric_definitions
Creates, updates, deletes, gets or lists a volume_containers_metric_definitions
resource.
Overview
Name | volume_containers_metric_definitions |
Type | Resource |
Id | azure_extras.storsimple_8000_series.volume_containers_metric_definitions |
Fields
The following fields are returned by SELECT
queries:
- list
The collection of metric definitions.
Name | Datatype | Description |
---|---|---|
name | object | The metric name. |
category | string | The category of the metric. |
dimensions | array | The available metric dimensions. |
metricAvailabilities | array | The available metric granularities. |
primaryAggregationType | string | The metric aggregation type. |
resourceId | string | The metric source ID. |
type | string | The metric definition type. |
unit | string | The metric unit. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | deviceName , volumeContainerName , subscriptionId , resourceGroupName , managerName | Gets the metric definitions for the specified volume container. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
deviceName | string | The device name |
managerName | string | The manager name |
resourceGroupName | string | The resource group name |
subscriptionId | string | The subscription id |
volumeContainerName | string | The volume container name. |
SELECT
examples
- list
Gets the metric definitions for the specified volume container.
SELECT
name,
category,
dimensions,
metricAvailabilities,
primaryAggregationType,
resourceId,
type,
unit
FROM azure_extras.storsimple_8000_series.volume_containers_metric_definitions
WHERE deviceName = '{{ deviceName }}' -- required
AND volumeContainerName = '{{ volumeContainerName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;