Share via


ConnectionTypeOperationsExtensions.Get Method (IConnectionTypeOperations, String, String)

 

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

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

Syntax

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

Parameters

  • automationAccount
    Type: System.String

    Required. The automation account name.

  • connectionTypeName
    Type: System.String

    Required. The name of connectiontype.

Return Value

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

The response model for the get connection type operation.

See Also

ConnectionTypeOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top