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

com.oracle.bmc.database.model.CreateDbHomeWithVmClusterIdDetails Maven / Gradle / Ivy

Go to download

This project contains the SDK distribution used for Oracle Cloud Infrastructure, and all the dependencies that can be shaded. It also has Maven dependencies that cannot be shaded. Therefore, use this module to depend on the shaded distribution via Maven -- it will shade everything that can be shaded, and automatically pull in the other dependencies.

There is a newer version: 3.55.2
Show newest version
/**
 * Copyright (c) 2016, 2024, Oracle and/or its affiliates.  All rights reserved.
 * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
 */
package com.oracle.bmc.database.model;

/**
 * Note that a valid {@code vmClusterId} value must be supplied for the {@code
 * CreateDbHomeWithVmClusterId} API operation to successfully complete. 
* Note: Objects should always be created or deserialized using the {@link Builder}. This model * distinguishes fields that are {@code null} because they are unset from fields that are explicitly * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set * fields into account. The constructor, on the other hand, does not take the explicitly set fields * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code * null}). */ @jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918") @com.fasterxml.jackson.databind.annotation.JsonDeserialize( builder = CreateDbHomeWithVmClusterIdDetails.Builder.class) @com.fasterxml.jackson.annotation.JsonTypeInfo( use = com.fasterxml.jackson.annotation.JsonTypeInfo.Id.NAME, include = com.fasterxml.jackson.annotation.JsonTypeInfo.As.PROPERTY, property = "source") @com.fasterxml.jackson.annotation.JsonFilter( com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) public final class CreateDbHomeWithVmClusterIdDetails extends CreateDbHomeBase { @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { @com.fasterxml.jackson.annotation.JsonProperty("displayName") private String displayName; public Builder displayName(String displayName) { this.displayName = displayName; this.__explicitlySet__.add("displayName"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("kmsKeyId") private String kmsKeyId; public Builder kmsKeyId(String kmsKeyId) { this.kmsKeyId = kmsKeyId; this.__explicitlySet__.add("kmsKeyId"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("kmsKeyVersionId") private String kmsKeyVersionId; public Builder kmsKeyVersionId(String kmsKeyVersionId) { this.kmsKeyVersionId = kmsKeyVersionId; this.__explicitlySet__.add("kmsKeyVersionId"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("databaseSoftwareImageId") private String databaseSoftwareImageId; public Builder databaseSoftwareImageId(String databaseSoftwareImageId) { this.databaseSoftwareImageId = databaseSoftwareImageId; this.__explicitlySet__.add("databaseSoftwareImageId"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") private java.util.Map freeformTags; public Builder freeformTags(java.util.Map freeformTags) { this.freeformTags = freeformTags; this.__explicitlySet__.add("freeformTags"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("definedTags") private java.util.Map> definedTags; public Builder definedTags( java.util.Map> definedTags) { this.definedTags = definedTags; this.__explicitlySet__.add("definedTags"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("isDesupportedVersion") private Boolean isDesupportedVersion; public Builder isDesupportedVersion(Boolean isDesupportedVersion) { this.isDesupportedVersion = isDesupportedVersion; this.__explicitlySet__.add("isDesupportedVersion"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("isUnifiedAuditingEnabled") private Boolean isUnifiedAuditingEnabled; public Builder isUnifiedAuditingEnabled(Boolean isUnifiedAuditingEnabled) { this.isUnifiedAuditingEnabled = isUnifiedAuditingEnabled; this.__explicitlySet__.add("isUnifiedAuditingEnabled"); return this; } /** * The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the * VM cluster. */ @com.fasterxml.jackson.annotation.JsonProperty("vmClusterId") private String vmClusterId; /** * The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the * VM cluster. * * @param vmClusterId the value to set * @return this builder */ public Builder vmClusterId(String vmClusterId) { this.vmClusterId = vmClusterId; this.__explicitlySet__.add("vmClusterId"); return this; } /** * A valid Oracle Database version. For a list of supported versions, use the ListDbVersions * operation. * *

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, * cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, * isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, * nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, * isLocalDataGuardEnabled, or isFreeTier. */ @com.fasterxml.jackson.annotation.JsonProperty("dbVersion") private String dbVersion; /** * A valid Oracle Database version. For a list of supported versions, use the ListDbVersions * operation. * *

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, * cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, * isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, * nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, * isLocalDataGuardEnabled, or isFreeTier. * * @param dbVersion the value to set * @return this builder */ public Builder dbVersion(String dbVersion) { this.dbVersion = dbVersion; this.__explicitlySet__.add("dbVersion"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("database") private CreateDatabaseDetails database; public Builder database(CreateDatabaseDetails database) { this.database = database; this.__explicitlySet__.add("database"); return this; } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); public CreateDbHomeWithVmClusterIdDetails build() { CreateDbHomeWithVmClusterIdDetails model = new CreateDbHomeWithVmClusterIdDetails( this.displayName, this.kmsKeyId, this.kmsKeyVersionId, this.databaseSoftwareImageId, this.freeformTags, this.definedTags, this.isDesupportedVersion, this.isUnifiedAuditingEnabled, this.vmClusterId, this.dbVersion, this.database); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } return model; } @com.fasterxml.jackson.annotation.JsonIgnore public Builder copy(CreateDbHomeWithVmClusterIdDetails model) { if (model.wasPropertyExplicitlySet("displayName")) { this.displayName(model.getDisplayName()); } if (model.wasPropertyExplicitlySet("kmsKeyId")) { this.kmsKeyId(model.getKmsKeyId()); } if (model.wasPropertyExplicitlySet("kmsKeyVersionId")) { this.kmsKeyVersionId(model.getKmsKeyVersionId()); } if (model.wasPropertyExplicitlySet("databaseSoftwareImageId")) { this.databaseSoftwareImageId(model.getDatabaseSoftwareImageId()); } if (model.wasPropertyExplicitlySet("freeformTags")) { this.freeformTags(model.getFreeformTags()); } if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } if (model.wasPropertyExplicitlySet("isDesupportedVersion")) { this.isDesupportedVersion(model.getIsDesupportedVersion()); } if (model.wasPropertyExplicitlySet("isUnifiedAuditingEnabled")) { this.isUnifiedAuditingEnabled(model.getIsUnifiedAuditingEnabled()); } if (model.wasPropertyExplicitlySet("vmClusterId")) { this.vmClusterId(model.getVmClusterId()); } if (model.wasPropertyExplicitlySet("dbVersion")) { this.dbVersion(model.getDbVersion()); } if (model.wasPropertyExplicitlySet("database")) { this.database(model.getDatabase()); } return this; } } /** Create a new builder. */ public static Builder builder() { return new Builder(); } public Builder toBuilder() { return new Builder().copy(this); } @Deprecated public CreateDbHomeWithVmClusterIdDetails( String displayName, String kmsKeyId, String kmsKeyVersionId, String databaseSoftwareImageId, java.util.Map freeformTags, java.util.Map> definedTags, Boolean isDesupportedVersion, Boolean isUnifiedAuditingEnabled, String vmClusterId, String dbVersion, CreateDatabaseDetails database) { super( displayName, kmsKeyId, kmsKeyVersionId, databaseSoftwareImageId, freeformTags, definedTags, isDesupportedVersion, isUnifiedAuditingEnabled); this.vmClusterId = vmClusterId; this.dbVersion = dbVersion; this.database = database; } /** * The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the VM * cluster. */ @com.fasterxml.jackson.annotation.JsonProperty("vmClusterId") private final String vmClusterId; /** * The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the VM * cluster. * * @return the value */ public String getVmClusterId() { return vmClusterId; } /** * A valid Oracle Database version. For a list of supported versions, use the ListDbVersions * operation. * *

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, * cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, * isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, * nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, * or isFreeTier. */ @com.fasterxml.jackson.annotation.JsonProperty("dbVersion") private final String dbVersion; /** * A valid Oracle Database version. For a list of supported versions, use the ListDbVersions * operation. * *

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, * cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, * isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, * nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, * or isFreeTier. * * @return the value */ public String getDbVersion() { return dbVersion; } @com.fasterxml.jackson.annotation.JsonProperty("database") private final CreateDatabaseDetails database; public CreateDatabaseDetails getDatabase() { return database; } @Override public String toString() { return this.toString(true); } /** * Return a string representation of the object. * * @param includeByteArrayContents true to include the full contents of byte arrays * @return string representation */ public String toString(boolean includeByteArrayContents) { java.lang.StringBuilder sb = new java.lang.StringBuilder(); sb.append("CreateDbHomeWithVmClusterIdDetails("); sb.append("super=").append(super.toString(includeByteArrayContents)); sb.append(", vmClusterId=").append(String.valueOf(this.vmClusterId)); sb.append(", dbVersion=").append(String.valueOf(this.dbVersion)); sb.append(", database=").append(String.valueOf(this.database)); sb.append(")"); return sb.toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof CreateDbHomeWithVmClusterIdDetails)) { return false; } CreateDbHomeWithVmClusterIdDetails other = (CreateDbHomeWithVmClusterIdDetails) o; return java.util.Objects.equals(this.vmClusterId, other.vmClusterId) && java.util.Objects.equals(this.dbVersion, other.dbVersion) && java.util.Objects.equals(this.database, other.database) && super.equals(other); } @Override public int hashCode() { final int PRIME = 59; int result = super.hashCode(); result = (result * PRIME) + (this.vmClusterId == null ? 43 : this.vmClusterId.hashCode()); result = (result * PRIME) + (this.dbVersion == null ? 43 : this.dbVersion.hashCode()); result = (result * PRIME) + (this.database == null ? 43 : this.database.hashCode()); return result; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy