Skip to content

Commit 29612b4

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit a365c01 of spec repo
1 parent 6a4db75 commit 29612b4

File tree

50 files changed

+390
-284
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+390
-284
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 188 additions & 2 deletions
Large diffs are not rendered by default.

examples/v2/observability-pipelines/ValidatePipeline_884022323.java

Lines changed: 0 additions & 90 deletions
This file was deleted.

src/main/java/com/datadog/api/client/v2/model/CreateConnectionRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import java.util.Map;
1717
import java.util.Objects;
1818

19-
/** */
19+
/** Request body for creating a new data source connection for an entity. */
2020
@JsonPropertyOrder({CreateConnectionRequest.JSON_PROPERTY_DATA})
2121
@jakarta.annotation.Generated(
2222
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
@@ -32,7 +32,7 @@ public CreateConnectionRequest data(CreateConnectionRequestData data) {
3232
}
3333

3434
/**
35-
* Getdata
35+
* The data object containing the resource type and attributes for creating a new connection.
3636
*
3737
* @return data
3838
*/

src/main/java/com/datadog/api/client/v2/model/CreateConnectionRequestData.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import java.util.Map;
1818
import java.util.Objects;
1919

20-
/** */
20+
/** The data object containing the resource type and attributes for creating a new connection. */
2121
@JsonPropertyOrder({
2222
CreateConnectionRequestData.JSON_PROPERTY_ATTRIBUTES,
2323
CreateConnectionRequestData.JSON_PROPERTY_ID,
@@ -53,7 +53,7 @@ public CreateConnectionRequestData attributes(CreateConnectionRequestDataAttribu
5353
}
5454

5555
/**
56-
* Getattributes
56+
* Attributes defining the data source connection, including join configuration and custom fields.
5757
*
5858
* @return attributes
5959
*/
@@ -74,7 +74,7 @@ public CreateConnectionRequestData id(String id) {
7474
}
7575

7676
/**
77-
* Getid
77+
* Unique identifier for the new connection resource.
7878
*
7979
* @return id
8080
*/

src/main/java/com/datadog/api/client/v2/model/CreateConnectionRequestDataAttributes.java

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
import java.util.Map;
2020
import java.util.Objects;
2121

22-
/** */
22+
/**
23+
* Attributes defining the data source connection, including join configuration and custom fields.
24+
*/
2325
@JsonPropertyOrder({
2426
CreateConnectionRequestDataAttributes.JSON_PROPERTY_FIELDS,
2527
CreateConnectionRequestDataAttributes.JSON_PROPERTY_JOIN_ATTRIBUTE,
@@ -78,7 +80,7 @@ public CreateConnectionRequestDataAttributes addFieldsItem(
7880
}
7981

8082
/**
81-
* Getfields
83+
* List of custom attribute fields to import from the data source.
8284
*
8385
* @return fields
8486
*/
@@ -99,7 +101,7 @@ public CreateConnectionRequestDataAttributes joinAttribute(String joinAttribute)
99101
}
100102

101103
/**
102-
* GetjoinAttribute
104+
* The attribute in the data source used to join records with the entity.
103105
*
104106
* @return joinAttribute
105107
*/
@@ -119,7 +121,8 @@ public CreateConnectionRequestDataAttributes joinType(String joinType) {
119121
}
120122

121123
/**
122-
* GetjoinType
124+
* The type of join key used to link the data source to the entity (for example, email or
125+
* user_id).
123126
*
124127
* @return joinType
125128
*/
@@ -147,7 +150,7 @@ public CreateConnectionRequestDataAttributes putMetadataItem(String key, String
147150
}
148151

149152
/**
150-
* Getmetadata
153+
* Additional key-value metadata associated with the connection.
151154
*
152155
* @return metadata
153156
*/
@@ -168,7 +171,7 @@ public CreateConnectionRequestDataAttributes type(String type) {
168171
}
169172

170173
/**
171-
* Gettype
174+
* The type of data source connection (for example, ref_table).
172175
*
173176
* @return type
174177
*/

src/main/java/com/datadog/api/client/v2/model/CreateConnectionRequestDataAttributesFieldsItems.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import java.util.Map;
2020
import java.util.Objects;
2121

22-
/** */
22+
/** Definition of a custom attribute field to import from a data source connection. */
2323
@JsonPropertyOrder({
2424
CreateConnectionRequestDataAttributesFieldsItems.JSON_PROPERTY_DESCRIPTION,
2525
CreateConnectionRequestDataAttributesFieldsItems.JSON_PROPERTY_DISPLAY_NAME,
@@ -68,7 +68,7 @@ public CreateConnectionRequestDataAttributesFieldsItems description(String descr
6868
}
6969

7070
/**
71-
* Getdescription
71+
* Human-readable explanation of what the field represents.
7272
*
7373
* @return description
7474
*/
@@ -89,7 +89,7 @@ public CreateConnectionRequestDataAttributesFieldsItems displayName(String displ
8989
}
9090

9191
/**
92-
* GetdisplayName
92+
* The human-readable label for the field shown in the UI.
9393
*
9494
* @return displayName
9595
*/
@@ -118,7 +118,7 @@ public CreateConnectionRequestDataAttributesFieldsItems addGroupsItem(String gro
118118
}
119119

120120
/**
121-
* Getgroups
121+
* List of group labels used to categorize the field.
122122
*
123123
* @return groups
124124
*/
@@ -139,7 +139,7 @@ public CreateConnectionRequestDataAttributesFieldsItems id(String id) {
139139
}
140140

141141
/**
142-
* Getid
142+
* The unique identifier for the field within the connection.
143143
*
144144
* @return id
145145
*/
@@ -159,7 +159,7 @@ public CreateConnectionRequestDataAttributesFieldsItems sourceName(String source
159159
}
160160

161161
/**
162-
* GetsourceName
162+
* The name of the column or attribute in the source data system that maps to this field.
163163
*
164164
* @return sourceName
165165
*/
@@ -179,7 +179,7 @@ public CreateConnectionRequestDataAttributesFieldsItems type(String type) {
179179
}
180180

181181
/**
182-
* Gettype
182+
* The data type of the field (for example, string or number).
183183
*
184184
* @return type
185185
*/

src/main/java/com/datadog/api/client/v2/model/FacetInfoRequest.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
import java.util.Map;
1717
import java.util.Objects;
1818

19-
/** */
19+
/**
20+
* Request body for retrieving facet value information for a specified attribute with optional
21+
* filtering.
22+
*/
2023
@JsonPropertyOrder({FacetInfoRequest.JSON_PROPERTY_DATA})
2124
@jakarta.annotation.Generated(
2225
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
@@ -32,7 +35,7 @@ public FacetInfoRequest data(FacetInfoRequestData data) {
3235
}
3336

3437
/**
35-
* Getdata
38+
* The data object containing the resource type and attributes for the facet info request.
3639
*
3740
* @return data
3841
*/

src/main/java/com/datadog/api/client/v2/model/FacetInfoRequestData.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import java.util.Map;
1818
import java.util.Objects;
1919

20-
/** */
20+
/** The data object containing the resource type and attributes for the facet info request. */
2121
@JsonPropertyOrder({
2222
FacetInfoRequestData.JSON_PROPERTY_ATTRIBUTES,
2323
FacetInfoRequestData.JSON_PROPERTY_ID,
@@ -52,7 +52,8 @@ public FacetInfoRequestData attributes(FacetInfoRequestDataAttributes attributes
5252
}
5353

5454
/**
55-
* Getattributes
55+
* Attributes for the facet info request, specifying which facet to query and optional filters to
56+
* apply.
5657
*
5758
* @return attributes
5859
*/
@@ -73,7 +74,7 @@ public FacetInfoRequestData id(String id) {
7374
}
7475

7576
/**
76-
* Getid
77+
* Unique identifier for the facet info request resource.
7778
*
7879
* @return id
7980
*/

src/main/java/com/datadog/api/client/v2/model/FacetInfoRequestDataAttributes.java

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
import java.util.Map;
1818
import java.util.Objects;
1919

20-
/** */
20+
/**
21+
* Attributes for the facet info request, specifying which facet to query and optional filters to
22+
* apply.
23+
*/
2124
@JsonPropertyOrder({
2225
FacetInfoRequestDataAttributes.JSON_PROPERTY_FACET_ID,
2326
FacetInfoRequestDataAttributes.JSON_PROPERTY_LIMIT,
@@ -56,7 +59,7 @@ public FacetInfoRequestDataAttributes facetId(String facetId) {
5659
}
5760

5861
/**
59-
* GetfacetId
62+
* The identifier of the facet attribute to retrieve value information for.
6063
*
6164
* @return facetId
6265
*/
@@ -76,7 +79,7 @@ public FacetInfoRequestDataAttributes limit(Long limit) {
7679
}
7780

7881
/**
79-
* Getlimit
82+
* Maximum number of facet values to return in the response.
8083
*
8184
* @return limit
8285
*/
@@ -97,7 +100,8 @@ public FacetInfoRequestDataAttributes search(FacetInfoRequestDataAttributesSearc
97100
}
98101

99102
/**
100-
* Getsearch
103+
* Query-based search configuration for filtering the audience context when retrieving facet
104+
* values.
101105
*
102106
* @return search
103107
*/
@@ -120,7 +124,7 @@ public FacetInfoRequestDataAttributes termSearch(
120124
}
121125

122126
/**
123-
* GettermSearch
127+
* Term-level search configuration for filtering facet values by an exact or partial term match.
124128
*
125129
* @return termSearch
126130
*/

src/main/java/com/datadog/api/client/v2/model/FacetInfoRequestDataAttributesSearch.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
import java.util.Map;
1717
import java.util.Objects;
1818

19-
/** */
19+
/**
20+
* Query-based search configuration for filtering the audience context when retrieving facet values.
21+
*/
2022
@JsonPropertyOrder({FacetInfoRequestDataAttributesSearch.JSON_PROPERTY_QUERY})
2123
@jakarta.annotation.Generated(
2224
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
@@ -31,7 +33,7 @@ public FacetInfoRequestDataAttributesSearch query(String query) {
3133
}
3234

3335
/**
34-
* Getquery
36+
* The filter expression used to scope the audience from which facet values are retrieved.
3537
*
3638
* @return query
3739
*/

0 commit comments

Comments
 (0)