com.datadog.api.client.v2.model.ChangeEventCustomAttributes Maven / Gradle / Ivy
/*
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2019-Present Datadog, Inc.
*/
package com.datadog.api.client.v2.model;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
/** Object representing custom change event attributes. */
@JsonPropertyOrder({
ChangeEventCustomAttributes.JSON_PROPERTY_AUTHOR,
ChangeEventCustomAttributes.JSON_PROPERTY_CHANGE_METADATA,
ChangeEventCustomAttributes.JSON_PROPERTY_CHANGED_RESOURCE,
ChangeEventCustomAttributes.JSON_PROPERTY_IMPACTED_RESOURCES,
ChangeEventCustomAttributes.JSON_PROPERTY_NEW_VALUE,
ChangeEventCustomAttributes.JSON_PROPERTY_PREV_VALUE
})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class ChangeEventCustomAttributes {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_AUTHOR = "author";
private ChangeEventCustomAttributesAuthor author;
public static final String JSON_PROPERTY_CHANGE_METADATA = "change_metadata";
private Map changeMetadata = null;
public static final String JSON_PROPERTY_CHANGED_RESOURCE = "changed_resource";
private ChangeEventCustomAttributesChangedResource changedResource;
public static final String JSON_PROPERTY_IMPACTED_RESOURCES = "impacted_resources";
private List impactedResources = null;
public static final String JSON_PROPERTY_NEW_VALUE = "new_value";
private Map newValue = null;
public static final String JSON_PROPERTY_PREV_VALUE = "prev_value";
private Map prevValue = null;
public ChangeEventCustomAttributes() {}
@JsonCreator
public ChangeEventCustomAttributes(
@JsonProperty(required = true, value = JSON_PROPERTY_CHANGED_RESOURCE)
ChangeEventCustomAttributesChangedResource changedResource) {
this.changedResource = changedResource;
this.unparsed |= changedResource.unparsed;
}
public ChangeEventCustomAttributes author(ChangeEventCustomAttributesAuthor author) {
this.author = author;
this.unparsed |= author.unparsed;
return this;
}
/**
* Object representing the entity which made the change. Optional field but if provided should
* include type
and name
.
*
* @return author
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_AUTHOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public ChangeEventCustomAttributesAuthor getAuthor() {
return author;
}
public void setAuthor(ChangeEventCustomAttributesAuthor author) {
this.author = author;
}
public ChangeEventCustomAttributes changeMetadata(Map changeMetadata) {
this.changeMetadata = changeMetadata;
return this;
}
public ChangeEventCustomAttributes putChangeMetadataItem(String key, Object changeMetadataItem) {
if (this.changeMetadata == null) {
this.changeMetadata = new HashMap<>();
}
this.changeMetadata.put(key, changeMetadataItem);
return this;
}
/**
* Free form object with information related to the change
event. Can be arbitrarily
* nested and contain any valid JSON.
*
* @return changeMetadata
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CHANGE_METADATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Map getChangeMetadata() {
return changeMetadata;
}
public void setChangeMetadata(Map changeMetadata) {
this.changeMetadata = changeMetadata;
}
public ChangeEventCustomAttributes changedResource(
ChangeEventCustomAttributesChangedResource changedResource) {
this.changedResource = changedResource;
this.unparsed |= changedResource.unparsed;
return this;
}
/**
* Object representing a uniquely identified resource. Only the resource type feature_flag
*
is supported.
*
* @return changedResource
*/
@JsonProperty(JSON_PROPERTY_CHANGED_RESOURCE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public ChangeEventCustomAttributesChangedResource getChangedResource() {
return changedResource;
}
public void setChangedResource(ChangeEventCustomAttributesChangedResource changedResource) {
this.changedResource = changedResource;
}
public ChangeEventCustomAttributes impactedResources(
List impactedResources) {
this.impactedResources = impactedResources;
for (ChangeEventCustomAttributesImpactedResourcesItems item : impactedResources) {
this.unparsed |= item.unparsed;
}
return this;
}
public ChangeEventCustomAttributes addImpactedResourcesItem(
ChangeEventCustomAttributesImpactedResourcesItems impactedResourcesItem) {
if (this.impactedResources == null) {
this.impactedResources = new ArrayList<>();
}
this.impactedResources.add(impactedResourcesItem);
this.unparsed |= impactedResourcesItem.unparsed;
return this;
}
/**
* A list of resources impacted by this change. It is recommended to provide an impacted resource
* to display the change event at the right location. Only resources of type service
* are supported.
*
* @return impactedResources
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IMPACTED_RESOURCES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getImpactedResources() {
return impactedResources;
}
public void setImpactedResources(
List impactedResources) {
this.impactedResources = impactedResources;
}
public ChangeEventCustomAttributes newValue(Map newValue) {
this.newValue = newValue;
return this;
}
public ChangeEventCustomAttributes putNewValueItem(String key, Object newValueItem) {
if (this.newValue == null) {
this.newValue = new HashMap<>();
}
this.newValue.put(key, newValueItem);
return this;
}
/**
* Free form object to track new value of the changed resource.
*
* @return newValue
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NEW_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Map getNewValue() {
return newValue;
}
public void setNewValue(Map newValue) {
this.newValue = newValue;
}
public ChangeEventCustomAttributes prevValue(Map prevValue) {
this.prevValue = prevValue;
return this;
}
public ChangeEventCustomAttributes putPrevValueItem(String key, Object prevValueItem) {
if (this.prevValue == null) {
this.prevValue = new HashMap<>();
}
this.prevValue.put(key, prevValueItem);
return this;
}
/**
* Free form object to track previous value of the changed resource.
*
* @return prevValue
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PREV_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Map getPrevValue() {
return prevValue;
}
public void setPrevValue(Map prevValue) {
this.prevValue = prevValue;
}
/**
* A container for additional, undeclared properties. This is a holder for any undeclared
* properties as specified with the 'additionalProperties' keyword in the OAS document.
*/
private Map additionalProperties;
/**
* Set the additional (undeclared) property with the specified name and value. If the property
* does not already exist, create it otherwise replace it.
*
* @param key The arbitrary key to set
* @param value The associated value
* @return ChangeEventCustomAttributes
*/
@JsonAnySetter
public ChangeEventCustomAttributes putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap();
}
this.additionalProperties.put(key, value);
return this;
}
/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map getAdditionalProperties() {
return additionalProperties;
}
/**
* Return the additional (undeclared) property with the specified name.
*
* @param key The arbitrary key to get
* @return The specific additional property for the given key
*/
public Object getAdditionalProperty(String key) {
if (this.additionalProperties == null) {
return null;
}
return this.additionalProperties.get(key);
}
/** Return true if this ChangeEventCustomAttributes object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ChangeEventCustomAttributes changeEventCustomAttributes = (ChangeEventCustomAttributes) o;
return Objects.equals(this.author, changeEventCustomAttributes.author)
&& Objects.equals(this.changeMetadata, changeEventCustomAttributes.changeMetadata)
&& Objects.equals(this.changedResource, changeEventCustomAttributes.changedResource)
&& Objects.equals(this.impactedResources, changeEventCustomAttributes.impactedResources)
&& Objects.equals(this.newValue, changeEventCustomAttributes.newValue)
&& Objects.equals(this.prevValue, changeEventCustomAttributes.prevValue)
&& Objects.equals(
this.additionalProperties, changeEventCustomAttributes.additionalProperties);
}
@Override
public int hashCode() {
return Objects.hash(
author,
changeMetadata,
changedResource,
impactedResources,
newValue,
prevValue,
additionalProperties);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ChangeEventCustomAttributes {\n");
sb.append(" author: ").append(toIndentedString(author)).append("\n");
sb.append(" changeMetadata: ").append(toIndentedString(changeMetadata)).append("\n");
sb.append(" changedResource: ").append(toIndentedString(changedResource)).append("\n");
sb.append(" impactedResources: ").append(toIndentedString(impactedResources)).append("\n");
sb.append(" newValue: ").append(toIndentedString(newValue)).append("\n");
sb.append(" prevValue: ").append(toIndentedString(prevValue)).append("\n");
sb.append(" additionalProperties: ")
.append(toIndentedString(additionalProperties))
.append("\n");
sb.append('}');
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy