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
namestringGets the name of a count type
propertiesobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, automationAccountName, countType, subscriptionIdRetrieve 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
automationAccountNamestringThe name of the automation account.
countTypestringThe type of counts to retrieve
resourceGroupNamestringName of an Azure Resource group.
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Retrieve counts for Dsc Nodes.

SELECT
name,
properties
FROM azure.automation.node_count_information
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND countType = '{{ countType }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;