external help file | ms.assetid | online version | schema |
---|---|---|---|
Microsoft.Azure.Commands.ResourceManager.Automation.dll-Help.xml |
8FB78A4A-8392-44EE-A907-10FDF756071B |
2.0.0 |
Gets an Automation variable.
Get-AzureRmAutomationVariable [-ResourceGroupName] <String> [-AutomationAccountName] <String>
[<CommonParameters>]
Get-AzureRmAutomationVariable [-Name] <String> [-ResourceGroupName] <String> [-AutomationAccountName] <String>
[<CommonParameters>]
The Get-AzureRmAutomationVariable cmdlet gets one or more Azure Automation variables. To get a specific variable, specify its name.
PS C:\> $Variable = Get-AzureRmAutomationVariable -AutomationAccountName "Contoso17" -Name "Variable06" -ResourceGroupName "ResourceGroup01"
PS C:\> $Value = $Variable.value
The first command gets an Automation variable named Variable06 in the account named Contoso17. The command stores that object in the $Variable variable.
The second command uses standard dot notation to refer to the value property of $Variable. The command stores the value in the $value variable.
Specifies the name of the Automation account that contains the variables that this cmdlet gets.
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 a variable that this cmdlet gets.
Type: String
Parameter Sets: ByName
Aliases:
Required: True
Position: 3
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
Specifies the resource group for which this cmdlet gets variables.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
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).