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

com.oracle.bmc.apmtraces.model.BulkUpdateAttributeDetail Maven / Gradle / Ivy

The 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.apmtraces.model;

/**
 * Object that contains the details about a single attribute in the bulk request for which
 * properties are to be updated. 
* 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: 20200630") @com.fasterxml.jackson.databind.annotation.JsonDeserialize( builder = BulkUpdateAttributeDetail.Builder.class) @com.fasterxml.jackson.annotation.JsonFilter( com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) public final class BulkUpdateAttributeDetail extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { @Deprecated @java.beans.ConstructorProperties({"attributeName", "unit", "attributeNameSpace"}) public BulkUpdateAttributeDetail( String attributeName, Unit unit, AttributeNameSpace attributeNameSpace) { super(); this.attributeName = attributeName; this.unit = unit; this.attributeNameSpace = attributeNameSpace; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { /** Name of the attribute for which notes are to be updated. */ @com.fasterxml.jackson.annotation.JsonProperty("attributeName") private String attributeName; /** * Name of the attribute for which notes are to be updated. * * @param attributeName the value to set * @return this builder */ public Builder attributeName(String attributeName) { this.attributeName = attributeName; this.__explicitlySet__.add("attributeName"); return this; } /** Unit of the attribute to be updated. */ @com.fasterxml.jackson.annotation.JsonProperty("unit") private Unit unit; /** * Unit of the attribute to be updated. * * @param unit the value to set * @return this builder */ public Builder unit(Unit unit) { this.unit = unit; this.__explicitlySet__.add("unit"); return this; } /** Namespace of the attribute for which the properties are to be updated. */ @com.fasterxml.jackson.annotation.JsonProperty("attributeNameSpace") private AttributeNameSpace attributeNameSpace; /** * Namespace of the attribute for which the properties are to be updated. * * @param attributeNameSpace the value to set * @return this builder */ public Builder attributeNameSpace(AttributeNameSpace attributeNameSpace) { this.attributeNameSpace = attributeNameSpace; this.__explicitlySet__.add("attributeNameSpace"); return this; } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); public BulkUpdateAttributeDetail build() { BulkUpdateAttributeDetail model = new BulkUpdateAttributeDetail( this.attributeName, this.unit, this.attributeNameSpace); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } return model; } @com.fasterxml.jackson.annotation.JsonIgnore public Builder copy(BulkUpdateAttributeDetail model) { if (model.wasPropertyExplicitlySet("attributeName")) { this.attributeName(model.getAttributeName()); } if (model.wasPropertyExplicitlySet("unit")) { this.unit(model.getUnit()); } if (model.wasPropertyExplicitlySet("attributeNameSpace")) { this.attributeNameSpace(model.getAttributeNameSpace()); } return this; } } /** Create a new builder. */ public static Builder builder() { return new Builder(); } public Builder toBuilder() { return new Builder().copy(this); } /** Name of the attribute for which notes are to be updated. */ @com.fasterxml.jackson.annotation.JsonProperty("attributeName") private final String attributeName; /** * Name of the attribute for which notes are to be updated. * * @return the value */ public String getAttributeName() { return attributeName; } /** Unit of the attribute to be updated. */ public enum Unit implements com.oracle.bmc.http.internal.BmcEnum { None("NONE"), EpochTimeMs("EPOCH_TIME_MS"), Bytes("BYTES"), Count("COUNT"), DurationMs("DURATION_MS"), TraceStatus("TRACE_STATUS"), Percentage("PERCENTAGE"), ; private final String value; private static java.util.Map map; static { map = new java.util.HashMap<>(); for (Unit v : Unit.values()) { map.put(v.getValue(), v); } } Unit(String value) { this.value = value; } @com.fasterxml.jackson.annotation.JsonValue public String getValue() { return value; } @com.fasterxml.jackson.annotation.JsonCreator public static Unit create(String key) { if (map.containsKey(key)) { return map.get(key); } throw new IllegalArgumentException("Invalid Unit: " + key); } }; /** Unit of the attribute to be updated. */ @com.fasterxml.jackson.annotation.JsonProperty("unit") private final Unit unit; /** * Unit of the attribute to be updated. * * @return the value */ public Unit getUnit() { return unit; } /** Namespace of the attribute for which the properties are to be updated. */ public enum AttributeNameSpace implements com.oracle.bmc.http.internal.BmcEnum { Traces("TRACES"), Synthetic("SYNTHETIC"), ; private final String value; private static java.util.Map map; static { map = new java.util.HashMap<>(); for (AttributeNameSpace v : AttributeNameSpace.values()) { map.put(v.getValue(), v); } } AttributeNameSpace(String value) { this.value = value; } @com.fasterxml.jackson.annotation.JsonValue public String getValue() { return value; } @com.fasterxml.jackson.annotation.JsonCreator public static AttributeNameSpace create(String key) { if (map.containsKey(key)) { return map.get(key); } throw new IllegalArgumentException("Invalid AttributeNameSpace: " + key); } }; /** Namespace of the attribute for which the properties are to be updated. */ @com.fasterxml.jackson.annotation.JsonProperty("attributeNameSpace") private final AttributeNameSpace attributeNameSpace; /** * Namespace of the attribute for which the properties are to be updated. * * @return the value */ public AttributeNameSpace getAttributeNameSpace() { return attributeNameSpace; } @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("BulkUpdateAttributeDetail("); sb.append("super=").append(super.toString()); sb.append("attributeName=").append(String.valueOf(this.attributeName)); sb.append(", unit=").append(String.valueOf(this.unit)); sb.append(", attributeNameSpace=").append(String.valueOf(this.attributeNameSpace)); sb.append(")"); return sb.toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof BulkUpdateAttributeDetail)) { return false; } BulkUpdateAttributeDetail other = (BulkUpdateAttributeDetail) o; return java.util.Objects.equals(this.attributeName, other.attributeName) && java.util.Objects.equals(this.unit, other.unit) && java.util.Objects.equals(this.attributeNameSpace, other.attributeNameSpace) && super.equals(other); } @Override public int hashCode() { final int PRIME = 59; int result = 1; result = (result * PRIME) + (this.attributeName == null ? 43 : this.attributeName.hashCode()); result = (result * PRIME) + (this.unit == null ? 43 : this.unit.hashCode()); result = (result * PRIME) + (this.attributeNameSpace == null ? 43 : this.attributeNameSpace.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy