external help file | ms.assetid | online version | schema |
---|---|---|---|
Microsoft.Azure.Commands.ResourceManager.Automation.dll-Help.xml |
89C931AE-DA81-47A7-80E4-159C36497DA0 |
2.0.0 |
Gets metadata for DSC node configurations in Automation.
Get-AzureRmAutomationDscNodeConfiguration [-RollupStatus <String>] [-ResourceGroupName] <String>
[-AutomationAccountName] <String> [<CommonParameters>]
Get-AzureRmAutomationDscNodeConfiguration -Name <String> [-ResourceGroupName] <String>
[-AutomationAccountName] <String> [<CommonParameters>]
Get-AzureRmAutomationDscNodeConfiguration -ConfigurationName <String> [-RollupStatus <String>]
[-ResourceGroupName] <String> [-AutomationAccountName] <String> [<CommonParameters>]
The Get-AzureRmAutomationDscNodeConfiguration cmdlet gets metadata for APS Desired State Configuration (DSC) node configurations in Azure Automation. Automation stores DSC node configuration as a Managed Object Format (MOF) configuration document.
PS C:\>Get-AzureRmAutomationDscNodeConfiguration -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17"
This command gets metadata for all DSC node configurations in the Automation account named Contoso17.
PS C:\>Get-AzureRmAutomationDscNodeConfiguration -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -ConfigurationName "ContosoConfiguration"
This command gets metadata for all DSC node configurations in the Automation account named Contoso17 that the DSC configuration named ContosoConfiguration generated.
PS C:\>Get-AzureRmAutomationDscNodeConfiguration -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -Name "ContosoConfiguration.webserver"
This command gets metadata for a DSC node configuration with the name ContosoConfiguration.webserver in the Automation account named Contoso17.
Specifies the name of an Automation account that contains the DSC node configurations for which this cmdlet gets metadata.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
Specifies the name of DSC configuration for which this cmdlet gets node configuration metadata.
Type: String
Parameter Sets: ByConfigurationName
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
Specifies the name of the DSC node configuration for which this cmdlet gets metadata.
Type: String
Parameter Sets: ByNodeConfigurationName
Aliases: NodeConfigurationName
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
Specifies the name of a resource group. This cmdlet gets metadata for DSC node configurations in the resource group that this parameter specifies.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
Specifies the rollup status of DSC node configurations that this cmdlet gets.
The acceptable values for this parameter are:
- Bad
- Good
Type: String
Parameter Sets: ByAll, ByConfigurationName
Aliases:
Accepted values: Good, Bad
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).