/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.lightsail.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ImportKeyPairRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The name of the key pair for which you want to import the public key. *
*/ private String keyPairName; /** *
* A base64-encoded public key of the ssh-rsa
type.
*
* The name of the key pair for which you want to import the public key. *
* * @param keyPairName * The name of the key pair for which you want to import the public key. */ public void setKeyPairName(String keyPairName) { this.keyPairName = keyPairName; } /** ** The name of the key pair for which you want to import the public key. *
* * @return The name of the key pair for which you want to import the public key. */ public String getKeyPairName() { return this.keyPairName; } /** ** The name of the key pair for which you want to import the public key. *
* * @param keyPairName * The name of the key pair for which you want to import the public key. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportKeyPairRequest withKeyPairName(String keyPairName) { setKeyPairName(keyPairName); return this; } /** *
* A base64-encoded public key of the ssh-rsa
type.
*
ssh-rsa
type.
*/
public void setPublicKeyBase64(String publicKeyBase64) {
this.publicKeyBase64 = publicKeyBase64;
}
/**
*
* A base64-encoded public key of the ssh-rsa
type.
*
ssh-rsa
type.
*/
public String getPublicKeyBase64() {
return this.publicKeyBase64;
}
/**
*
* A base64-encoded public key of the ssh-rsa
type.
*
ssh-rsa
type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportKeyPairRequest withPublicKeyBase64(String publicKeyBase64) {
setPublicKeyBase64(publicKeyBase64);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getKeyPairName() != null)
sb.append("KeyPairName: ").append(getKeyPairName()).append(",");
if (getPublicKeyBase64() != null)
sb.append("PublicKeyBase64: ").append(getPublicKeyBase64());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ImportKeyPairRequest == false)
return false;
ImportKeyPairRequest other = (ImportKeyPairRequest) obj;
if (other.getKeyPairName() == null ^ this.getKeyPairName() == null)
return false;
if (other.getKeyPairName() != null && other.getKeyPairName().equals(this.getKeyPairName()) == false)
return false;
if (other.getPublicKeyBase64() == null ^ this.getPublicKeyBase64() == null)
return false;
if (other.getPublicKeyBase64() != null && other.getPublicKeyBase64().equals(this.getPublicKeyBase64()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getKeyPairName() == null) ? 0 : getKeyPairName().hashCode());
hashCode = prime * hashCode + ((getPublicKeyBase64() == null) ? 0 : getPublicKeyBase64().hashCode());
return hashCode;
}
@Override
public ImportKeyPairRequest clone() {
return (ImportKeyPairRequest) super.clone();
}
}