Class ContainerServiceSshPublicKey
Contains information about SSH certificate public key data.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class ContainerServiceSshPublicKey
Constructors
ContainerServiceSshPublicKey()
Initializes a new instance of the ContainerServiceSshPublicKey class.
Declaration
public ContainerServiceSshPublicKey ();
ContainerServiceSshPublicKey(String)
Initializes a new instance of the ContainerServiceSshPublicKey class.
Declaration
public ContainerServiceSshPublicKey (string keyData);
Parameters
|
String
keyData
Certificate public key used to authenticate with VMs through SSH. The certificate must be in PEM format with or without headers. |
Properties
KeyData
Gets or sets certificate public key used to authenticate with VMs through SSH. The certificate must be in PEM format with or without headers.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="keyData")]
public string KeyData { get; set; }
Property Value
|
String
|
Methods
Validate()
Validate the object.
Declaration
public virtual void Validate ();
Exceptions
|
ValidationException
Thrown if validation fails |