Skip to content

Latest commit

 

History

History
109 lines (80 loc) · 2.68 KB

File metadata and controls

109 lines (80 loc) · 2.68 KB
external help file ms.assetid online version schema
Microsoft.Azure.Commands.ResourceManager.Automation.dll-Help.xml
8FB78A4A-8392-44EE-A907-10FDF756071B
2.0.0

Get-AzureRmAutomationVariable

SYNOPSIS

Gets an Automation variable.

SYNTAX

ByAll (Default)

Get-AzureRmAutomationVariable [-ResourceGroupName] <String> [-AutomationAccountName] <String>
 [<CommonParameters>]

ByName

Get-AzureRmAutomationVariable [-Name] <String> [-ResourceGroupName] <String> [-AutomationAccountName] <String>
 [<CommonParameters>]

DESCRIPTION

The Get-AzureRmAutomationVariable cmdlet gets one or more Azure Automation variables. To get a specific variable, specify its name.

EXAMPLES

Example 1: Get a variable

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.

PARAMETERS

-AutomationAccountName

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

-Name

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

-ResourceGroupName

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

CommonParameters

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).

INPUTS

OUTPUTS

Microsoft.Azure.Commands.Automation.Model.Variable

NOTES

RELATED LINKS

New-AzureRmAutomationVariable

Remove-AzureRmAutomationVariable

Set-AzureRmAutomationVariable