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

com.oracle.bmc.apmtraces.model.BulkDeActivateAttributeDetail 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 to be deactivated. 
* 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 = BulkDeActivateAttributeDetail.Builder.class) @com.fasterxml.jackson.annotation.JsonFilter( com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) public final class BulkDeActivateAttributeDetail extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { @Deprecated @java.beans.ConstructorProperties({"attributeName", "attributeNameSpace"}) public BulkDeActivateAttributeDetail( String attributeName, AttributeNameSpace attributeNameSpace) { super(); this.attributeName = attributeName; this.attributeNameSpace = attributeNameSpace; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { /** Name of the attribute to be deactivated. */ @com.fasterxml.jackson.annotation.JsonProperty("attributeName") private String attributeName; /** * Name of the attribute to be deactivated. * * @param attributeName the value to set * @return this builder */ public Builder attributeName(String attributeName) { this.attributeName = attributeName; this.__explicitlySet__.add("attributeName"); return this; } /** * Namespace of the attribute to be deactivated. The attributeNameSpace will default to * TRACES if it is not passed in. */ @com.fasterxml.jackson.annotation.JsonProperty("attributeNameSpace") private AttributeNameSpace attributeNameSpace; /** * Namespace of the attribute to be deactivated. The attributeNameSpace will default to * TRACES if it is not passed in. * * @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 BulkDeActivateAttributeDetail build() { BulkDeActivateAttributeDetail model = new BulkDeActivateAttributeDetail(this.attributeName, this.attributeNameSpace); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } return model; } @com.fasterxml.jackson.annotation.JsonIgnore public Builder copy(BulkDeActivateAttributeDetail model) { if (model.wasPropertyExplicitlySet("attributeName")) { this.attributeName(model.getAttributeName()); } 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 to be deactivated. */ @com.fasterxml.jackson.annotation.JsonProperty("attributeName") private final String attributeName; /** * Name of the attribute to be deactivated. * * @return the value */ public String getAttributeName() { return attributeName; } /** * Namespace of the attribute to be deactivated. The attributeNameSpace will default to TRACES * if it is not passed in. */ 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 to be deactivated. The attributeNameSpace will default to TRACES * if it is not passed in. */ @com.fasterxml.jackson.annotation.JsonProperty("attributeNameSpace") private final AttributeNameSpace attributeNameSpace; /** * Namespace of the attribute to be deactivated. The attributeNameSpace will default to TRACES * if it is not passed in. * * @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("BulkDeActivateAttributeDetail("); sb.append("super=").append(super.toString()); sb.append("attributeName=").append(String.valueOf(this.attributeName)); 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 BulkDeActivateAttributeDetail)) { return false; } BulkDeActivateAttributeDetail other = (BulkDeActivateAttributeDetail) o; return java.util.Objects.equals(this.attributeName, other.attributeName) && 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.attributeNameSpace == null ? 43 : this.attributeNameSpace.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy