Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include logs_restriction_queries. #2507

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-01 14:24:18.377100",
"spec_repo_commit": "d90ee2ef"
"regenerated": "2024-10-01 16:33:20.700054",
"spec_repo_commit": "763d3bd7"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-01 14:24:18.393189",
"spec_repo_commit": "d90ee2ef"
"regenerated": "2024-10-01 16:33:20.714316",
"spec_repo_commit": "763d3bd7"
}
}
}
651 changes: 651 additions & 0 deletions .generator/schemas/v2/openapi.yaml

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions src/main/java/com/datadog/api/client/ApiClient.java
Original file line number Diff line number Diff line change
@@ -394,6 +394,16 @@ public class ApiClient {
put("v2.updateIncidentAttachments", false);
put("v2.updateIncidentIntegration", false);
put("v2.updateIncidentTodo", false);
put("v2.addRoleToRestrictionQuery", false);
put("v2.createRestrictionQuery", false);
put("v2.deleteRestrictionQuery", false);
put("v2.getRestrictionQuery", false);
put("v2.getRoleRestrictionQuery", false);
put("v2.listRestrictionQueries", false);
put("v2.listRestrictionQueryRoles", false);
put("v2.listUserRestrictionQueries", false);
put("v2.removeRoleFromRestrictionQuery", false);
put("v2.updateRestrictionQuery", false);
put("v2.queryScalarData", false);
put("v2.queryTimeseriesData", false);
put("v2.getFinding", false);
1,851 changes: 1,851 additions & 0 deletions src/main/java/com/datadog/api/client/v2/api/LogsRestrictionQueriesApi.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/*
* 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.datadog.api.client.ModelEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

/** Restriction query resource type. */
@JsonSerialize(using = LogsRestrictionQueriesType.LogsRestrictionQueriesTypeSerializer.class)
public class LogsRestrictionQueriesType extends ModelEnum<String> {

private static final Set<String> allowedValues =
new HashSet<String>(Arrays.asList("logs_restriction_queries"));

public static final LogsRestrictionQueriesType LOGS_RESTRICTION_QUERIES =
new LogsRestrictionQueriesType("logs_restriction_queries");

LogsRestrictionQueriesType(String value) {
super(value, allowedValues);
}

public static class LogsRestrictionQueriesTypeSerializer
extends StdSerializer<LogsRestrictionQueriesType> {
public LogsRestrictionQueriesTypeSerializer(Class<LogsRestrictionQueriesType> t) {
super(t);
}

public LogsRestrictionQueriesTypeSerializer() {
this(null);
}

@Override
public void serialize(
LogsRestrictionQueriesType value, JsonGenerator jgen, SerializerProvider provider)
throws IOException, JsonProcessingException {
jgen.writeObject(value.value);
}
}

@JsonCreator
public static LogsRestrictionQueriesType fromValue(String value) {
return new LogsRestrictionQueriesType(value);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.time.OffsetDateTime;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Attributes of the restriction query. */
@JsonPropertyOrder({
RestrictionQueryAttributes.JSON_PROPERTY_CREATED_AT,
RestrictionQueryAttributes.JSON_PROPERTY_MODIFIED_AT,
RestrictionQueryAttributes.JSON_PROPERTY_RESTRICTION_QUERY
})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryAttributes {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_CREATED_AT = "created_at";
private OffsetDateTime createdAt;

public static final String JSON_PROPERTY_MODIFIED_AT = "modified_at";
private OffsetDateTime modifiedAt;

public static final String JSON_PROPERTY_RESTRICTION_QUERY = "restriction_query";
private String restrictionQuery;

/**
* Creation time of the restriction query.
*
* @return createdAt
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public OffsetDateTime getCreatedAt() {
return createdAt;
}

/**
* Time of last restriction query modification.
*
* @return modifiedAt
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MODIFIED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public OffsetDateTime getModifiedAt() {
return modifiedAt;
}

public RestrictionQueryAttributes restrictionQuery(String restrictionQuery) {
this.restrictionQuery = restrictionQuery;
return this;
}

/**
* The query that defines the restriction. Only the content matching the query can be returned.
*
* @return restrictionQuery
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RESTRICTION_QUERY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getRestrictionQuery() {
return restrictionQuery;
}

public void setRestrictionQuery(String restrictionQuery) {
this.restrictionQuery = restrictionQuery;
}

/**
* 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<String, Object> 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 RestrictionQueryAttributes
*/
@JsonAnySetter
public RestrictionQueryAttributes putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryAttributes object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryAttributes restrictionQueryAttributes = (RestrictionQueryAttributes) o;
return Objects.equals(this.createdAt, restrictionQueryAttributes.createdAt)
&& Objects.equals(this.modifiedAt, restrictionQueryAttributes.modifiedAt)
&& Objects.equals(this.restrictionQuery, restrictionQueryAttributes.restrictionQuery)
&& Objects.equals(
this.additionalProperties, restrictionQueryAttributes.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(createdAt, modifiedAt, restrictionQuery, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryAttributes {\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" modifiedAt: ").append(toIndentedString(modifiedAt)).append("\n");
sb.append(" restrictionQuery: ").append(toIndentedString(restrictionQuery)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Attributes of the created restriction query. */
@JsonPropertyOrder({RestrictionQueryCreateAttributes.JSON_PROPERTY_RESTRICTION_QUERY})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryCreateAttributes {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_RESTRICTION_QUERY = "restriction_query";
private String restrictionQuery;

public RestrictionQueryCreateAttributes restrictionQuery(String restrictionQuery) {
this.restrictionQuery = restrictionQuery;
return this;
}

/**
* The restriction query.
*
* @return restrictionQuery
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RESTRICTION_QUERY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getRestrictionQuery() {
return restrictionQuery;
}

public void setRestrictionQuery(String restrictionQuery) {
this.restrictionQuery = restrictionQuery;
}

/**
* 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<String, Object> 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 RestrictionQueryCreateAttributes
*/
@JsonAnySetter
public RestrictionQueryCreateAttributes putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryCreateAttributes object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryCreateAttributes restrictionQueryCreateAttributes =
(RestrictionQueryCreateAttributes) o;
return Objects.equals(this.restrictionQuery, restrictionQueryCreateAttributes.restrictionQuery)
&& Objects.equals(
this.additionalProperties, restrictionQueryCreateAttributes.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(restrictionQuery, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryCreateAttributes {\n");
sb.append(" restrictionQuery: ").append(toIndentedString(restrictionQuery)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Data related to the creation of a restriction query. */
@JsonPropertyOrder({
RestrictionQueryCreateData.JSON_PROPERTY_ATTRIBUTES,
RestrictionQueryCreateData.JSON_PROPERTY_TYPE
})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryCreateData {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_ATTRIBUTES = "attributes";
private RestrictionQueryCreateAttributes attributes;

public static final String JSON_PROPERTY_TYPE = "type";
private LogsRestrictionQueriesType type = LogsRestrictionQueriesType.LOGS_RESTRICTION_QUERIES;

public RestrictionQueryCreateData attributes(RestrictionQueryCreateAttributes attributes) {
this.attributes = attributes;
this.unparsed |= attributes.unparsed;
return this;
}

/**
* Attributes of the created restriction query.
*
* @return attributes
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ATTRIBUTES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RestrictionQueryCreateAttributes getAttributes() {
return attributes;
}

public void setAttributes(RestrictionQueryCreateAttributes attributes) {
this.attributes = attributes;
}

public RestrictionQueryCreateData type(LogsRestrictionQueriesType type) {
this.type = type;
this.unparsed |= !type.isValid();
return this;
}

/**
* Restriction query resource type.
*
* @return type
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public LogsRestrictionQueriesType getType() {
return type;
}

public void setType(LogsRestrictionQueriesType type) {
if (!type.isValid()) {
this.unparsed = true;
}
this.type = type;
}

/**
* 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<String, Object> 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 RestrictionQueryCreateData
*/
@JsonAnySetter
public RestrictionQueryCreateData putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryCreateData object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryCreateData restrictionQueryCreateData = (RestrictionQueryCreateData) o;
return Objects.equals(this.attributes, restrictionQueryCreateData.attributes)
&& Objects.equals(this.type, restrictionQueryCreateData.type)
&& Objects.equals(
this.additionalProperties, restrictionQueryCreateData.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(attributes, type, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryCreateData {\n");
sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Create a restriction query. */
@JsonPropertyOrder({RestrictionQueryCreatePayload.JSON_PROPERTY_DATA})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryCreatePayload {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_DATA = "data";
private RestrictionQueryCreateData data;

public RestrictionQueryCreatePayload data(RestrictionQueryCreateData data) {
this.data = data;
this.unparsed |= data.unparsed;
return this;
}

/**
* Data related to the creation of a restriction query.
*
* @return data
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RestrictionQueryCreateData getData() {
return data;
}

public void setData(RestrictionQueryCreateData data) {
this.data = data;
}

/**
* 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<String, Object> 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 RestrictionQueryCreatePayload
*/
@JsonAnySetter
public RestrictionQueryCreatePayload putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryCreatePayload object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryCreatePayload restrictionQueryCreatePayload = (RestrictionQueryCreatePayload) o;
return Objects.equals(this.data, restrictionQueryCreatePayload.data)
&& Objects.equals(
this.additionalProperties, restrictionQueryCreatePayload.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(data, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryCreatePayload {\n");
sb.append(" data: ").append(toIndentedString(data)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
/*
* 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.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;

/** Response containing information about multiple restriction queries. */
@JsonPropertyOrder({RestrictionQueryListResponse.JSON_PROPERTY_DATA})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryListResponse {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_DATA = "data";
private List<RestrictionQueryWithoutRelationships> data = null;

public RestrictionQueryListResponse data(List<RestrictionQueryWithoutRelationships> data) {
this.data = data;
for (RestrictionQueryWithoutRelationships item : data) {
this.unparsed |= item.unparsed;
}
return this;
}

public RestrictionQueryListResponse addDataItem(RestrictionQueryWithoutRelationships dataItem) {
if (this.data == null) {
this.data = new ArrayList<>();
}
this.data.add(dataItem);
this.unparsed |= dataItem.unparsed;
return this;
}

/**
* Array of returned restriction queries.
*
* @return data
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<RestrictionQueryWithoutRelationships> getData() {
return data;
}

public void setData(List<RestrictionQueryWithoutRelationships> data) {
this.data = data;
}

/**
* 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<String, Object> 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 RestrictionQueryListResponse
*/
@JsonAnySetter
public RestrictionQueryListResponse putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryListResponse object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryListResponse restrictionQueryListResponse = (RestrictionQueryListResponse) o;
return Objects.equals(this.data, restrictionQueryListResponse.data)
&& Objects.equals(
this.additionalProperties, restrictionQueryListResponse.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(data, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryListResponse {\n");
sb.append(" data: ").append(toIndentedString(data)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Relationships of the restriction query object. */
@JsonPropertyOrder({RestrictionQueryRelationships.JSON_PROPERTY_ROLES})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryRelationships {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_ROLES = "roles";
private RelationshipToRoles roles;

public RestrictionQueryRelationships roles(RelationshipToRoles roles) {
this.roles = roles;
this.unparsed |= roles.unparsed;
return this;
}

/**
* Relationship to roles.
*
* @return roles
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROLES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RelationshipToRoles getRoles() {
return roles;
}

public void setRoles(RelationshipToRoles roles) {
this.roles = roles;
}

/**
* 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<String, Object> 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 RestrictionQueryRelationships
*/
@JsonAnySetter
public RestrictionQueryRelationships putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryRelationships object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryRelationships restrictionQueryRelationships = (RestrictionQueryRelationships) o;
return Objects.equals(this.roles, restrictionQueryRelationships.roles)
&& Objects.equals(
this.additionalProperties, restrictionQueryRelationships.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(roles, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryRelationships {\n");
sb.append(" roles: ").append(toIndentedString(roles)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,221 @@
/*
* 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.datadog.api.client.AbstractOpenApiSchema;
import com.datadog.api.client.JSON;
import com.datadog.api.client.UnparsedObject;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.JsonToken;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.MapperFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import jakarta.ws.rs.core.GenericType;
import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;

@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
@JsonDeserialize(
using =
RestrictionQueryResponseIncludedItem.RestrictionQueryResponseIncludedItemDeserializer.class)
@JsonSerialize(
using =
RestrictionQueryResponseIncludedItem.RestrictionQueryResponseIncludedItemSerializer.class)
public class RestrictionQueryResponseIncludedItem extends AbstractOpenApiSchema {
private static final Logger log =
Logger.getLogger(RestrictionQueryResponseIncludedItem.class.getName());

@JsonIgnore public boolean unparsed = false;

public static class RestrictionQueryResponseIncludedItemSerializer
extends StdSerializer<RestrictionQueryResponseIncludedItem> {
public RestrictionQueryResponseIncludedItemSerializer(
Class<RestrictionQueryResponseIncludedItem> t) {
super(t);
}

public RestrictionQueryResponseIncludedItemSerializer() {
this(null);
}

@Override
public void serialize(
RestrictionQueryResponseIncludedItem value, JsonGenerator jgen, SerializerProvider provider)
throws IOException, JsonProcessingException {
jgen.writeObject(value.getActualInstance());
}
}

public static class RestrictionQueryResponseIncludedItemDeserializer
extends StdDeserializer<RestrictionQueryResponseIncludedItem> {
public RestrictionQueryResponseIncludedItemDeserializer() {
this(RestrictionQueryResponseIncludedItem.class);
}

public RestrictionQueryResponseIncludedItemDeserializer(Class<?> vc) {
super(vc);
}

@Override
public RestrictionQueryResponseIncludedItem deserialize(
JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException {
JsonNode tree = jp.readValueAsTree();
Object deserialized = null;
Object tmp = null;
boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS);
int match = 0;
JsonToken token = tree.traverse(jp.getCodec()).nextToken();
// deserialize RestrictionQueryRole
try {
boolean attemptParsing = true;
// ensure that we respect type coercion as set on the client ObjectMapper
if (RestrictionQueryRole.class.equals(Integer.class)
|| RestrictionQueryRole.class.equals(Long.class)
|| RestrictionQueryRole.class.equals(Float.class)
|| RestrictionQueryRole.class.equals(Double.class)
|| RestrictionQueryRole.class.equals(Boolean.class)
|| RestrictionQueryRole.class.equals(String.class)) {
attemptParsing = typeCoercion;
if (!attemptParsing) {
attemptParsing |=
((RestrictionQueryRole.class.equals(Integer.class)
|| RestrictionQueryRole.class.equals(Long.class))
&& token == JsonToken.VALUE_NUMBER_INT);
attemptParsing |=
((RestrictionQueryRole.class.equals(Float.class)
|| RestrictionQueryRole.class.equals(Double.class))
&& (token == JsonToken.VALUE_NUMBER_FLOAT
|| token == JsonToken.VALUE_NUMBER_INT));
attemptParsing |=
(RestrictionQueryRole.class.equals(Boolean.class)
&& (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));
attemptParsing |=
(RestrictionQueryRole.class.equals(String.class)
&& token == JsonToken.VALUE_STRING);
}
}
if (attemptParsing) {
tmp = tree.traverse(jp.getCodec()).readValueAs(RestrictionQueryRole.class);
// TODO: there is no validation against JSON schema constraints
// (min, max, enum, pattern...), this does not perform a strict JSON
// validation, which means the 'match' count may be higher than it should be.
if (!((RestrictionQueryRole) tmp).unparsed) {
deserialized = tmp;
match++;
}
log.log(Level.FINER, "Input data matches schema 'RestrictionQueryRole'");
}
} catch (Exception e) {
// deserialization failed, continue
log.log(Level.FINER, "Input data does not match schema 'RestrictionQueryRole'", e);
}

RestrictionQueryResponseIncludedItem ret = new RestrictionQueryResponseIncludedItem();
if (match == 1) {
ret.setActualInstance(deserialized);
} else {
Map<String, Object> res =
new ObjectMapper()
.readValue(
tree.traverse(jp.getCodec()).readValueAsTree().toString(),
new TypeReference<Map<String, Object>>() {});
ret.setActualInstance(new UnparsedObject(res));
}
return ret;
}

/** Handle deserialization of the 'null' value. */
@Override
public RestrictionQueryResponseIncludedItem getNullValue(DeserializationContext ctxt)
throws JsonMappingException {
throw new JsonMappingException(
ctxt.getParser(), "RestrictionQueryResponseIncludedItem cannot be null");
}
}

// store a list of schema names defined in oneOf
public static final Map<String, GenericType> schemas = new HashMap<String, GenericType>();

public RestrictionQueryResponseIncludedItem() {
super("oneOf", Boolean.FALSE);
}

public RestrictionQueryResponseIncludedItem(RestrictionQueryRole o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}

static {
schemas.put("RestrictionQueryRole", new GenericType<RestrictionQueryRole>() {});
JSON.registerDescendants(
RestrictionQueryResponseIncludedItem.class, Collections.unmodifiableMap(schemas));
}

@Override
public Map<String, GenericType> getSchemas() {
return RestrictionQueryResponseIncludedItem.schemas;
}

/**
* Set the instance that matches the oneOf child schema, check the instance parameter is valid
* against the oneOf child schemas: RestrictionQueryRole
*
* <p>It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a
* composed schema (allOf, anyOf, oneOf).
*/
@Override
public void setActualInstance(Object instance) {
if (JSON.isInstanceOf(RestrictionQueryRole.class, instance, new HashSet<Class<?>>())) {
super.setActualInstance(instance);
return;
}

if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet<Class<?>>())) {
super.setActualInstance(instance);
return;
}
throw new RuntimeException("Invalid instance type. Must be RestrictionQueryRole");
}

/**
* Get the actual instance, which can be the following: RestrictionQueryRole
*
* @return The actual instance (RestrictionQueryRole)
*/
@Override
public Object getActualInstance() {
return super.getActualInstance();
}

/**
* Get the actual instance of `RestrictionQueryRole`. If the actual instance is not
* `RestrictionQueryRole`, the ClassCastException will be thrown.
*
* @return The actual instance of `RestrictionQueryRole`
* @throws ClassCastException if the instance is not `RestrictionQueryRole`
*/
public RestrictionQueryRole getRestrictionQueryRole() throws ClassCastException {
return (RestrictionQueryRole) super.getActualInstance();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Partial role object. */
@JsonPropertyOrder({
RestrictionQueryRole.JSON_PROPERTY_ATTRIBUTES,
RestrictionQueryRole.JSON_PROPERTY_ID,
RestrictionQueryRole.JSON_PROPERTY_TYPE
})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryRole {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_ATTRIBUTES = "attributes";
private RestrictionQueryRoleAttribute attributes;

public static final String JSON_PROPERTY_ID = "id";
private String id;

public static final String JSON_PROPERTY_TYPE = "type";
private String type = "roles";

public RestrictionQueryRole attributes(RestrictionQueryRoleAttribute attributes) {
this.attributes = attributes;
this.unparsed |= attributes.unparsed;
return this;
}

/**
* Attributes of the role for a restriction query.
*
* @return attributes
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ATTRIBUTES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RestrictionQueryRoleAttribute getAttributes() {
return attributes;
}

public void setAttributes(RestrictionQueryRoleAttribute attributes) {
this.attributes = attributes;
}

public RestrictionQueryRole id(String id) {
this.id = id;
return this;
}

/**
* ID of the role.
*
* @return id
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

/**
* Role resource type.
*
* @return type
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getType() {
return type;
}

/**
* 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<String, Object> 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 RestrictionQueryRole
*/
@JsonAnySetter
public RestrictionQueryRole putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryRole object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryRole restrictionQueryRole = (RestrictionQueryRole) o;
return Objects.equals(this.attributes, restrictionQueryRole.attributes)
&& Objects.equals(this.id, restrictionQueryRole.id)
&& Objects.equals(this.type, restrictionQueryRole.type)
&& Objects.equals(this.additionalProperties, restrictionQueryRole.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(attributes, id, type, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryRole {\n");
sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Attributes of the role for a restriction query. */
@JsonPropertyOrder({RestrictionQueryRoleAttribute.JSON_PROPERTY_NAME})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryRoleAttribute {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_NAME = "name";
private String name;

public RestrictionQueryRoleAttribute name(String name) {
this.name = name;
return this;
}

/**
* The role name.
*
* @return name
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

/**
* 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<String, Object> 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 RestrictionQueryRoleAttribute
*/
@JsonAnySetter
public RestrictionQueryRoleAttribute putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryRoleAttribute object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryRoleAttribute restrictionQueryRoleAttribute = (RestrictionQueryRoleAttribute) o;
return Objects.equals(this.name, restrictionQueryRoleAttribute.name)
&& Objects.equals(
this.additionalProperties, restrictionQueryRoleAttribute.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(name, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryRoleAttribute {\n");
sb.append(" name: ").append(toIndentedString(name)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
/*
* 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.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;

/** Response containing information about roles attached to a restriction query. */
@JsonPropertyOrder({RestrictionQueryRolesResponse.JSON_PROPERTY_DATA})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryRolesResponse {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_DATA = "data";
private List<RestrictionQueryRole> data = null;

public RestrictionQueryRolesResponse data(List<RestrictionQueryRole> data) {
this.data = data;
for (RestrictionQueryRole item : data) {
this.unparsed |= item.unparsed;
}
return this;
}

public RestrictionQueryRolesResponse addDataItem(RestrictionQueryRole dataItem) {
if (this.data == null) {
this.data = new ArrayList<>();
}
this.data.add(dataItem);
this.unparsed |= dataItem.unparsed;
return this;
}

/**
* Array of roles.
*
* @return data
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<RestrictionQueryRole> getData() {
return data;
}

public void setData(List<RestrictionQueryRole> data) {
this.data = data;
}

/**
* 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<String, Object> 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 RestrictionQueryRolesResponse
*/
@JsonAnySetter
public RestrictionQueryRolesResponse putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryRolesResponse object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryRolesResponse restrictionQueryRolesResponse = (RestrictionQueryRolesResponse) o;
return Objects.equals(this.data, restrictionQueryRolesResponse.data)
&& Objects.equals(
this.additionalProperties, restrictionQueryRolesResponse.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(data, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryRolesResponse {\n");
sb.append(" data: ").append(toIndentedString(data)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Attributes of the edited restriction query. */
@JsonPropertyOrder({RestrictionQueryUpdateAttributes.JSON_PROPERTY_RESTRICTION_QUERY})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryUpdateAttributes {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_RESTRICTION_QUERY = "restriction_query";
private String restrictionQuery;

public RestrictionQueryUpdateAttributes restrictionQuery(String restrictionQuery) {
this.restrictionQuery = restrictionQuery;
return this;
}

/**
* The restriction query.
*
* @return restrictionQuery
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RESTRICTION_QUERY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getRestrictionQuery() {
return restrictionQuery;
}

public void setRestrictionQuery(String restrictionQuery) {
this.restrictionQuery = restrictionQuery;
}

/**
* 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<String, Object> 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 RestrictionQueryUpdateAttributes
*/
@JsonAnySetter
public RestrictionQueryUpdateAttributes putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryUpdateAttributes object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryUpdateAttributes restrictionQueryUpdateAttributes =
(RestrictionQueryUpdateAttributes) o;
return Objects.equals(this.restrictionQuery, restrictionQueryUpdateAttributes.restrictionQuery)
&& Objects.equals(
this.additionalProperties, restrictionQueryUpdateAttributes.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(restrictionQuery, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryUpdateAttributes {\n");
sb.append(" restrictionQuery: ").append(toIndentedString(restrictionQuery)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Data related to the update of a restriction query. */
@JsonPropertyOrder({
RestrictionQueryUpdateData.JSON_PROPERTY_ATTRIBUTES,
RestrictionQueryUpdateData.JSON_PROPERTY_TYPE
})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryUpdateData {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_ATTRIBUTES = "attributes";
private RestrictionQueryUpdateAttributes attributes;

public static final String JSON_PROPERTY_TYPE = "type";
private LogsRestrictionQueriesType type = LogsRestrictionQueriesType.LOGS_RESTRICTION_QUERIES;

public RestrictionQueryUpdateData attributes(RestrictionQueryUpdateAttributes attributes) {
this.attributes = attributes;
this.unparsed |= attributes.unparsed;
return this;
}

/**
* Attributes of the edited restriction query.
*
* @return attributes
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ATTRIBUTES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RestrictionQueryUpdateAttributes getAttributes() {
return attributes;
}

public void setAttributes(RestrictionQueryUpdateAttributes attributes) {
this.attributes = attributes;
}

public RestrictionQueryUpdateData type(LogsRestrictionQueriesType type) {
this.type = type;
this.unparsed |= !type.isValid();
return this;
}

/**
* Restriction query resource type.
*
* @return type
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public LogsRestrictionQueriesType getType() {
return type;
}

public void setType(LogsRestrictionQueriesType type) {
if (!type.isValid()) {
this.unparsed = true;
}
this.type = type;
}

/**
* 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<String, Object> 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 RestrictionQueryUpdateData
*/
@JsonAnySetter
public RestrictionQueryUpdateData putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryUpdateData object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryUpdateData restrictionQueryUpdateData = (RestrictionQueryUpdateData) o;
return Objects.equals(this.attributes, restrictionQueryUpdateData.attributes)
&& Objects.equals(this.type, restrictionQueryUpdateData.type)
&& Objects.equals(
this.additionalProperties, restrictionQueryUpdateData.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(attributes, type, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryUpdateData {\n");
sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Update a restriction query. */
@JsonPropertyOrder({RestrictionQueryUpdatePayload.JSON_PROPERTY_DATA})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryUpdatePayload {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_DATA = "data";
private RestrictionQueryUpdateData data;

public RestrictionQueryUpdatePayload data(RestrictionQueryUpdateData data) {
this.data = data;
this.unparsed |= data.unparsed;
return this;
}

/**
* Data related to the update of a restriction query.
*
* @return data
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RestrictionQueryUpdateData getData() {
return data;
}

public void setData(RestrictionQueryUpdateData data) {
this.data = data;
}

/**
* 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<String, Object> 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 RestrictionQueryUpdatePayload
*/
@JsonAnySetter
public RestrictionQueryUpdatePayload putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryUpdatePayload object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryUpdatePayload restrictionQueryUpdatePayload = (RestrictionQueryUpdatePayload) o;
return Objects.equals(this.data, restrictionQueryUpdatePayload.data)
&& Objects.equals(
this.additionalProperties, restrictionQueryUpdatePayload.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(data, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryUpdatePayload {\n");
sb.append(" data: ").append(toIndentedString(data)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,227 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Restriction query object returned by the API. */
@JsonPropertyOrder({
RestrictionQueryWithRelationships.JSON_PROPERTY_ATTRIBUTES,
RestrictionQueryWithRelationships.JSON_PROPERTY_ID,
RestrictionQueryWithRelationships.JSON_PROPERTY_RELATIONSHIPS,
RestrictionQueryWithRelationships.JSON_PROPERTY_TYPE
})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryWithRelationships {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_ATTRIBUTES = "attributes";
private RestrictionQueryAttributes attributes;

public static final String JSON_PROPERTY_ID = "id";
private String id;

public static final String JSON_PROPERTY_RELATIONSHIPS = "relationships";
private RestrictionQueryRelationships relationships;

public static final String JSON_PROPERTY_TYPE = "type";
private LogsRestrictionQueriesType type = LogsRestrictionQueriesType.LOGS_RESTRICTION_QUERIES;

public RestrictionQueryWithRelationships attributes(RestrictionQueryAttributes attributes) {
this.attributes = attributes;
this.unparsed |= attributes.unparsed;
return this;
}

/**
* Attributes of the restriction query.
*
* @return attributes
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ATTRIBUTES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RestrictionQueryAttributes getAttributes() {
return attributes;
}

public void setAttributes(RestrictionQueryAttributes attributes) {
this.attributes = attributes;
}

public RestrictionQueryWithRelationships id(String id) {
this.id = id;
return this;
}

/**
* ID of the restriction query.
*
* @return id
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public RestrictionQueryWithRelationships relationships(
RestrictionQueryRelationships relationships) {
this.relationships = relationships;
this.unparsed |= relationships.unparsed;
return this;
}

/**
* Relationships of the restriction query object.
*
* @return relationships
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RELATIONSHIPS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RestrictionQueryRelationships getRelationships() {
return relationships;
}

public void setRelationships(RestrictionQueryRelationships relationships) {
this.relationships = relationships;
}

public RestrictionQueryWithRelationships type(LogsRestrictionQueriesType type) {
this.type = type;
this.unparsed |= !type.isValid();
return this;
}

/**
* Restriction query resource type.
*
* @return type
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public LogsRestrictionQueriesType getType() {
return type;
}

public void setType(LogsRestrictionQueriesType type) {
if (!type.isValid()) {
this.unparsed = true;
}
this.type = type;
}

/**
* 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<String, Object> 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 RestrictionQueryWithRelationships
*/
@JsonAnySetter
public RestrictionQueryWithRelationships putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryWithRelationships object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryWithRelationships restrictionQueryWithRelationships =
(RestrictionQueryWithRelationships) o;
return Objects.equals(this.attributes, restrictionQueryWithRelationships.attributes)
&& Objects.equals(this.id, restrictionQueryWithRelationships.id)
&& Objects.equals(this.relationships, restrictionQueryWithRelationships.relationships)
&& Objects.equals(this.type, restrictionQueryWithRelationships.type)
&& Objects.equals(
this.additionalProperties, restrictionQueryWithRelationships.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(attributes, id, relationships, type, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryWithRelationships {\n");
sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" relationships: ").append(toIndentedString(relationships)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,184 @@
/*
* 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.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;

/** Response containing information about a single restriction query. */
@JsonPropertyOrder({
RestrictionQueryWithRelationshipsResponse.JSON_PROPERTY_DATA,
RestrictionQueryWithRelationshipsResponse.JSON_PROPERTY_INCLUDED
})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryWithRelationshipsResponse {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_DATA = "data";
private RestrictionQueryWithRelationships data;

public static final String JSON_PROPERTY_INCLUDED = "included";
private List<RestrictionQueryResponseIncludedItem> included = null;

public RestrictionQueryWithRelationshipsResponse data(RestrictionQueryWithRelationships data) {
this.data = data;
this.unparsed |= data.unparsed;
return this;
}

/**
* Restriction query object returned by the API.
*
* @return data
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RestrictionQueryWithRelationships getData() {
return data;
}

public void setData(RestrictionQueryWithRelationships data) {
this.data = data;
}

public RestrictionQueryWithRelationshipsResponse included(
List<RestrictionQueryResponseIncludedItem> included) {
this.included = included;
for (RestrictionQueryResponseIncludedItem item : included) {
this.unparsed |= item.unparsed;
}
return this;
}

public RestrictionQueryWithRelationshipsResponse addIncludedItem(
RestrictionQueryResponseIncludedItem includedItem) {
if (this.included == null) {
this.included = new ArrayList<>();
}
this.included.add(includedItem);
this.unparsed |= includedItem.unparsed;
return this;
}

/**
* Array of objects related to the restriction query.
*
* @return included
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INCLUDED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<RestrictionQueryResponseIncludedItem> getIncluded() {
return included;
}

public void setIncluded(List<RestrictionQueryResponseIncludedItem> included) {
this.included = included;
}

/**
* 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<String, Object> 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 RestrictionQueryWithRelationshipsResponse
*/
@JsonAnySetter
public RestrictionQueryWithRelationshipsResponse putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryWithRelationshipsResponse object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryWithRelationshipsResponse restrictionQueryWithRelationshipsResponse =
(RestrictionQueryWithRelationshipsResponse) o;
return Objects.equals(this.data, restrictionQueryWithRelationshipsResponse.data)
&& Objects.equals(this.included, restrictionQueryWithRelationshipsResponse.included)
&& Objects.equals(
this.additionalProperties,
restrictionQueryWithRelationshipsResponse.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(data, included, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryWithRelationshipsResponse {\n");
sb.append(" data: ").append(toIndentedString(data)).append("\n");
sb.append(" included: ").append(toIndentedString(included)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Restriction query object returned by the API. */
@JsonPropertyOrder({
RestrictionQueryWithoutRelationships.JSON_PROPERTY_ATTRIBUTES,
RestrictionQueryWithoutRelationships.JSON_PROPERTY_ID,
RestrictionQueryWithoutRelationships.JSON_PROPERTY_TYPE
})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryWithoutRelationships {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_ATTRIBUTES = "attributes";
private RestrictionQueryAttributes attributes;

public static final String JSON_PROPERTY_ID = "id";
private String id;

public static final String JSON_PROPERTY_TYPE = "type";
private String type = "logs_restriction_queries";

public RestrictionQueryWithoutRelationships attributes(RestrictionQueryAttributes attributes) {
this.attributes = attributes;
this.unparsed |= attributes.unparsed;
return this;
}

/**
* Attributes of the restriction query.
*
* @return attributes
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ATTRIBUTES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RestrictionQueryAttributes getAttributes() {
return attributes;
}

public void setAttributes(RestrictionQueryAttributes attributes) {
this.attributes = attributes;
}

public RestrictionQueryWithoutRelationships id(String id) {
this.id = id;
return this;
}

/**
* ID of the restriction query.
*
* @return id
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

/**
* Restriction queries type.
*
* @return type
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getType() {
return type;
}

/**
* 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<String, Object> 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 RestrictionQueryWithoutRelationships
*/
@JsonAnySetter
public RestrictionQueryWithoutRelationships putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryWithoutRelationships object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryWithoutRelationships restrictionQueryWithoutRelationships =
(RestrictionQueryWithoutRelationships) o;
return Objects.equals(this.attributes, restrictionQueryWithoutRelationships.attributes)
&& Objects.equals(this.id, restrictionQueryWithoutRelationships.id)
&& Objects.equals(this.type, restrictionQueryWithoutRelationships.type)
&& Objects.equals(
this.additionalProperties, restrictionQueryWithoutRelationships.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(attributes, id, type, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryWithoutRelationships {\n");
sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 ");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
/*
* 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/** Response containing information about a single restriction query. */
@JsonPropertyOrder({RestrictionQueryWithoutRelationshipsResponse.JSON_PROPERTY_DATA})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
public class RestrictionQueryWithoutRelationshipsResponse {
@JsonIgnore public boolean unparsed = false;
public static final String JSON_PROPERTY_DATA = "data";
private RestrictionQueryWithoutRelationships data;

public RestrictionQueryWithoutRelationshipsResponse data(
RestrictionQueryWithoutRelationships data) {
this.data = data;
this.unparsed |= data.unparsed;
return this;
}

/**
* Restriction query object returned by the API.
*
* @return data
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public RestrictionQueryWithoutRelationships getData() {
return data;
}

public void setData(RestrictionQueryWithoutRelationships data) {
this.data = data;
}

/**
* 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<String, Object> 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 RestrictionQueryWithoutRelationshipsResponse
*/
@JsonAnySetter
public RestrictionQueryWithoutRelationshipsResponse putAdditionalProperty(
String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}

/**
* Return the additional (undeclared) property.
*
* @return The additional properties
*/
@JsonAnyGetter
public Map<String, Object> 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 RestrictionQueryWithoutRelationshipsResponse object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RestrictionQueryWithoutRelationshipsResponse restrictionQueryWithoutRelationshipsResponse =
(RestrictionQueryWithoutRelationshipsResponse) o;
return Objects.equals(this.data, restrictionQueryWithoutRelationshipsResponse.data)
&& Objects.equals(
this.additionalProperties,
restrictionQueryWithoutRelationshipsResponse.additionalProperties);
}

@Override
public int hashCode() {
return Objects.hash(data, additionalProperties);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RestrictionQueryWithoutRelationshipsResponse {\n");
sb.append(" data: ").append(toIndentedString(data)).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 ");
}
}