com.oracle.bmc.database.model.UpdateHistoryEntrySummary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oci-java-sdk-database Show documentation
Show all versions of oci-java-sdk-database Show documentation
This project contains the SDK used for Oracle Cloud Infrastructure Database Service
/**
* 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;
/**
* The record of an maintenance update action on a specified cloud VM cluster. Applies to Exadata
* Cloud Service instances only.
* 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 = UpdateHistoryEntrySummary.Builder.class)
@com.fasterxml.jackson.annotation.JsonFilter(
com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME)
public final class UpdateHistoryEntrySummary
extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel {
@Deprecated
@java.beans.ConstructorProperties({
"id",
"updateId",
"updateAction",
"updateType",
"lifecycleState",
"lifecycleDetails",
"timeStarted",
"timeCompleted"
})
public UpdateHistoryEntrySummary(
String id,
String updateId,
UpdateAction updateAction,
UpdateType updateType,
LifecycleState lifecycleState,
String lifecycleDetails,
java.util.Date timeStarted,
java.util.Date timeCompleted) {
super();
this.id = id;
this.updateId = updateId;
this.updateAction = updateAction;
this.updateType = updateType;
this.lifecycleState = lifecycleState;
this.lifecycleDetails = lifecycleDetails;
this.timeStarted = timeStarted;
this.timeCompleted = timeCompleted;
}
@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
* maintenance update history entry.
*/
@com.fasterxml.jackson.annotation.JsonProperty("id")
private String id;
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* maintenance update history entry.
*
* @param id the value to set
* @return this builder
*/
public Builder id(String id) {
this.id = id;
this.__explicitlySet__.add("id");
return this;
}
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* maintenance update.
*/
@com.fasterxml.jackson.annotation.JsonProperty("updateId")
private String updateId;
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* maintenance update.
*
* @param updateId the value to set
* @return this builder
*/
public Builder updateId(String updateId) {
this.updateId = updateId;
this.__explicitlySet__.add("updateId");
return this;
}
/** The update action. */
@com.fasterxml.jackson.annotation.JsonProperty("updateAction")
private UpdateAction updateAction;
/**
* The update action.
*
* @param updateAction the value to set
* @return this builder
*/
public Builder updateAction(UpdateAction updateAction) {
this.updateAction = updateAction;
this.__explicitlySet__.add("updateAction");
return this;
}
/** The type of cloud VM cluster maintenance update. */
@com.fasterxml.jackson.annotation.JsonProperty("updateType")
private UpdateType updateType;
/**
* The type of cloud VM cluster maintenance update.
*
* @param updateType the value to set
* @return this builder
*/
public Builder updateType(UpdateType updateType) {
this.updateType = updateType;
this.__explicitlySet__.add("updateType");
return this;
}
/** The current lifecycle state of the maintenance update operation. */
@com.fasterxml.jackson.annotation.JsonProperty("lifecycleState")
private LifecycleState lifecycleState;
/**
* The current lifecycle state of the maintenance update operation.
*
* @param lifecycleState the value to set
* @return this builder
*/
public Builder lifecycleState(LifecycleState lifecycleState) {
this.lifecycleState = lifecycleState;
this.__explicitlySet__.add("lifecycleState");
return this;
}
/** Descriptive text providing additional details about the lifecycle state. */
@com.fasterxml.jackson.annotation.JsonProperty("lifecycleDetails")
private String lifecycleDetails;
/**
* Descriptive text providing additional details about the lifecycle state.
*
* @param lifecycleDetails the value to set
* @return this builder
*/
public Builder lifecycleDetails(String lifecycleDetails) {
this.lifecycleDetails = lifecycleDetails;
this.__explicitlySet__.add("lifecycleDetails");
return this;
}
/** The date and time when the maintenance update action started. */
@com.fasterxml.jackson.annotation.JsonProperty("timeStarted")
private java.util.Date timeStarted;
/**
* The date and time when the maintenance update action started.
*
* @param timeStarted the value to set
* @return this builder
*/
public Builder timeStarted(java.util.Date timeStarted) {
this.timeStarted = timeStarted;
this.__explicitlySet__.add("timeStarted");
return this;
}
/** The date and time when the maintenance update action completed. */
@com.fasterxml.jackson.annotation.JsonProperty("timeCompleted")
private java.util.Date timeCompleted;
/**
* The date and time when the maintenance update action completed.
*
* @param timeCompleted the value to set
* @return this builder
*/
public Builder timeCompleted(java.util.Date timeCompleted) {
this.timeCompleted = timeCompleted;
this.__explicitlySet__.add("timeCompleted");
return this;
}
@com.fasterxml.jackson.annotation.JsonIgnore
private final java.util.Set __explicitlySet__ = new java.util.HashSet();
public UpdateHistoryEntrySummary build() {
UpdateHistoryEntrySummary model =
new UpdateHistoryEntrySummary(
this.id,
this.updateId,
this.updateAction,
this.updateType,
this.lifecycleState,
this.lifecycleDetails,
this.timeStarted,
this.timeCompleted);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(UpdateHistoryEntrySummary model) {
if (model.wasPropertyExplicitlySet("id")) {
this.id(model.getId());
}
if (model.wasPropertyExplicitlySet("updateId")) {
this.updateId(model.getUpdateId());
}
if (model.wasPropertyExplicitlySet("updateAction")) {
this.updateAction(model.getUpdateAction());
}
if (model.wasPropertyExplicitlySet("updateType")) {
this.updateType(model.getUpdateType());
}
if (model.wasPropertyExplicitlySet("lifecycleState")) {
this.lifecycleState(model.getLifecycleState());
}
if (model.wasPropertyExplicitlySet("lifecycleDetails")) {
this.lifecycleDetails(model.getLifecycleDetails());
}
if (model.wasPropertyExplicitlySet("timeStarted")) {
this.timeStarted(model.getTimeStarted());
}
if (model.wasPropertyExplicitlySet("timeCompleted")) {
this.timeCompleted(model.getTimeCompleted());
}
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
* maintenance update history entry.
*/
@com.fasterxml.jackson.annotation.JsonProperty("id")
private final String id;
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* maintenance update history entry.
*
* @return the value
*/
public String getId() {
return id;
}
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* maintenance update.
*/
@com.fasterxml.jackson.annotation.JsonProperty("updateId")
private final String updateId;
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* maintenance update.
*
* @return the value
*/
public String getUpdateId() {
return updateId;
}
/** The update action. */
public enum UpdateAction implements com.oracle.bmc.http.internal.BmcEnum {
RollingApply("ROLLING_APPLY"),
NonRollingApply("NON_ROLLING_APPLY"),
Precheck("PRECHECK"),
Rollback("ROLLBACK"),
/**
* This value is used if a service returns a value for this enum that is not recognized by
* this version of the SDK.
*/
UnknownEnumValue(null);
private static final org.slf4j.Logger LOG =
org.slf4j.LoggerFactory.getLogger(UpdateAction.class);
private final String value;
private static java.util.Map map;
static {
map = new java.util.HashMap<>();
for (UpdateAction v : UpdateAction.values()) {
if (v != UnknownEnumValue) {
map.put(v.getValue(), v);
}
}
}
UpdateAction(String value) {
this.value = value;
}
@com.fasterxml.jackson.annotation.JsonValue
public String getValue() {
return value;
}
@com.fasterxml.jackson.annotation.JsonCreator
public static UpdateAction create(String key) {
if (map.containsKey(key)) {
return map.get(key);
}
LOG.warn(
"Received unknown value '{}' for enum 'UpdateAction', returning UnknownEnumValue",
key);
return UnknownEnumValue;
}
};
/** The update action. */
@com.fasterxml.jackson.annotation.JsonProperty("updateAction")
private final UpdateAction updateAction;
/**
* The update action.
*
* @return the value
*/
public UpdateAction getUpdateAction() {
return updateAction;
}
/** The type of cloud VM cluster maintenance update. */
public enum UpdateType implements com.oracle.bmc.http.internal.BmcEnum {
GiUpgrade("GI_UPGRADE"),
GiPatch("GI_PATCH"),
OsUpdate("OS_UPDATE"),
/**
* This value is used if a service returns a value for this enum that is not recognized by
* this version of the SDK.
*/
UnknownEnumValue(null);
private static final org.slf4j.Logger LOG =
org.slf4j.LoggerFactory.getLogger(UpdateType.class);
private final String value;
private static java.util.Map map;
static {
map = new java.util.HashMap<>();
for (UpdateType v : UpdateType.values()) {
if (v != UnknownEnumValue) {
map.put(v.getValue(), v);
}
}
}
UpdateType(String value) {
this.value = value;
}
@com.fasterxml.jackson.annotation.JsonValue
public String getValue() {
return value;
}
@com.fasterxml.jackson.annotation.JsonCreator
public static UpdateType create(String key) {
if (map.containsKey(key)) {
return map.get(key);
}
LOG.warn(
"Received unknown value '{}' for enum 'UpdateType', returning UnknownEnumValue",
key);
return UnknownEnumValue;
}
};
/** The type of cloud VM cluster maintenance update. */
@com.fasterxml.jackson.annotation.JsonProperty("updateType")
private final UpdateType updateType;
/**
* The type of cloud VM cluster maintenance update.
*
* @return the value
*/
public UpdateType getUpdateType() {
return updateType;
}
/** The current lifecycle state of the maintenance update operation. */
public enum LifecycleState implements com.oracle.bmc.http.internal.BmcEnum {
InProgress("IN_PROGRESS"),
Succeeded("SUCCEEDED"),
Failed("FAILED"),
/**
* This value is used if a service returns a value for this enum that is not recognized by
* this version of the SDK.
*/
UnknownEnumValue(null);
private static final org.slf4j.Logger LOG =
org.slf4j.LoggerFactory.getLogger(LifecycleState.class);
private final String value;
private static java.util.Map map;
static {
map = new java.util.HashMap<>();
for (LifecycleState v : LifecycleState.values()) {
if (v != UnknownEnumValue) {
map.put(v.getValue(), v);
}
}
}
LifecycleState(String value) {
this.value = value;
}
@com.fasterxml.jackson.annotation.JsonValue
public String getValue() {
return value;
}
@com.fasterxml.jackson.annotation.JsonCreator
public static LifecycleState create(String key) {
if (map.containsKey(key)) {
return map.get(key);
}
LOG.warn(
"Received unknown value '{}' for enum 'LifecycleState', returning UnknownEnumValue",
key);
return UnknownEnumValue;
}
};
/** The current lifecycle state of the maintenance update operation. */
@com.fasterxml.jackson.annotation.JsonProperty("lifecycleState")
private final LifecycleState lifecycleState;
/**
* The current lifecycle state of the maintenance update operation.
*
* @return the value
*/
public LifecycleState getLifecycleState() {
return lifecycleState;
}
/** Descriptive text providing additional details about the lifecycle state. */
@com.fasterxml.jackson.annotation.JsonProperty("lifecycleDetails")
private final String lifecycleDetails;
/**
* Descriptive text providing additional details about the lifecycle state.
*
* @return the value
*/
public String getLifecycleDetails() {
return lifecycleDetails;
}
/** The date and time when the maintenance update action started. */
@com.fasterxml.jackson.annotation.JsonProperty("timeStarted")
private final java.util.Date timeStarted;
/**
* The date and time when the maintenance update action started.
*
* @return the value
*/
public java.util.Date getTimeStarted() {
return timeStarted;
}
/** The date and time when the maintenance update action completed. */
@com.fasterxml.jackson.annotation.JsonProperty("timeCompleted")
private final java.util.Date timeCompleted;
/**
* The date and time when the maintenance update action completed.
*
* @return the value
*/
public java.util.Date getTimeCompleted() {
return timeCompleted;
}
@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("UpdateHistoryEntrySummary(");
sb.append("super=").append(super.toString());
sb.append("id=").append(String.valueOf(this.id));
sb.append(", updateId=").append(String.valueOf(this.updateId));
sb.append(", updateAction=").append(String.valueOf(this.updateAction));
sb.append(", updateType=").append(String.valueOf(this.updateType));
sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState));
sb.append(", lifecycleDetails=").append(String.valueOf(this.lifecycleDetails));
sb.append(", timeStarted=").append(String.valueOf(this.timeStarted));
sb.append(", timeCompleted=").append(String.valueOf(this.timeCompleted));
sb.append(")");
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof UpdateHistoryEntrySummary)) {
return false;
}
UpdateHistoryEntrySummary other = (UpdateHistoryEntrySummary) o;
return java.util.Objects.equals(this.id, other.id)
&& java.util.Objects.equals(this.updateId, other.updateId)
&& java.util.Objects.equals(this.updateAction, other.updateAction)
&& java.util.Objects.equals(this.updateType, other.updateType)
&& java.util.Objects.equals(this.lifecycleState, other.lifecycleState)
&& java.util.Objects.equals(this.lifecycleDetails, other.lifecycleDetails)
&& java.util.Objects.equals(this.timeStarted, other.timeStarted)
&& java.util.Objects.equals(this.timeCompleted, other.timeCompleted)
&& super.equals(other);
}
@Override
public int hashCode() {
final int PRIME = 59;
int result = 1;
result = (result * PRIME) + (this.id == null ? 43 : this.id.hashCode());
result = (result * PRIME) + (this.updateId == null ? 43 : this.updateId.hashCode());
result = (result * PRIME) + (this.updateAction == null ? 43 : this.updateAction.hashCode());
result = (result * PRIME) + (this.updateType == null ? 43 : this.updateType.hashCode());
result =
(result * PRIME)
+ (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode());
result =
(result * PRIME)
+ (this.lifecycleDetails == null ? 43 : this.lifecycleDetails.hashCode());
result = (result * PRIME) + (this.timeStarted == null ? 43 : this.timeStarted.hashCode());
result =
(result * PRIME)
+ (this.timeCompleted == null ? 43 : this.timeCompleted.hashCode());
result = (result * PRIME) + super.hashCode();
return result;
}
}