Skip to content

Commit 95865e4

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 0cc5bc19 of spec repo
1 parent dd53298 commit 95865e4

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-07 12:19:29.110818",
8-
"spec_repo_commit": "fa2473ca"
7+
"regenerated": "2025-07-07 13:54:11.222191",
8+
"spec_repo_commit": "0cc5bc19"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-07-07 12:19:29.127040",
13-
"spec_repo_commit": "fa2473ca"
12+
"regenerated": "2025-07-07 13:54:11.239091",
13+
"spec_repo_commit": "0cc5bc19"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13623,14 +13623,21 @@ components:
1362313623
type: string
1362413624
type: object
1362513625
EntityV3APIVersion:
13626-
description: The schema version of entity type. The field is known as schema-version
13627-
in the previous version.
13626+
description: The version of the schema data that was used to populate this entity's
13627+
data. This could be via the API, Terraform, or YAML file in a repository.
13628+
The field is known as schema-version in the previous version.
1362813629
enum:
1362913630
- v3
13631+
- v2.2
13632+
- v2.1
13633+
- v2
1363013634
example: v3
1363113635
type: string
1363213636
x-enum-varnames:
1363313637
- V3
13638+
- V2_2
13639+
- V2_1
13640+
- V2
1363413641
EntityV3DatadogCodeLocationItem:
1363513642
additionalProperties: false
1363613643
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)