Share via


SshPublicKey Constructors

Definition

Overloads

SshPublicKey()

Initializes a new instance of the SshPublicKey class.

SshPublicKey(String, String)

Initializes a new instance of the SshPublicKey class.

SshPublicKey()

Initializes a new instance of the SshPublicKey class.

public SshPublicKey ();
Public Sub New ()

Applies to

SshPublicKey(String, String)

Initializes a new instance of the SshPublicKey class.

public SshPublicKey (string path = default, string keyData = default);
new Microsoft.Azure.Management.Compute.Models.SshPublicKey : string * string -> Microsoft.Azure.Management.Compute.Models.SshPublicKey
Public Sub New (Optional path As String = Nothing, Optional keyData As String = Nothing)

Parameters

path
String

Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys

keyData
String

SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).

Applies to