< Back

Get-AzureRmAutomationVariable

Tue Jan 29, 2019 9:32 pm

NAME Get-AzureRmAutomationVariable



SYNOPSIS

Gets an Automation variable.





SYNTAX

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

<IAzureContextContainer>] [<CommonParameters>]





DESCRIPTION

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





PARAMETERS

-AutomationAccountName <String>

Specifies the name of the Automation account that contains the variables that this cmdlet gets.



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Name <String>

Specifies the name of a variable that this cmdlet gets.



Required? true

Position? 2

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceGroupName <String>

Specifies the resource group for which this cmdlet gets variables.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

This cmdlet does not accept any input.





OUTPUTS

Microsoft.Azure.Commands.Automation.Model.Variable







NOTES









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.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... onvariable

New-AzureRmAutomationVariable

Remove-AzureRmAutomationVariable

Set-AzureRmAutomationVariable