Udostępnij za pośrednictwem


SshPublicKeyGenerateKeyPairResultInner Constructors

Definition

Overloads

SshPublicKeyGenerateKeyPairResultInner()

Initializes a new instance of the SshPublicKeyGenerateKeyPairResultInner class.

SshPublicKeyGenerateKeyPairResultInner(String, String, String)

Initializes a new instance of the SshPublicKeyGenerateKeyPairResultInner class.

SshPublicKeyGenerateKeyPairResultInner()

Initializes a new instance of the SshPublicKeyGenerateKeyPairResultInner class.

public SshPublicKeyGenerateKeyPairResultInner ();
Public Sub New ()

Applies to

SshPublicKeyGenerateKeyPairResultInner(String, String, String)

Initializes a new instance of the SshPublicKeyGenerateKeyPairResultInner class.

public SshPublicKeyGenerateKeyPairResultInner (string privateKey, string publicKey, string id);
new Microsoft.Azure.Management.Compute.Fluent.Models.SshPublicKeyGenerateKeyPairResultInner : string * string * string -> Microsoft.Azure.Management.Compute.Fluent.Models.SshPublicKeyGenerateKeyPairResultInner
Public Sub New (privateKey As String, publicKey As String, id As String)

Parameters

privateKey
String

Private key portion of the key pair used to authenticate to a virtual machine through ssh. The private key is returned in RFC3447 format and should be treated as a secret.

publicKey
String

Public key portion of the key pair used to authenticate to a virtual machine through ssh. The public key is in ssh-rsa format.

id
String

The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/sshPublicKeys/{SshPublicKeyName}

Applies to