Skip to main content

node_count_information

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

Overview

Namenode_count_information
TypeResource
Idazure.automation.node_count_information

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
totalCountintegerGets the total number of records matching countType criteria.
valuearrayGets an array of counts.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, automation_account_name, count_type, subscription_idRetrieve 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.

NameDatatypeDescription
automation_account_namestringThe name of the automation account. Required.
count_typestringThe type of counts to retrieve. Known values are: "status" and "nodeconfiguration". Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

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
;