Share via


CertificateOperationsExtensions.GetAsync Method (ICertificateOperations, String, String)

 

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

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

Syntax

public static Task<CertificateGetResponse> GetAsync(
    this ICertificateOperations operations,
    string automationAccount,
    string certificateName
)
public:
[ExtensionAttribute]
static Task<CertificateGetResponse^>^ GetAsync(
    ICertificateOperations^ operations,
    String^ automationAccount,
    String^ certificateName
)
static member GetAsync : 
        operations:ICertificateOperations *
        automationAccount:string *
        certificateName:string -> Task<CertificateGetResponse>
<ExtensionAttribute>
Public Shared Function GetAsync (
    operations As ICertificateOperations,
    automationAccount As String,
    certificateName As String
) As Task(Of CertificateGetResponse)

Parameters

  • automationAccount
    Type: System.String

    Required. The automation account name.

  • certificateName
    Type: System.String

    Required. The name of certificate.

Return Value

Type: System.Threading.Tasks.Task<CertificateGetResponse>

The response model for the get certificate operation.

See Also

CertificateOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top