Udostępnij za pośrednictwem


SshPublicKeyInner Constructors

Definition

Overloads

SshPublicKeyInner()

Initializes a new instance of the SshPublicKeyInner class.

SshPublicKeyInner(String, String)

Initializes a new instance of the SshPublicKeyInner class.

SshPublicKeyInner()

Initializes a new instance of the SshPublicKeyInner class.

public SshPublicKeyInner ();
Public Sub New ()

Applies to

SshPublicKeyInner(String, String)

Initializes a new instance of the SshPublicKeyInner class.

public SshPublicKeyInner (string path = default, string keyData = default);
new Microsoft.Azure.Management.Compute.Fluent.Models.SshPublicKeyInner : string * string -> Microsoft.Azure.Management.Compute.Fluent.Models.SshPublicKeyInner
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. <br><br> For creating ssh keys, see Create SSH keys on Linux and Mac for Linux VMs in Azure.

Applies to