< Back

Get-AzureRmAutomationCredential

Tue Jan 29, 2019 9:31 pm

NAME Get-AzureRmAutomationCredential



SYNOPSIS

Gets Automation credentials.





SYNTAX

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

<IAzureContextContainer>] [<CommonParameters>]





DESCRIPTION

The Get-AzureRmAutomationCredential cmdlet gets one or more Azure Automation credentials. By default, all credentials are returned. Specify the

name of a credential to get a specific credential.



For security purposes, this cmdlet does not return credential passwords.





PARAMETERS

-AutomationAccountName <String>

Specifies the name of the Automation account for which this cmdlet retrieves credentials.



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 credential to retrieve.



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 retrieves credentials.



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







NOTES









Example 1: Get all credentials



PS C:\\>Get-AzureRmAutomationCredential -ResourceGroupName "ResourceGroup01" -AutomationAccountName "Contoso17"



This command gets metadata for all credentials in the Automation account named Contoso17.





Example 2: Get a credential



PS C:\\>Get-AzureRmAutomationCredential -ResourceGroupName "ResourceGroup01" -AutomationAccountName "Contoso17" -Name "ContosoCredential"



This command gets metadata for the credential named ContosoCredential in the Automation account named Contoso17.







RELATED LINKS

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

New-AzureRmAutomationCredential

Remove-AzureRmAutomationCredential

Set-AzureRmAutomationCredential