Share via


ConnectionOperationsExtensions.Get Method (IConnectionOperations, String, String)

 

Retrieve the connection identified by connection name. (see https://aka.ms/azureautomationsdk/connectionoperations for more information)

Namespace:   Microsoft.WindowsAzure.Management.Automation
Assembly:  Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)

Syntax

public static ConnectionGetResponse Get(
    this IConnectionOperations operations,
    string automationAccount,
    string connectionName
)
public:
[ExtensionAttribute]
static ConnectionGetResponse^ Get(
    IConnectionOperations^ operations,
    String^ automationAccount,
    String^ connectionName
)
static member Get : 
        operations:IConnectionOperations *
        automationAccount:string *
        connectionName:string -> ConnectionGetResponse
<ExtensionAttribute>
Public Shared Function Get (
    operations As IConnectionOperations,
    automationAccount As String,
    connectionName As String
) As ConnectionGetResponse

Parameters

  • automationAccount
    Type: System.String

    Required. The automation account name.

  • connectionName
    Type: System.String

    Required. The name of connection.

Return Value

Type: Microsoft.WindowsAzure.Management.Automation.Models.ConnectionGetResponse

The response model for the get connection operation.

See Also

ConnectionOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top