Get-AzureAutomationConnection
Syntax
Get-AzureAutomationConnection
-AutomationAccountName <String>
-ConnectionTypeName <String>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Get-AzureAutomationConnection
-AutomationAccountName <String>
-Name <String>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Description
The Get-AzureAutomationConnection cmdlet gets one or more Microsoft Azure Automation connections. By default, all connections are returned. To get a specific connection, specify its name. To get all connections of a certain type, specify the connection type name.
Examples
Example 1: Get all connections
PS C:\> Get-AzureAutomationConnection -AutomationAccountName "Contoso17"
This command gets all connections in the Automation account named Contoso17.
Example 2: Get all connections of a type
PS C:\> Get-AzureAutomationConnection -AutomationAccountName "Contoso17" -ConnectionTypeName "Azure"
This command gets all Azure connections in the Automation account named Contoso17.
Example 3: Get a connection
PS C:\> Get-AzureAutomationConnection -AutomationAccountName "Contoso17" -Name "Azure"
This command gets the connection named MyConnection.
Required Parameters
Specifies the name of the automation account with the connection to retrieve.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True (ByPropertyName) |
| Accept wildcard characters: | False |
Specifies the name of a connection type for the connections to retrieve.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True (ByPropertyName) |
| Accept wildcard characters: | False |
Specifies the name of a connection to retrieve.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True (ByPropertyName) |
| Accept wildcard characters: | False |
Optional Parameters
Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile.
| Type: | AzureSMProfile |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Outputs
Microsoft.Azure.Commands.Automation.Model.Connection