com.oracle.bmc.database.model.LaunchAutonomousExadataInfrastructureDetails Maven / Gradle / Ivy
Show all versions of oci-java-sdk-database Show documentation
/**
* 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;
/**
* Describes the input parameters to launch a new Autonomous Exadata Infrastructure.
* 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 = LaunchAutonomousExadataInfrastructureDetails.Builder.class)
@com.fasterxml.jackson.annotation.JsonFilter(
com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME)
public final class LaunchAutonomousExadataInfrastructureDetails
extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel {
@Deprecated
@java.beans.ConstructorProperties({
"compartmentId",
"displayName",
"availabilityDomain",
"subnetId",
"nsgIds",
"shape",
"domain",
"licenseModel",
"maintenanceWindowDetails",
"freeformTags",
"definedTags"
})
public LaunchAutonomousExadataInfrastructureDetails(
String compartmentId,
String displayName,
String availabilityDomain,
String subnetId,
java.util.List nsgIds,
String shape,
String domain,
LicenseModel licenseModel,
MaintenanceWindow maintenanceWindowDetails,
java.util.Map freeformTags,
java.util.Map> definedTags) {
super();
this.compartmentId = compartmentId;
this.displayName = displayName;
this.availabilityDomain = availabilityDomain;
this.subnetId = subnetId;
this.nsgIds = nsgIds;
this.shape = shape;
this.domain = domain;
this.licenseModel = licenseModel;
this.maintenanceWindowDetails = maintenanceWindowDetails;
this.freeformTags = freeformTags;
this.definedTags = definedTags;
}
@com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "")
public static class Builder {
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* compartment the Autonomous Exadata Infrastructure belongs in.
*/
@com.fasterxml.jackson.annotation.JsonProperty("compartmentId")
private String compartmentId;
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* compartment the Autonomous Exadata Infrastructure belongs in.
*
* @param compartmentId the value to set
* @return this builder
*/
public Builder compartmentId(String compartmentId) {
this.compartmentId = compartmentId;
this.__explicitlySet__.add("compartmentId");
return this;
}
/**
* The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be
* unique.
*/
@com.fasterxml.jackson.annotation.JsonProperty("displayName")
private String displayName;
/**
* The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be
* unique.
*
* @param displayName the value to set
* @return this builder
*/
public Builder displayName(String displayName) {
this.displayName = displayName;
this.__explicitlySet__.add("displayName");
return this;
}
/** The availability domain where the Autonomous Exadata Infrastructure is located. */
@com.fasterxml.jackson.annotation.JsonProperty("availabilityDomain")
private String availabilityDomain;
/**
* The availability domain where the Autonomous Exadata Infrastructure is located.
*
* @param availabilityDomain the value to set
* @return this builder
*/
public Builder availabilityDomain(String availabilityDomain) {
this.availabilityDomain = availabilityDomain;
this.__explicitlySet__.add("availabilityDomain");
return this;
}
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* subnet the Autonomous Exadata Infrastructure is associated with.
*
* *Subnet Restrictions:** - For Autonomous Exadata Infrastructures, do not use a subnet
* that overlaps with 192.168.128.0/20
*
*
These subnets are used by the Oracle Clusterware private interconnect on the database
* instance. Specifying an overlapping subnet will cause the private interconnect to
* malfunction. This restriction applies to both the client subnet and backup subnet.
*/
@com.fasterxml.jackson.annotation.JsonProperty("subnetId")
private String subnetId;
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* subnet the Autonomous Exadata Infrastructure is associated with.
*
*
*Subnet Restrictions:** - For Autonomous Exadata Infrastructures, do not use a subnet
* that overlaps with 192.168.128.0/20
*
*
These subnets are used by the Oracle Clusterware private interconnect on the database
* instance. Specifying an overlapping subnet will cause the private interconnect to
* malfunction. This restriction applies to both the client subnet and backup subnet.
*
* @param subnetId the value to set
* @return this builder
*/
public Builder subnetId(String subnetId) {
this.subnetId = subnetId;
this.__explicitlySet__.add("subnetId");
return this;
}
/**
* The list of
* [OCIDs](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) for the
* network security groups (NSGs) to which this resource belongs. Setting this to an empty
* list removes all resources from all NSGs. For more information about NSGs, see [Security
* Rules](https://docs.cloud.oracle.com/Content/Network/Concepts/securityrules.htm).
* **NsgIds restrictions:** - A network security group (NSG) is optional for Autonomous
* Databases with private access. The nsgIds list can be empty.
*/
@com.fasterxml.jackson.annotation.JsonProperty("nsgIds")
private java.util.List nsgIds;
/**
* The list of
* [OCIDs](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) for the
* network security groups (NSGs) to which this resource belongs. Setting this to an empty
* list removes all resources from all NSGs. For more information about NSGs, see [Security
* Rules](https://docs.cloud.oracle.com/Content/Network/Concepts/securityrules.htm).
* **NsgIds restrictions:** - A network security group (NSG) is optional for Autonomous
* Databases with private access. The nsgIds list can be empty.
*
* @param nsgIds the value to set
* @return this builder
*/
public Builder nsgIds(java.util.List nsgIds) {
this.nsgIds = nsgIds;
this.__explicitlySet__.add("nsgIds");
return this;
}
/**
* The shape of the Autonomous Exadata Infrastructure. The shape determines resources
* allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To
* get a list of shapes, use the ListDbSystemShapes operation.
*/
@com.fasterxml.jackson.annotation.JsonProperty("shape")
private String shape;
/**
* The shape of the Autonomous Exadata Infrastructure. The shape determines resources
* allocated to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To
* get a list of shapes, use the ListDbSystemShapes operation.
*
* @param shape the value to set
* @return this builder
*/
public Builder shape(String shape) {
this.shape = shape;
this.__explicitlySet__.add("shape");
return this;
}
/**
* A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided
* Internet and VCN Resolver is enabled for the specified subnet, the domain name for the
* subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens
* (-) are not permitted.
*/
@com.fasterxml.jackson.annotation.JsonProperty("domain")
private String domain;
/**
* A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided
* Internet and VCN Resolver is enabled for the specified subnet, the domain name for the
* subnet is used (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens
* (-) are not permitted.
*
* @param domain the value to set
* @return this builder
*/
public Builder domain(String domain) {
this.domain = domain;
this.__explicitlySet__.add("domain");
return this;
}
/**
* The Oracle license model that applies to all the databases in the Autonomous Exadata
* Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
*/
@com.fasterxml.jackson.annotation.JsonProperty("licenseModel")
private LicenseModel licenseModel;
/**
* The Oracle license model that applies to all the databases in the Autonomous Exadata
* Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
*
* @param licenseModel the value to set
* @return this builder
*/
public Builder licenseModel(LicenseModel licenseModel) {
this.licenseModel = licenseModel;
this.__explicitlySet__.add("licenseModel");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("maintenanceWindowDetails")
private MaintenanceWindow maintenanceWindowDetails;
public Builder maintenanceWindowDetails(MaintenanceWindow maintenanceWindowDetails) {
this.maintenanceWindowDetails = maintenanceWindowDetails;
this.__explicitlySet__.add("maintenanceWindowDetails");
return this;
}
/**
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined
* name, type, or namespace. For more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Department": "Finance"}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("freeformTags")
private java.util.Map freeformTags;
/**
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined
* name, type, or namespace. For more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Department": "Finance"}}
*
* @param freeformTags the value to set
* @return this builder
*/
public Builder freeformTags(java.util.Map freeformTags) {
this.freeformTags = freeformTags;
this.__explicitlySet__.add("freeformTags");
return this;
}
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For
* more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*/
@com.fasterxml.jackson.annotation.JsonProperty("definedTags")
private java.util.Map> definedTags;
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For
* more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* @param definedTags the value to set
* @return this builder
*/
public Builder definedTags(
java.util.Map> definedTags) {
this.definedTags = definedTags;
this.__explicitlySet__.add("definedTags");
return this;
}
@com.fasterxml.jackson.annotation.JsonIgnore
private final java.util.Set __explicitlySet__ = new java.util.HashSet();
public LaunchAutonomousExadataInfrastructureDetails build() {
LaunchAutonomousExadataInfrastructureDetails model =
new LaunchAutonomousExadataInfrastructureDetails(
this.compartmentId,
this.displayName,
this.availabilityDomain,
this.subnetId,
this.nsgIds,
this.shape,
this.domain,
this.licenseModel,
this.maintenanceWindowDetails,
this.freeformTags,
this.definedTags);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(LaunchAutonomousExadataInfrastructureDetails model) {
if (model.wasPropertyExplicitlySet("compartmentId")) {
this.compartmentId(model.getCompartmentId());
}
if (model.wasPropertyExplicitlySet("displayName")) {
this.displayName(model.getDisplayName());
}
if (model.wasPropertyExplicitlySet("availabilityDomain")) {
this.availabilityDomain(model.getAvailabilityDomain());
}
if (model.wasPropertyExplicitlySet("subnetId")) {
this.subnetId(model.getSubnetId());
}
if (model.wasPropertyExplicitlySet("nsgIds")) {
this.nsgIds(model.getNsgIds());
}
if (model.wasPropertyExplicitlySet("shape")) {
this.shape(model.getShape());
}
if (model.wasPropertyExplicitlySet("domain")) {
this.domain(model.getDomain());
}
if (model.wasPropertyExplicitlySet("licenseModel")) {
this.licenseModel(model.getLicenseModel());
}
if (model.wasPropertyExplicitlySet("maintenanceWindowDetails")) {
this.maintenanceWindowDetails(model.getMaintenanceWindowDetails());
}
if (model.wasPropertyExplicitlySet("freeformTags")) {
this.freeformTags(model.getFreeformTags());
}
if (model.wasPropertyExplicitlySet("definedTags")) {
this.definedTags(model.getDefinedTags());
}
return this;
}
}
/** Create a new builder. */
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return new Builder().copy(this);
}
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* compartment the Autonomous Exadata Infrastructure belongs in.
*/
@com.fasterxml.jackson.annotation.JsonProperty("compartmentId")
private final String compartmentId;
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* compartment the Autonomous Exadata Infrastructure belongs in.
*
* @return the value
*/
public String getCompartmentId() {
return compartmentId;
}
/**
* The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be
* unique.
*/
@com.fasterxml.jackson.annotation.JsonProperty("displayName")
private final String displayName;
/**
* The user-friendly name for the Autonomous Exadata Infrastructure. It does not have to be
* unique.
*
* @return the value
*/
public String getDisplayName() {
return displayName;
}
/** The availability domain where the Autonomous Exadata Infrastructure is located. */
@com.fasterxml.jackson.annotation.JsonProperty("availabilityDomain")
private final String availabilityDomain;
/**
* The availability domain where the Autonomous Exadata Infrastructure is located.
*
* @return the value
*/
public String getAvailabilityDomain() {
return availabilityDomain;
}
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* subnet the Autonomous Exadata Infrastructure is associated with.
*
* *Subnet Restrictions:** - For Autonomous Exadata Infrastructures, do not use a subnet that
* overlaps with 192.168.128.0/20
*
*
These subnets are used by the Oracle Clusterware private interconnect on the database
* instance. Specifying an overlapping subnet will cause the private interconnect to
* malfunction. This restriction applies to both the client subnet and backup subnet.
*/
@com.fasterxml.jackson.annotation.JsonProperty("subnetId")
private final String subnetId;
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* subnet the Autonomous Exadata Infrastructure is associated with.
*
*
*Subnet Restrictions:** - For Autonomous Exadata Infrastructures, do not use a subnet that
* overlaps with 192.168.128.0/20
*
*
These subnets are used by the Oracle Clusterware private interconnect on the database
* instance. Specifying an overlapping subnet will cause the private interconnect to
* malfunction. This restriction applies to both the client subnet and backup subnet.
*
* @return the value
*/
public String getSubnetId() {
return subnetId;
}
/**
* The list of [OCIDs](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm)
* for the network security groups (NSGs) to which this resource belongs. Setting this to an
* empty list removes all resources from all NSGs. For more information about NSGs, see
* [Security Rules](https://docs.cloud.oracle.com/Content/Network/Concepts/securityrules.htm).
* **NsgIds restrictions:** - A network security group (NSG) is optional for Autonomous
* Databases with private access. The nsgIds list can be empty.
*/
@com.fasterxml.jackson.annotation.JsonProperty("nsgIds")
private final java.util.List nsgIds;
/**
* The list of [OCIDs](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm)
* for the network security groups (NSGs) to which this resource belongs. Setting this to an
* empty list removes all resources from all NSGs. For more information about NSGs, see
* [Security Rules](https://docs.cloud.oracle.com/Content/Network/Concepts/securityrules.htm).
* **NsgIds restrictions:** - A network security group (NSG) is optional for Autonomous
* Databases with private access. The nsgIds list can be empty.
*
* @return the value
*/
public java.util.List getNsgIds() {
return nsgIds;
}
/**
* The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated
* to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of
* shapes, use the ListDbSystemShapes operation.
*/
@com.fasterxml.jackson.annotation.JsonProperty("shape")
private final String shape;
/**
* The shape of the Autonomous Exadata Infrastructure. The shape determines resources allocated
* to the Autonomous Exadata Infrastructure (CPU cores, memory and storage). To get a list of
* shapes, use the ListDbSystemShapes operation.
*
* @return the value
*/
public String getShape() {
return shape;
}
/**
* A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet
* and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used
* (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not
* permitted.
*/
@com.fasterxml.jackson.annotation.JsonProperty("domain")
private final String domain;
/**
* A domain name used for the Autonomous Exadata Infrastructure. If the Oracle-provided Internet
* and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used
* (don't provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not
* permitted.
*
* @return the value
*/
public String getDomain() {
return domain;
}
/**
* The Oracle license model that applies to all the databases in the Autonomous Exadata
* Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
*/
public enum LicenseModel implements com.oracle.bmc.http.internal.BmcEnum {
LicenseIncluded("LICENSE_INCLUDED"),
BringYourOwnLicense("BRING_YOUR_OWN_LICENSE"),
;
private final String value;
private static java.util.Map map;
static {
map = new java.util.HashMap<>();
for (LicenseModel v : LicenseModel.values()) {
map.put(v.getValue(), v);
}
}
LicenseModel(String value) {
this.value = value;
}
@com.fasterxml.jackson.annotation.JsonValue
public String getValue() {
return value;
}
@com.fasterxml.jackson.annotation.JsonCreator
public static LicenseModel create(String key) {
if (map.containsKey(key)) {
return map.get(key);
}
throw new IllegalArgumentException("Invalid LicenseModel: " + key);
}
};
/**
* The Oracle license model that applies to all the databases in the Autonomous Exadata
* Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
*/
@com.fasterxml.jackson.annotation.JsonProperty("licenseModel")
private final LicenseModel licenseModel;
/**
* The Oracle license model that applies to all the databases in the Autonomous Exadata
* Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
*
* @return the value
*/
public LicenseModel getLicenseModel() {
return licenseModel;
}
@com.fasterxml.jackson.annotation.JsonProperty("maintenanceWindowDetails")
private final MaintenanceWindow maintenanceWindowDetails;
public MaintenanceWindow getMaintenanceWindowDetails() {
return maintenanceWindowDetails;
}
/**
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined
* name, type, or namespace. For more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Department": "Finance"}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("freeformTags")
private final java.util.Map freeformTags;
/**
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined
* name, type, or namespace. For more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Department": "Finance"}}
*
* @return the value
*/
public java.util.Map getFreeformTags() {
return freeformTags;
}
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more
* information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*/
@com.fasterxml.jackson.annotation.JsonProperty("definedTags")
private final java.util.Map> definedTags;
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more
* information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* @return the value
*/
public java.util.Map> getDefinedTags() {
return definedTags;
}
@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("LaunchAutonomousExadataInfrastructureDetails(");
sb.append("super=").append(super.toString());
sb.append("compartmentId=").append(String.valueOf(this.compartmentId));
sb.append(", displayName=").append(String.valueOf(this.displayName));
sb.append(", availabilityDomain=").append(String.valueOf(this.availabilityDomain));
sb.append(", subnetId=").append(String.valueOf(this.subnetId));
sb.append(", nsgIds=").append(String.valueOf(this.nsgIds));
sb.append(", shape=").append(String.valueOf(this.shape));
sb.append(", domain=").append(String.valueOf(this.domain));
sb.append(", licenseModel=").append(String.valueOf(this.licenseModel));
sb.append(", maintenanceWindowDetails=")
.append(String.valueOf(this.maintenanceWindowDetails));
sb.append(", freeformTags=").append(String.valueOf(this.freeformTags));
sb.append(", definedTags=").append(String.valueOf(this.definedTags));
sb.append(")");
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof LaunchAutonomousExadataInfrastructureDetails)) {
return false;
}
LaunchAutonomousExadataInfrastructureDetails other =
(LaunchAutonomousExadataInfrastructureDetails) o;
return java.util.Objects.equals(this.compartmentId, other.compartmentId)
&& java.util.Objects.equals(this.displayName, other.displayName)
&& java.util.Objects.equals(this.availabilityDomain, other.availabilityDomain)
&& java.util.Objects.equals(this.subnetId, other.subnetId)
&& java.util.Objects.equals(this.nsgIds, other.nsgIds)
&& java.util.Objects.equals(this.shape, other.shape)
&& java.util.Objects.equals(this.domain, other.domain)
&& java.util.Objects.equals(this.licenseModel, other.licenseModel)
&& java.util.Objects.equals(
this.maintenanceWindowDetails, other.maintenanceWindowDetails)
&& java.util.Objects.equals(this.freeformTags, other.freeformTags)
&& java.util.Objects.equals(this.definedTags, other.definedTags)
&& super.equals(other);
}
@Override
public int hashCode() {
final int PRIME = 59;
int result = 1;
result =
(result * PRIME)
+ (this.compartmentId == null ? 43 : this.compartmentId.hashCode());
result = (result * PRIME) + (this.displayName == null ? 43 : this.displayName.hashCode());
result =
(result * PRIME)
+ (this.availabilityDomain == null
? 43
: this.availabilityDomain.hashCode());
result = (result * PRIME) + (this.subnetId == null ? 43 : this.subnetId.hashCode());
result = (result * PRIME) + (this.nsgIds == null ? 43 : this.nsgIds.hashCode());
result = (result * PRIME) + (this.shape == null ? 43 : this.shape.hashCode());
result = (result * PRIME) + (this.domain == null ? 43 : this.domain.hashCode());
result = (result * PRIME) + (this.licenseModel == null ? 43 : this.licenseModel.hashCode());
result =
(result * PRIME)
+ (this.maintenanceWindowDetails == null
? 43
: this.maintenanceWindowDetails.hashCode());
result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode());
result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode());
result = (result * PRIME) + super.hashCode();
return result;
}
}