All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.docdb.model.PendingModifiedValues Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon DocumentDB with MongoDB compatibility module holds the client classes that are used for communicating with Amazon DocumentDB with MongoDB compatibility Service

There is a newer version: 1.12.778
Show newest version
/*
 * 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.docdb.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 

* One or more modified settings for an instance. These modified settings have been requested, but haven't been applied * yet. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class PendingModifiedValues implements Serializable, Cloneable { /** *

* Contains the new DBInstanceClass for the instance that will be applied or is currently being * applied. *

*/ private String dBInstanceClass; /** *

* Contains the new AllocatedStorage size for then instance that will be applied or is currently being * applied. *

*/ private Integer allocatedStorage; /** *

* Contains the pending or currently in-progress change of the master credentials for the instance. *

*/ private String masterUserPassword; /** *

* Specifies the pending port for the instance. *

*/ private Integer port; /** *

* Specifies the pending number of days for which automated backups are retained. *

*/ private Integer backupRetentionPeriod; /** *

* Indicates that the Single-AZ instance is to change to a Multi-AZ deployment. *

*/ private Boolean multiAZ; /** *

* Indicates the database engine version. *

*/ private String engineVersion; /** *

* The license model for the instance. *

*

* Valid values: license-included, bring-your-own-license, * general-public-license *

*/ private String licenseModel; /** *

* Specifies the new Provisioned IOPS value for the instance that will be applied or is currently being applied. *

*/ private Integer iops; /** *

* Contains the new DBInstanceIdentifier for the instance that will be applied or is currently being * applied. *

*/ private String dBInstanceIdentifier; /** *

* Specifies the storage type to be associated with the instance. *

*/ private String storageType; /** *

* Specifies the identifier of the certificate authority (CA) certificate for the DB instance. *

*/ private String cACertificateIdentifier; /** *

* The new subnet group for the instance. *

*/ private String dBSubnetGroupName; /** *

* A list of the log types whose configuration is still pending. These log types are in the process of being * activated or deactivated. *

*/ private PendingCloudwatchLogsExports pendingCloudwatchLogsExports; /** *

* Contains the new DBInstanceClass for the instance that will be applied or is currently being * applied. *

* * @param dBInstanceClass * Contains the new DBInstanceClass for the instance that will be applied or is currently being * applied. */ public void setDBInstanceClass(String dBInstanceClass) { this.dBInstanceClass = dBInstanceClass; } /** *

* Contains the new DBInstanceClass for the instance that will be applied or is currently being * applied. *

* * @return Contains the new DBInstanceClass for the instance that will be applied or is currently being * applied. */ public String getDBInstanceClass() { return this.dBInstanceClass; } /** *

* Contains the new DBInstanceClass for the instance that will be applied or is currently being * applied. *

* * @param dBInstanceClass * Contains the new DBInstanceClass for the instance that will be applied or is currently being * applied. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withDBInstanceClass(String dBInstanceClass) { setDBInstanceClass(dBInstanceClass); return this; } /** *

* Contains the new AllocatedStorage size for then instance that will be applied or is currently being * applied. *

* * @param allocatedStorage * Contains the new AllocatedStorage size for then instance that will be applied or is currently * being applied. */ public void setAllocatedStorage(Integer allocatedStorage) { this.allocatedStorage = allocatedStorage; } /** *

* Contains the new AllocatedStorage size for then instance that will be applied or is currently being * applied. *

* * @return Contains the new AllocatedStorage size for then instance that will be applied or is * currently being applied. */ public Integer getAllocatedStorage() { return this.allocatedStorage; } /** *

* Contains the new AllocatedStorage size for then instance that will be applied or is currently being * applied. *

* * @param allocatedStorage * Contains the new AllocatedStorage size for then instance that will be applied or is currently * being applied. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withAllocatedStorage(Integer allocatedStorage) { setAllocatedStorage(allocatedStorage); return this; } /** *

* Contains the pending or currently in-progress change of the master credentials for the instance. *

* * @param masterUserPassword * Contains the pending or currently in-progress change of the master credentials for the instance. */ public void setMasterUserPassword(String masterUserPassword) { this.masterUserPassword = masterUserPassword; } /** *

* Contains the pending or currently in-progress change of the master credentials for the instance. *

* * @return Contains the pending or currently in-progress change of the master credentials for the instance. */ public String getMasterUserPassword() { return this.masterUserPassword; } /** *

* Contains the pending or currently in-progress change of the master credentials for the instance. *

* * @param masterUserPassword * Contains the pending or currently in-progress change of the master credentials for the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withMasterUserPassword(String masterUserPassword) { setMasterUserPassword(masterUserPassword); return this; } /** *

* Specifies the pending port for the instance. *

* * @param port * Specifies the pending port for the instance. */ public void setPort(Integer port) { this.port = port; } /** *

* Specifies the pending port for the instance. *

* * @return Specifies the pending port for the instance. */ public Integer getPort() { return this.port; } /** *

* Specifies the pending port for the instance. *

* * @param port * Specifies the pending port for the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withPort(Integer port) { setPort(port); return this; } /** *

* Specifies the pending number of days for which automated backups are retained. *

* * @param backupRetentionPeriod * Specifies the pending number of days for which automated backups are retained. */ public void setBackupRetentionPeriod(Integer backupRetentionPeriod) { this.backupRetentionPeriod = backupRetentionPeriod; } /** *

* Specifies the pending number of days for which automated backups are retained. *

* * @return Specifies the pending number of days for which automated backups are retained. */ public Integer getBackupRetentionPeriod() { return this.backupRetentionPeriod; } /** *

* Specifies the pending number of days for which automated backups are retained. *

* * @param backupRetentionPeriod * Specifies the pending number of days for which automated backups are retained. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withBackupRetentionPeriod(Integer backupRetentionPeriod) { setBackupRetentionPeriod(backupRetentionPeriod); return this; } /** *

* Indicates that the Single-AZ instance is to change to a Multi-AZ deployment. *

* * @param multiAZ * Indicates that the Single-AZ instance is to change to a Multi-AZ deployment. */ public void setMultiAZ(Boolean multiAZ) { this.multiAZ = multiAZ; } /** *

* Indicates that the Single-AZ instance is to change to a Multi-AZ deployment. *

* * @return Indicates that the Single-AZ instance is to change to a Multi-AZ deployment. */ public Boolean getMultiAZ() { return this.multiAZ; } /** *

* Indicates that the Single-AZ instance is to change to a Multi-AZ deployment. *

* * @param multiAZ * Indicates that the Single-AZ instance is to change to a Multi-AZ deployment. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withMultiAZ(Boolean multiAZ) { setMultiAZ(multiAZ); return this; } /** *

* Indicates that the Single-AZ instance is to change to a Multi-AZ deployment. *

* * @return Indicates that the Single-AZ instance is to change to a Multi-AZ deployment. */ public Boolean isMultiAZ() { return this.multiAZ; } /** *

* Indicates the database engine version. *

* * @param engineVersion * Indicates the database engine version. */ public void setEngineVersion(String engineVersion) { this.engineVersion = engineVersion; } /** *

* Indicates the database engine version. *

* * @return Indicates the database engine version. */ public String getEngineVersion() { return this.engineVersion; } /** *

* Indicates the database engine version. *

* * @param engineVersion * Indicates the database engine version. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withEngineVersion(String engineVersion) { setEngineVersion(engineVersion); return this; } /** *

* The license model for the instance. *

*

* Valid values: license-included, bring-your-own-license, * general-public-license *

* * @param licenseModel * The license model for the instance.

*

* Valid values: license-included, bring-your-own-license, * general-public-license */ public void setLicenseModel(String licenseModel) { this.licenseModel = licenseModel; } /** *

* The license model for the instance. *

*

* Valid values: license-included, bring-your-own-license, * general-public-license *

* * @return The license model for the instance.

*

* Valid values: license-included, bring-your-own-license, * general-public-license */ public String getLicenseModel() { return this.licenseModel; } /** *

* The license model for the instance. *

*

* Valid values: license-included, bring-your-own-license, * general-public-license *

* * @param licenseModel * The license model for the instance.

*

* Valid values: license-included, bring-your-own-license, * general-public-license * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withLicenseModel(String licenseModel) { setLicenseModel(licenseModel); return this; } /** *

* Specifies the new Provisioned IOPS value for the instance that will be applied or is currently being applied. *

* * @param iops * Specifies the new Provisioned IOPS value for the instance that will be applied or is currently being * applied. */ public void setIops(Integer iops) { this.iops = iops; } /** *

* Specifies the new Provisioned IOPS value for the instance that will be applied or is currently being applied. *

* * @return Specifies the new Provisioned IOPS value for the instance that will be applied or is currently being * applied. */ public Integer getIops() { return this.iops; } /** *

* Specifies the new Provisioned IOPS value for the instance that will be applied or is currently being applied. *

* * @param iops * Specifies the new Provisioned IOPS value for the instance that will be applied or is currently being * applied. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withIops(Integer iops) { setIops(iops); return this; } /** *

* Contains the new DBInstanceIdentifier for the instance that will be applied or is currently being * applied. *

* * @param dBInstanceIdentifier * Contains the new DBInstanceIdentifier for the instance that will be applied or is currently * being applied. */ public void setDBInstanceIdentifier(String dBInstanceIdentifier) { this.dBInstanceIdentifier = dBInstanceIdentifier; } /** *

* Contains the new DBInstanceIdentifier for the instance that will be applied or is currently being * applied. *

* * @return Contains the new DBInstanceIdentifier for the instance that will be applied or is currently * being applied. */ public String getDBInstanceIdentifier() { return this.dBInstanceIdentifier; } /** *

* Contains the new DBInstanceIdentifier for the instance that will be applied or is currently being * applied. *

* * @param dBInstanceIdentifier * Contains the new DBInstanceIdentifier for the instance that will be applied or is currently * being applied. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withDBInstanceIdentifier(String dBInstanceIdentifier) { setDBInstanceIdentifier(dBInstanceIdentifier); return this; } /** *

* Specifies the storage type to be associated with the instance. *

* * @param storageType * Specifies the storage type to be associated with the instance. */ public void setStorageType(String storageType) { this.storageType = storageType; } /** *

* Specifies the storage type to be associated with the instance. *

* * @return Specifies the storage type to be associated with the instance. */ public String getStorageType() { return this.storageType; } /** *

* Specifies the storage type to be associated with the instance. *

* * @param storageType * Specifies the storage type to be associated with the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withStorageType(String storageType) { setStorageType(storageType); return this; } /** *

* Specifies the identifier of the certificate authority (CA) certificate for the DB instance. *

* * @param cACertificateIdentifier * Specifies the identifier of the certificate authority (CA) certificate for the DB instance. */ public void setCACertificateIdentifier(String cACertificateIdentifier) { this.cACertificateIdentifier = cACertificateIdentifier; } /** *

* Specifies the identifier of the certificate authority (CA) certificate for the DB instance. *

* * @return Specifies the identifier of the certificate authority (CA) certificate for the DB instance. */ public String getCACertificateIdentifier() { return this.cACertificateIdentifier; } /** *

* Specifies the identifier of the certificate authority (CA) certificate for the DB instance. *

* * @param cACertificateIdentifier * Specifies the identifier of the certificate authority (CA) certificate for the DB instance. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withCACertificateIdentifier(String cACertificateIdentifier) { setCACertificateIdentifier(cACertificateIdentifier); return this; } /** *

* The new subnet group for the instance. *

* * @param dBSubnetGroupName * The new subnet group for the instance. */ public void setDBSubnetGroupName(String dBSubnetGroupName) { this.dBSubnetGroupName = dBSubnetGroupName; } /** *

* The new subnet group for the instance. *

* * @return The new subnet group for the instance. */ public String getDBSubnetGroupName() { return this.dBSubnetGroupName; } /** *

* The new subnet group for the instance. *

* * @param dBSubnetGroupName * The new subnet group for the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withDBSubnetGroupName(String dBSubnetGroupName) { setDBSubnetGroupName(dBSubnetGroupName); return this; } /** *

* A list of the log types whose configuration is still pending. These log types are in the process of being * activated or deactivated. *

* * @param pendingCloudwatchLogsExports * A list of the log types whose configuration is still pending. These log types are in the process of being * activated or deactivated. */ public void setPendingCloudwatchLogsExports(PendingCloudwatchLogsExports pendingCloudwatchLogsExports) { this.pendingCloudwatchLogsExports = pendingCloudwatchLogsExports; } /** *

* A list of the log types whose configuration is still pending. These log types are in the process of being * activated or deactivated. *

* * @return A list of the log types whose configuration is still pending. These log types are in the process of being * activated or deactivated. */ public PendingCloudwatchLogsExports getPendingCloudwatchLogsExports() { return this.pendingCloudwatchLogsExports; } /** *

* A list of the log types whose configuration is still pending. These log types are in the process of being * activated or deactivated. *

* * @param pendingCloudwatchLogsExports * A list of the log types whose configuration is still pending. These log types are in the process of being * activated or deactivated. * @return Returns a reference to this object so that method calls can be chained together. */ public PendingModifiedValues withPendingCloudwatchLogsExports(PendingCloudwatchLogsExports pendingCloudwatchLogsExports) { setPendingCloudwatchLogsExports(pendingCloudwatchLogsExports); 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 (getDBInstanceClass() != null) sb.append("DBInstanceClass: ").append(getDBInstanceClass()).append(","); if (getAllocatedStorage() != null) sb.append("AllocatedStorage: ").append(getAllocatedStorage()).append(","); if (getMasterUserPassword() != null) sb.append("MasterUserPassword: ").append(getMasterUserPassword()).append(","); if (getPort() != null) sb.append("Port: ").append(getPort()).append(","); if (getBackupRetentionPeriod() != null) sb.append("BackupRetentionPeriod: ").append(getBackupRetentionPeriod()).append(","); if (getMultiAZ() != null) sb.append("MultiAZ: ").append(getMultiAZ()).append(","); if (getEngineVersion() != null) sb.append("EngineVersion: ").append(getEngineVersion()).append(","); if (getLicenseModel() != null) sb.append("LicenseModel: ").append(getLicenseModel()).append(","); if (getIops() != null) sb.append("Iops: ").append(getIops()).append(","); if (getDBInstanceIdentifier() != null) sb.append("DBInstanceIdentifier: ").append(getDBInstanceIdentifier()).append(","); if (getStorageType() != null) sb.append("StorageType: ").append(getStorageType()).append(","); if (getCACertificateIdentifier() != null) sb.append("CACertificateIdentifier: ").append(getCACertificateIdentifier()).append(","); if (getDBSubnetGroupName() != null) sb.append("DBSubnetGroupName: ").append(getDBSubnetGroupName()).append(","); if (getPendingCloudwatchLogsExports() != null) sb.append("PendingCloudwatchLogsExports: ").append(getPendingCloudwatchLogsExports()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PendingModifiedValues == false) return false; PendingModifiedValues other = (PendingModifiedValues) obj; if (other.getDBInstanceClass() == null ^ this.getDBInstanceClass() == null) return false; if (other.getDBInstanceClass() != null && other.getDBInstanceClass().equals(this.getDBInstanceClass()) == false) return false; if (other.getAllocatedStorage() == null ^ this.getAllocatedStorage() == null) return false; if (other.getAllocatedStorage() != null && other.getAllocatedStorage().equals(this.getAllocatedStorage()) == false) return false; if (other.getMasterUserPassword() == null ^ this.getMasterUserPassword() == null) return false; if (other.getMasterUserPassword() != null && other.getMasterUserPassword().equals(this.getMasterUserPassword()) == false) return false; if (other.getPort() == null ^ this.getPort() == null) return false; if (other.getPort() != null && other.getPort().equals(this.getPort()) == false) return false; if (other.getBackupRetentionPeriod() == null ^ this.getBackupRetentionPeriod() == null) return false; if (other.getBackupRetentionPeriod() != null && other.getBackupRetentionPeriod().equals(this.getBackupRetentionPeriod()) == false) return false; if (other.getMultiAZ() == null ^ this.getMultiAZ() == null) return false; if (other.getMultiAZ() != null && other.getMultiAZ().equals(this.getMultiAZ()) == false) return false; if (other.getEngineVersion() == null ^ this.getEngineVersion() == null) return false; if (other.getEngineVersion() != null && other.getEngineVersion().equals(this.getEngineVersion()) == false) return false; if (other.getLicenseModel() == null ^ this.getLicenseModel() == null) return false; if (other.getLicenseModel() != null && other.getLicenseModel().equals(this.getLicenseModel()) == false) return false; if (other.getIops() == null ^ this.getIops() == null) return false; if (other.getIops() != null && other.getIops().equals(this.getIops()) == false) return false; if (other.getDBInstanceIdentifier() == null ^ this.getDBInstanceIdentifier() == null) return false; if (other.getDBInstanceIdentifier() != null && other.getDBInstanceIdentifier().equals(this.getDBInstanceIdentifier()) == false) return false; if (other.getStorageType() == null ^ this.getStorageType() == null) return false; if (other.getStorageType() != null && other.getStorageType().equals(this.getStorageType()) == false) return false; if (other.getCACertificateIdentifier() == null ^ this.getCACertificateIdentifier() == null) return false; if (other.getCACertificateIdentifier() != null && other.getCACertificateIdentifier().equals(this.getCACertificateIdentifier()) == false) return false; if (other.getDBSubnetGroupName() == null ^ this.getDBSubnetGroupName() == null) return false; if (other.getDBSubnetGroupName() != null && other.getDBSubnetGroupName().equals(this.getDBSubnetGroupName()) == false) return false; if (other.getPendingCloudwatchLogsExports() == null ^ this.getPendingCloudwatchLogsExports() == null) return false; if (other.getPendingCloudwatchLogsExports() != null && other.getPendingCloudwatchLogsExports().equals(this.getPendingCloudwatchLogsExports()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDBInstanceClass() == null) ? 0 : getDBInstanceClass().hashCode()); hashCode = prime * hashCode + ((getAllocatedStorage() == null) ? 0 : getAllocatedStorage().hashCode()); hashCode = prime * hashCode + ((getMasterUserPassword() == null) ? 0 : getMasterUserPassword().hashCode()); hashCode = prime * hashCode + ((getPort() == null) ? 0 : getPort().hashCode()); hashCode = prime * hashCode + ((getBackupRetentionPeriod() == null) ? 0 : getBackupRetentionPeriod().hashCode()); hashCode = prime * hashCode + ((getMultiAZ() == null) ? 0 : getMultiAZ().hashCode()); hashCode = prime * hashCode + ((getEngineVersion() == null) ? 0 : getEngineVersion().hashCode()); hashCode = prime * hashCode + ((getLicenseModel() == null) ? 0 : getLicenseModel().hashCode()); hashCode = prime * hashCode + ((getIops() == null) ? 0 : getIops().hashCode()); hashCode = prime * hashCode + ((getDBInstanceIdentifier() == null) ? 0 : getDBInstanceIdentifier().hashCode()); hashCode = prime * hashCode + ((getStorageType() == null) ? 0 : getStorageType().hashCode()); hashCode = prime * hashCode + ((getCACertificateIdentifier() == null) ? 0 : getCACertificateIdentifier().hashCode()); hashCode = prime * hashCode + ((getDBSubnetGroupName() == null) ? 0 : getDBSubnetGroupName().hashCode()); hashCode = prime * hashCode + ((getPendingCloudwatchLogsExports() == null) ? 0 : getPendingCloudwatchLogsExports().hashCode()); return hashCode; } @Override public PendingModifiedValues clone() { try { return (PendingModifiedValues) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy