Share via


ICertificateOperations.CreateAsync Method (String, CertificateCreateParameters, CancellationToken)

 

Create a certificate. (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

Task<CertificateCreateResponse> CreateAsync(
    string automationAccount,
    CertificateCreateParameters parameters,
    CancellationToken cancellationToken
)
Task<CertificateCreateResponse^>^ CreateAsync(
    String^ automationAccount,
    CertificateCreateParameters^ parameters,
    CancellationToken cancellationToken
)
abstract CreateAsync : 
        automationAccount:string *
        parameters:CertificateCreateParameters *
        cancellationToken:CancellationToken -> Task<CertificateCreateResponse>
Function CreateAsync (
    automationAccount As String,
    parameters As CertificateCreateParameters,
    cancellationToken As CancellationToken
) As Task(Of CertificateCreateResponse)

Parameters

  • automationAccount
    Type: System.String

    The automation account name.

Return Value

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

The response model for the create certificate operation.

See Also

ICertificateOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top