com.oracle.bmc.apmtraces.model.BulkUpdateAttributeNotesDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oci-java-sdk-apmtraces Show documentation
Show all versions of oci-java-sdk-apmtraces Show documentation
This project contains the SDK used for Oracle Cloud Infrastructure Apm Traces
/**
* 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 notes 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 = BulkUpdateAttributeNotesDetail.Builder.class)
@com.fasterxml.jackson.annotation.JsonFilter(
com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME)
public final class BulkUpdateAttributeNotesDetail
extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel {
@Deprecated
@java.beans.ConstructorProperties({"attributeName", "notes", "attributeNameSpace"})
public BulkUpdateAttributeNotesDetail(
String attributeName, String notes, AttributeNameSpace attributeNameSpace) {
super();
this.attributeName = attributeName;
this.notes = notes;
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;
}
/** Notes to be updated. The size of notes cannot exceed 1000 chars. */
@com.fasterxml.jackson.annotation.JsonProperty("notes")
private String notes;
/**
* Notes to be updated. The size of notes cannot exceed 1000 chars.
*
* @param notes the value to set
* @return this builder
*/
public Builder notes(String notes) {
this.notes = notes;
this.__explicitlySet__.add("notes");
return this;
}
/**
* Namespace of the attribute for which the notes are to be updated. 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 for which the notes are to be updated. 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 BulkUpdateAttributeNotesDetail build() {
BulkUpdateAttributeNotesDetail model =
new BulkUpdateAttributeNotesDetail(
this.attributeName, this.notes, this.attributeNameSpace);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(BulkUpdateAttributeNotesDetail model) {
if (model.wasPropertyExplicitlySet("attributeName")) {
this.attributeName(model.getAttributeName());
}
if (model.wasPropertyExplicitlySet("notes")) {
this.notes(model.getNotes());
}
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;
}
/** Notes to be updated. The size of notes cannot exceed 1000 chars. */
@com.fasterxml.jackson.annotation.JsonProperty("notes")
private final String notes;
/**
* Notes to be updated. The size of notes cannot exceed 1000 chars.
*
* @return the value
*/
public String getNotes() {
return notes;
}
/**
* Namespace of the attribute for which the notes are to be updated. 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 for which the notes are to be updated. 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 for which the notes are to be updated. 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("BulkUpdateAttributeNotesDetail(");
sb.append("super=").append(super.toString());
sb.append("attributeName=").append(String.valueOf(this.attributeName));
sb.append(", notes=").append(String.valueOf(this.notes));
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 BulkUpdateAttributeNotesDetail)) {
return false;
}
BulkUpdateAttributeNotesDetail other = (BulkUpdateAttributeNotesDetail) o;
return java.util.Objects.equals(this.attributeName, other.attributeName)
&& java.util.Objects.equals(this.notes, other.notes)
&& 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.notes == null ? 43 : this.notes.hashCode());
result =
(result * PRIME)
+ (this.attributeNameSpace == null
? 43
: this.attributeNameSpace.hashCode());
result = (result * PRIME) + super.hashCode();
return result;
}
}