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

com.oracle.bmc.optimizer.model.BulkApplyResourceAction Maven / Gradle / Ivy

There is a newer version: 3.54.0
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.optimizer.model;

/**
 * The resource action that a recommendation will be applied to. 
* 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: 20200606") @com.fasterxml.jackson.databind.annotation.JsonDeserialize( builder = BulkApplyResourceAction.Builder.class) @com.fasterxml.jackson.annotation.JsonFilter( com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) public final class BulkApplyResourceAction extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { @Deprecated @java.beans.ConstructorProperties({ "resourceActionId", "status", "timeStatusEnd", "parameters", "strategyName" }) public BulkApplyResourceAction( String resourceActionId, Status status, java.util.Date timeStatusEnd, java.util.Map parameters, String strategyName) { super(); this.resourceActionId = resourceActionId; this.status = status; this.timeStatusEnd = timeStatusEnd; this.parameters = parameters; this.strategyName = strategyName; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { /** The unique OCIDs of the resource actions that recommendations are applied to. */ @com.fasterxml.jackson.annotation.JsonProperty("resourceActionId") private String resourceActionId; /** * The unique OCIDs of the resource actions that recommendations are applied to. * * @param resourceActionId the value to set * @return this builder */ public Builder resourceActionId(String resourceActionId) { this.resourceActionId = resourceActionId; this.__explicitlySet__.add("resourceActionId"); return this; } /** The current status of the recommendation. */ @com.fasterxml.jackson.annotation.JsonProperty("status") private Status status; /** * The current status of the recommendation. * * @param status the value to set * @return this builder */ public Builder status(Status status) { this.status = status; this.__explicitlySet__.add("status"); return this; } /** * The date and time the current status will change. The format is defined by RFC3339. * *

For example, "The current {@code postponed} status of the resource action will end and * change to {@code pending} on this date and time." */ @com.fasterxml.jackson.annotation.JsonProperty("timeStatusEnd") private java.util.Date timeStatusEnd; /** * The date and time the current status will change. The format is defined by RFC3339. * *

For example, "The current {@code postponed} status of the resource action will end and * change to {@code pending} on this date and time." * * @param timeStatusEnd the value to set * @return this builder */ public Builder timeStatusEnd(java.util.Date timeStatusEnd) { this.timeStatusEnd = timeStatusEnd; this.__explicitlySet__.add("timeStatusEnd"); return this; } /** * Additional parameter key-value pairs defining the resource action. For example: * *

{@code {"timeAmount": 15, "timeUnit": "seconds"}} */ @com.fasterxml.jackson.annotation.JsonProperty("parameters") private java.util.Map parameters; /** * Additional parameter key-value pairs defining the resource action. For example: * *

{@code {"timeAmount": 15, "timeUnit": "seconds"}} * * @param parameters the value to set * @return this builder */ public Builder parameters(java.util.Map parameters) { this.parameters = parameters; this.__explicitlySet__.add("parameters"); return this; } /** The name of the strategy. */ @com.fasterxml.jackson.annotation.JsonProperty("strategyName") private String strategyName; /** * The name of the strategy. * * @param strategyName the value to set * @return this builder */ public Builder strategyName(String strategyName) { this.strategyName = strategyName; this.__explicitlySet__.add("strategyName"); return this; } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); public BulkApplyResourceAction build() { BulkApplyResourceAction model = new BulkApplyResourceAction( this.resourceActionId, this.status, this.timeStatusEnd, this.parameters, this.strategyName); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } return model; } @com.fasterxml.jackson.annotation.JsonIgnore public Builder copy(BulkApplyResourceAction model) { if (model.wasPropertyExplicitlySet("resourceActionId")) { this.resourceActionId(model.getResourceActionId()); } if (model.wasPropertyExplicitlySet("status")) { this.status(model.getStatus()); } if (model.wasPropertyExplicitlySet("timeStatusEnd")) { this.timeStatusEnd(model.getTimeStatusEnd()); } if (model.wasPropertyExplicitlySet("parameters")) { this.parameters(model.getParameters()); } if (model.wasPropertyExplicitlySet("strategyName")) { this.strategyName(model.getStrategyName()); } return this; } } /** Create a new builder. */ public static Builder builder() { return new Builder(); } public Builder toBuilder() { return new Builder().copy(this); } /** The unique OCIDs of the resource actions that recommendations are applied to. */ @com.fasterxml.jackson.annotation.JsonProperty("resourceActionId") private final String resourceActionId; /** * The unique OCIDs of the resource actions that recommendations are applied to. * * @return the value */ public String getResourceActionId() { return resourceActionId; } /** The current status of the recommendation. */ @com.fasterxml.jackson.annotation.JsonProperty("status") private final Status status; /** * The current status of the recommendation. * * @return the value */ public Status getStatus() { return status; } /** * The date and time the current status will change. The format is defined by RFC3339. * *

For example, "The current {@code postponed} status of the resource action will end and * change to {@code pending} on this date and time." */ @com.fasterxml.jackson.annotation.JsonProperty("timeStatusEnd") private final java.util.Date timeStatusEnd; /** * The date and time the current status will change. The format is defined by RFC3339. * *

For example, "The current {@code postponed} status of the resource action will end and * change to {@code pending} on this date and time." * * @return the value */ public java.util.Date getTimeStatusEnd() { return timeStatusEnd; } /** * Additional parameter key-value pairs defining the resource action. For example: * *

{@code {"timeAmount": 15, "timeUnit": "seconds"}} */ @com.fasterxml.jackson.annotation.JsonProperty("parameters") private final java.util.Map parameters; /** * Additional parameter key-value pairs defining the resource action. For example: * *

{@code {"timeAmount": 15, "timeUnit": "seconds"}} * * @return the value */ public java.util.Map getParameters() { return parameters; } /** The name of the strategy. */ @com.fasterxml.jackson.annotation.JsonProperty("strategyName") private final String strategyName; /** * The name of the strategy. * * @return the value */ public String getStrategyName() { return strategyName; } @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("BulkApplyResourceAction("); sb.append("super=").append(super.toString()); sb.append("resourceActionId=").append(String.valueOf(this.resourceActionId)); sb.append(", status=").append(String.valueOf(this.status)); sb.append(", timeStatusEnd=").append(String.valueOf(this.timeStatusEnd)); sb.append(", parameters=").append(String.valueOf(this.parameters)); sb.append(", strategyName=").append(String.valueOf(this.strategyName)); sb.append(")"); return sb.toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof BulkApplyResourceAction)) { return false; } BulkApplyResourceAction other = (BulkApplyResourceAction) o; return java.util.Objects.equals(this.resourceActionId, other.resourceActionId) && java.util.Objects.equals(this.status, other.status) && java.util.Objects.equals(this.timeStatusEnd, other.timeStatusEnd) && java.util.Objects.equals(this.parameters, other.parameters) && java.util.Objects.equals(this.strategyName, other.strategyName) && super.equals(other); } @Override public int hashCode() { final int PRIME = 59; int result = 1; result = (result * PRIME) + (this.resourceActionId == null ? 43 : this.resourceActionId.hashCode()); result = (result * PRIME) + (this.status == null ? 43 : this.status.hashCode()); result = (result * PRIME) + (this.timeStatusEnd == null ? 43 : this.timeStatusEnd.hashCode()); result = (result * PRIME) + (this.parameters == null ? 43 : this.parameters.hashCode()); result = (result * PRIME) + (this.strategyName == null ? 43 : this.strategyName.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy