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 |
|---|---|---|
name | string | Gets the name of a count type |
properties | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resourceGroupName, automationAccountName, countType, subscriptionId | 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 |
|---|---|---|
automationAccountName | string | The name of the automation account. |
countType | string | The type of counts to retrieve |
resourceGroupName | string | Name of an Azure Resource group. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- get
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
;