node_count_information
Creates, updates, deletes, gets or lists a node_count_information resource.
Overview
| Name | node_count_information |
| Type | Resource |
| Id | azure.automation.node_count_information |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
totalCount | integer | Gets the total number of records matching countType criteria. |
value | array | Gets an array of counts. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, automation_account_name, count_type, subscription_id | Retrieve counts for Dsc Nodes. |
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 |
|---|---|---|
automation_account_name | string | The name of the automation account. Required. |
count_type | string | The type of counts to retrieve. Known values are: "status" and "nodeconfiguration". Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
Retrieve counts for Dsc Nodes.
SELECT
totalCount,
value
FROM azure.automation.node_count_information
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND automation_account_name = '{{ automation_account_name }}' -- required
AND count_type = '{{ count_type }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;