com.amazonaws.services.databasemigrationservice.model.ImportCertificateRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-dms Show documentation
/*
* Copyright 2019-2024 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.databasemigrationservice.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 ImportCertificateRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII
* letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
*
*/
private String certificateIdentifier;
/**
*
* The contents of a .pem
file, which contains an X.509 certificate.
*
*/
private String certificatePem;
/**
*
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso
* file using the fileb://
prefix. You can't provide the certificate inline.
*
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*
*/
private java.nio.ByteBuffer certificateWallet;
/**
*
* The tags associated with the certificate.
*
*/
private java.util.List tags;
/**
*
* A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII
* letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
*
*
* @param certificateIdentifier
* A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only
* ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
*/
public void setCertificateIdentifier(String certificateIdentifier) {
this.certificateIdentifier = certificateIdentifier;
}
/**
*
* A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII
* letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
*
*
* @return A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only
* ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
*/
public String getCertificateIdentifier() {
return this.certificateIdentifier;
}
/**
*
* A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII
* letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
*
*
* @param certificateIdentifier
* A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only
* ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportCertificateRequest withCertificateIdentifier(String certificateIdentifier) {
setCertificateIdentifier(certificateIdentifier);
return this;
}
/**
*
* The contents of a .pem
file, which contains an X.509 certificate.
*
*
* @param certificatePem
* The contents of a .pem
file, which contains an X.509 certificate.
*/
public void setCertificatePem(String certificatePem) {
this.certificatePem = certificatePem;
}
/**
*
* The contents of a .pem
file, which contains an X.509 certificate.
*
*
* @return The contents of a .pem
file, which contains an X.509 certificate.
*/
public String getCertificatePem() {
return this.certificatePem;
}
/**
*
* The contents of a .pem
file, which contains an X.509 certificate.
*
*
* @param certificatePem
* The contents of a .pem
file, which contains an X.509 certificate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportCertificateRequest withCertificatePem(String certificatePem) {
setCertificatePem(certificatePem);
return this;
}
/**
*
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso
* file using the fileb://
prefix. You can't provide the certificate inline.
*
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*
*
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service.
* Users of the SDK should not perform Base64 encoding on this field.
*
*
* Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will
* be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or
* ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future
* major version of the SDK.
*
*
* @param certificateWallet
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a
* .sso
file using the fileb://
prefix. You can't provide the certificate
* inline.
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*/
public void setCertificateWallet(java.nio.ByteBuffer certificateWallet) {
this.certificateWallet = certificateWallet;
}
/**
*
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso
* file using the fileb://
prefix. You can't provide the certificate inline.
*
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*
*
* {@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend
* using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent
* {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}.
* Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the
* {@code position}.
*
*
* @return The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a
* .sso
file using the fileb://
prefix. You can't provide the certificate
* inline.
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*/
public java.nio.ByteBuffer getCertificateWallet() {
return this.certificateWallet;
}
/**
*
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso
* file using the fileb://
prefix. You can't provide the certificate inline.
*
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*
*
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service.
* Users of the SDK should not perform Base64 encoding on this field.
*
*
* Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will
* be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or
* ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future
* major version of the SDK.
*
*
* @param certificateWallet
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a
* .sso
file using the fileb://
prefix. You can't provide the certificate
* inline.
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportCertificateRequest withCertificateWallet(java.nio.ByteBuffer certificateWallet) {
setCertificateWallet(certificateWallet);
return this;
}
/**
*
* The tags associated with the certificate.
*
*
* @return The tags associated with the certificate.
*/
public java.util.List getTags() {
return tags;
}
/**
*
* The tags associated with the certificate.
*
*
* @param tags
* The tags associated with the certificate.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new java.util.ArrayList(tags);
}
/**
*
* The tags associated with the certificate.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* The tags associated with the certificate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportCertificateRequest withTags(Tag... tags) {
if (this.tags == null) {
setTags(new java.util.ArrayList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* The tags associated with the certificate.
*
*
* @param tags
* The tags associated with the certificate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportCertificateRequest withTags(java.util.Collection tags) {
setTags(tags);
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 (getCertificateIdentifier() != null)
sb.append("CertificateIdentifier: ").append(getCertificateIdentifier()).append(",");
if (getCertificatePem() != null)
sb.append("CertificatePem: ").append("***Sensitive Data Redacted***").append(",");
if (getCertificateWallet() != null)
sb.append("CertificateWallet: ").append(getCertificateWallet()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ImportCertificateRequest == false)
return false;
ImportCertificateRequest other = (ImportCertificateRequest) obj;
if (other.getCertificateIdentifier() == null ^ this.getCertificateIdentifier() == null)
return false;
if (other.getCertificateIdentifier() != null && other.getCertificateIdentifier().equals(this.getCertificateIdentifier()) == false)
return false;
if (other.getCertificatePem() == null ^ this.getCertificatePem() == null)
return false;
if (other.getCertificatePem() != null && other.getCertificatePem().equals(this.getCertificatePem()) == false)
return false;
if (other.getCertificateWallet() == null ^ this.getCertificateWallet() == null)
return false;
if (other.getCertificateWallet() != null && other.getCertificateWallet().equals(this.getCertificateWallet()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCertificateIdentifier() == null) ? 0 : getCertificateIdentifier().hashCode());
hashCode = prime * hashCode + ((getCertificatePem() == null) ? 0 : getCertificatePem().hashCode());
hashCode = prime * hashCode + ((getCertificateWallet() == null) ? 0 : getCertificateWallet().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public ImportCertificateRequest clone() {
return (ImportCertificateRequest) super.clone();
}
}