Class SshPublicKeyGenerateKeyPairResultInner
java.lang.Object
com.azure.resourcemanager.compute.fluent.models.SshPublicKeyGenerateKeyPairResultInner
- All Implemented Interfaces:
com.azure.json.JsonSerializable<SshPublicKeyGenerateKeyPairResultInner>
public final class SshPublicKeyGenerateKeyPairResultInner
extends Object
implements com.azure.json.JsonSerializable<SshPublicKeyGenerateKeyPairResultInner>
Response from generation of an SSH key pair.
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of SshPublicKeyGenerateKeyPairResultInner class. -
Method Summary
Modifier and TypeMethodDescriptionfromJson(com.azure.json.JsonReader jsonReader) Reads an instance of SshPublicKeyGenerateKeyPairResultInner from the JsonReader.id()Get the id property: The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/sshPublicKeys/{SshPublicKeyName}.Get the privateKey property: Private key portion of the key pair used to authenticate to a virtual machine through ssh.Get the publicKey property: Public key portion of the key pair used to authenticate to a virtual machine through ssh.com.azure.json.JsonWritertoJson(com.azure.json.JsonWriter jsonWriter) voidvalidate()Validates the instance.Set the id property: The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/sshPublicKeys/{SshPublicKeyName}.withPrivateKey(String privateKey) Set the privateKey property: Private key portion of the key pair used to authenticate to a virtual machine through ssh.withPublicKey(String publicKey) Set the publicKey property: Public key portion of the key pair used to authenticate to a virtual machine through ssh.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.azure.json.JsonSerializable
toJson, toJson, toJsonBytes, toJsonString
-
Constructor Details
-
SshPublicKeyGenerateKeyPairResultInner
public SshPublicKeyGenerateKeyPairResultInner()Creates an instance of SshPublicKeyGenerateKeyPairResultInner class.
-
-
Method Details
-
privateKey
Get the privateKey property: 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.- Returns:
- the privateKey value.
-
withPrivateKey
Set the privateKey property: 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.- Parameters:
privateKey- the privateKey value to set.- Returns:
- the SshPublicKeyGenerateKeyPairResultInner object itself.
-
publicKey
Get the publicKey property: Public key portion of the key pair used to authenticate to a virtual machine through ssh. The public key is in ssh-rsa format.- Returns:
- the publicKey value.
-
withPublicKey
Set the publicKey property: Public key portion of the key pair used to authenticate to a virtual machine through ssh. The public key is in ssh-rsa format.- Parameters:
publicKey- the publicKey value to set.- Returns:
- the SshPublicKeyGenerateKeyPairResultInner object itself.
-
id
Get the id property: The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/sshPublicKeys/{SshPublicKeyName}.- Returns:
- the id value.
-
withId
Set the id property: The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/sshPublicKeys/{SshPublicKeyName}.- Parameters:
id- the id value to set.- Returns:
- the SshPublicKeyGenerateKeyPairResultInner object itself.
-
validate
public void validate()Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
toJson
- Specified by:
toJsonin interfacecom.azure.json.JsonSerializable<SshPublicKeyGenerateKeyPairResultInner>- Throws:
IOException
-
fromJson
public static SshPublicKeyGenerateKeyPairResultInner fromJson(com.azure.json.JsonReader jsonReader) throws IOException Reads an instance of SshPublicKeyGenerateKeyPairResultInner from the JsonReader.- Parameters:
jsonReader- The JsonReader being read.- Returns:
- An instance of SshPublicKeyGenerateKeyPairResultInner if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
- Throws:
IllegalStateException- If the deserialized JSON object was missing any required properties.IOException- If an error occurs while reading the SshPublicKeyGenerateKeyPairResultInner.
-