SshPublicKeysOperationsExtensions.GenerateKeyPairAsync Method

Definition

Generates and returns a public/private key pair and populates the SSH public key resource with the public key. The length of the key will be 3072 bits. This operation can only be performed once per SSH public key resource.

public static System.Threading.Tasks.Task<Microsoft.Azure.Management.Compute.Models.SshPublicKeyGenerateKeyPairResult> GenerateKeyPairAsync (this Microsoft.Azure.Management.Compute.ISshPublicKeysOperations operations, string resourceGroupName, string sshPublicKeyName, System.Threading.CancellationToken cancellationToken = default);
static member GenerateKeyPairAsync : Microsoft.Azure.Management.Compute.ISshPublicKeysOperations * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Management.Compute.Models.SshPublicKeyGenerateKeyPairResult>
<Extension()>
Public Function GenerateKeyPairAsync (operations As ISshPublicKeysOperations, resourceGroupName As String, sshPublicKeyName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of SshPublicKeyGenerateKeyPairResult)

Parameters

operations
ISshPublicKeysOperations

The operations group for this extension method.

resourceGroupName
String

The name of the resource group.

sshPublicKeyName
String

The name of the SSH public key.

cancellationToken
CancellationToken

The cancellation token.

Returns

Applies to