Class SshConfiguration
SSH configuration for Linux based VMs running on Azure
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class SshConfiguration
Constructors
SshConfiguration()
Initializes a new instance of the SshConfiguration class.
Declaration
public SshConfiguration ();
SshConfiguration(IList<SshPublicKey>)
Initializes a new instance of the SshConfiguration class.
Declaration
public SshConfiguration (System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.SshPublicKey> publicKeys = null);
Parameters
|
IList<SshPublicKey>
publicKeys
The list of SSH public keys used to authenticate with linux based VMs. |
Properties
PublicKeys
Gets or sets the list of SSH public keys used to authenticate with linux based VMs.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="publicKeys")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.SshPublicKey> PublicKeys { get; set; }
Property Value
|
IList<SshPublicKey>
|