Skip to content

Commit b7b5edd

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 21cfefb8 of spec repo
1 parent 37bc2d2 commit b7b5edd

File tree

8 files changed

+36
-18
lines changed

8 files changed

+36
-18
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-07-08 19:08:08.429204",
8-
"spec_repo_commit": "7b042e12"
7+
"regenerated": "2025-07-09 17:16:51.764176",
8+
"spec_repo_commit": "21cfefb8"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-07-08 19:08:08.445031",
13-
"spec_repo_commit": "7b042e12"
12+
"regenerated": "2025-07-09 17:16:51.781076",
13+
"spec_repo_commit": "21cfefb8"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13624,14 +13624,21 @@ components:
1362413624
type: string
1362513625
type: object
1362613626
EntityV3APIVersion:
13627-
description: The schema version of entity type. The field is known as schema-version
13628-
in the previous version.
13627+
description: The version of the schema data that was used to populate this entity's
13628+
data. This could be via the API, Terraform, or YAML file in a repository.
13629+
The field is known as schema-version in the previous version.
1362913630
enum:
1363013631
- v3
13632+
- v2.2
13633+
- v2.1
13634+
- v2
1363113635
example: v3
1363213636
type: string
1363313637
x-enum-varnames:
1363413638
- V3
13639+
- V2_2
13640+
- V2_1
13641+
- V2
1363513642
EntityV3DatadogCodeLocationItem:
1363613643
additionalProperties: false
1363713644
description: Code location item.

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ public EntityV3API apiVersion(EntityV3APIVersion apiVersion) {
7373
}
7474

7575
/**
76-
* The schema version of entity type. The field is known as schema-version in the previous
77-
* version.
76+
* The version of the schema data that was used to populate this entity's data. This could be via
77+
* the API, Terraform, or YAML file in a repository. The field is known as schema-version in the
78+
* previous version.
7879
*
7980
* @return apiVersion
8081
*/

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

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,20 @@
1919
import java.util.Set;
2020

2121
/**
22-
* The schema version of entity type. The field is known as schema-version in the previous version.
22+
* The version of the schema data that was used to populate this entity's data. This could be via
23+
* the API, Terraform, or YAML file in a repository. The field is known as schema-version in the
24+
* previous version.
2325
*/
2426
@JsonSerialize(using = EntityV3APIVersion.EntityV3APIVersionSerializer.class)
2527
public class EntityV3APIVersion extends ModelEnum<String> {
2628

27-
private static final Set<String> allowedValues = new HashSet<String>(Arrays.asList("v3"));
29+
private static final Set<String> allowedValues =
30+
new HashSet<String>(Arrays.asList("v3", "v2.2", "v2.1", "v2"));
2831

2932
public static final EntityV3APIVersion V3 = new EntityV3APIVersion("v3");
33+
public static final EntityV3APIVersion V2_2 = new EntityV3APIVersion("v2.2");
34+
public static final EntityV3APIVersion V2_1 = new EntityV3APIVersion("v2.1");
35+
public static final EntityV3APIVersion V2 = new EntityV3APIVersion("v2");
3036

3137
EntityV3APIVersion(String value) {
3238
super(value, allowedValues);

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ public EntityV3Datastore apiVersion(EntityV3APIVersion apiVersion) {
7373
}
7474

7575
/**
76-
* The schema version of entity type. The field is known as schema-version in the previous
77-
* version.
76+
* The version of the schema data that was used to populate this entity's data. This could be via
77+
* the API, Terraform, or YAML file in a repository. The field is known as schema-version in the
78+
* previous version.
7879
*
7980
* @return apiVersion
8081
*/

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ public EntityV3Queue apiVersion(EntityV3APIVersion apiVersion) {
7373
}
7474

7575
/**
76-
* The schema version of entity type. The field is known as schema-version in the previous
77-
* version.
76+
* The version of the schema data that was used to populate this entity's data. This could be via
77+
* the API, Terraform, or YAML file in a repository. The field is known as schema-version in the
78+
* previous version.
7879
*
7980
* @return apiVersion
8081
*/

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ public EntityV3Service apiVersion(EntityV3APIVersion apiVersion) {
7373
}
7474

7575
/**
76-
* The schema version of entity type. The field is known as schema-version in the previous
77-
* version.
76+
* The version of the schema data that was used to populate this entity's data. This could be via
77+
* the API, Terraform, or YAML file in a repository. The field is known as schema-version in the
78+
* previous version.
7879
*
7980
* @return apiVersion
8081
*/

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ public EntityV3System apiVersion(EntityV3APIVersion apiVersion) {
7373
}
7474

7575
/**
76-
* The schema version of entity type. The field is known as schema-version in the previous
77-
* version.
76+
* The version of the schema data that was used to populate this entity's data. This could be via
77+
* the API, Terraform, or YAML file in a repository. The field is known as schema-version in the
78+
* previous version.
7879
*
7980
* @return apiVersion
8081
*/

0 commit comments

Comments
 (0)