From 3b199fd22f6b966c4b6200742ecfa641aecd1953 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Fri, 18 Jul 2025 10:24:13 +0000 Subject: [PATCH] Regenerate client from commit 20279f4 of spec repo --- .generated-info | 4 ++-- .generator/schemas/v2/openapi.yaml | 11 +++++++++-- .../com/datadog/api/client/v2/model/EntityV3API.java | 5 +++-- .../api/client/v2/model/EntityV3APIVersion.java | 10 ++++++++-- .../api/client/v2/model/EntityV3Datastore.java | 5 +++-- .../datadog/api/client/v2/model/EntityV3Queue.java | 5 +++-- .../datadog/api/client/v2/model/EntityV3Service.java | 5 +++-- .../datadog/api/client/v2/model/EntityV3System.java | 5 +++-- 8 files changed, 34 insertions(+), 16 deletions(-) diff --git a/.generated-info b/.generated-info index f1330f6f0ac..805e335d15f 100644 --- a/.generated-info +++ b/.generated-info @@ -1,4 +1,4 @@ { - "spec_repo_commit": "f2ae7eb", - "generated": "2025-07-17 19:54:51.613" + "spec_repo_commit": "20279f4", + "generated": "2025-07-18 10:24:13.081" } diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 725b65b41ac..ee3c8b9b971 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -13911,14 +13911,21 @@ components: type: string type: object EntityV3APIVersion: - description: The schema version of entity type. The field is known as schema-version - in the previous version. + description: The version of the schema data that was used to populate this entity's + data. This could be via the API, Terraform, or YAML file in a repository. + The field is known as schema-version in the previous version. enum: - v3 + - v2.2 + - v2.1 + - v2 example: v3 type: string x-enum-varnames: - V3 + - V2_2 + - V2_1 + - V2 EntityV3DatadogCodeLocationItem: additionalProperties: false description: Code location item. diff --git a/src/main/java/com/datadog/api/client/v2/model/EntityV3API.java b/src/main/java/com/datadog/api/client/v2/model/EntityV3API.java index dad16218a12..870187ae7a1 100644 --- a/src/main/java/com/datadog/api/client/v2/model/EntityV3API.java +++ b/src/main/java/com/datadog/api/client/v2/model/EntityV3API.java @@ -73,8 +73,9 @@ public EntityV3API apiVersion(EntityV3APIVersion apiVersion) { } /** - * The schema version of entity type. The field is known as schema-version in the previous - * version. + * The version of the schema data that was used to populate this entity's data. This could be via + * the API, Terraform, or YAML file in a repository. The field is known as schema-version in the + * previous version. * * @return apiVersion */ diff --git a/src/main/java/com/datadog/api/client/v2/model/EntityV3APIVersion.java b/src/main/java/com/datadog/api/client/v2/model/EntityV3APIVersion.java index 1e898cea346..4aa1e7c1564 100644 --- a/src/main/java/com/datadog/api/client/v2/model/EntityV3APIVersion.java +++ b/src/main/java/com/datadog/api/client/v2/model/EntityV3APIVersion.java @@ -19,14 +19,20 @@ import java.util.Set; /** - * The schema version of entity type. The field is known as schema-version in the previous version. + * The version of the schema data that was used to populate this entity's data. This could be via + * the API, Terraform, or YAML file in a repository. The field is known as schema-version in the + * previous version. */ @JsonSerialize(using = EntityV3APIVersion.EntityV3APIVersionSerializer.class) public class EntityV3APIVersion extends ModelEnum { - private static final Set allowedValues = new HashSet(Arrays.asList("v3")); + private static final Set allowedValues = + new HashSet(Arrays.asList("v3", "v2.2", "v2.1", "v2")); public static final EntityV3APIVersion V3 = new EntityV3APIVersion("v3"); + public static final EntityV3APIVersion V2_2 = new EntityV3APIVersion("v2.2"); + public static final EntityV3APIVersion V2_1 = new EntityV3APIVersion("v2.1"); + public static final EntityV3APIVersion V2 = new EntityV3APIVersion("v2"); EntityV3APIVersion(String value) { super(value, allowedValues); diff --git a/src/main/java/com/datadog/api/client/v2/model/EntityV3Datastore.java b/src/main/java/com/datadog/api/client/v2/model/EntityV3Datastore.java index e4ef5986463..11d2598db08 100644 --- a/src/main/java/com/datadog/api/client/v2/model/EntityV3Datastore.java +++ b/src/main/java/com/datadog/api/client/v2/model/EntityV3Datastore.java @@ -73,8 +73,9 @@ public EntityV3Datastore apiVersion(EntityV3APIVersion apiVersion) { } /** - * The schema version of entity type. The field is known as schema-version in the previous - * version. + * The version of the schema data that was used to populate this entity's data. This could be via + * the API, Terraform, or YAML file in a repository. The field is known as schema-version in the + * previous version. * * @return apiVersion */ diff --git a/src/main/java/com/datadog/api/client/v2/model/EntityV3Queue.java b/src/main/java/com/datadog/api/client/v2/model/EntityV3Queue.java index 2b66825b6a4..59a4fd81dc7 100644 --- a/src/main/java/com/datadog/api/client/v2/model/EntityV3Queue.java +++ b/src/main/java/com/datadog/api/client/v2/model/EntityV3Queue.java @@ -73,8 +73,9 @@ public EntityV3Queue apiVersion(EntityV3APIVersion apiVersion) { } /** - * The schema version of entity type. The field is known as schema-version in the previous - * version. + * The version of the schema data that was used to populate this entity's data. This could be via + * the API, Terraform, or YAML file in a repository. The field is known as schema-version in the + * previous version. * * @return apiVersion */ diff --git a/src/main/java/com/datadog/api/client/v2/model/EntityV3Service.java b/src/main/java/com/datadog/api/client/v2/model/EntityV3Service.java index 7354b31e38f..ed07d397ba4 100644 --- a/src/main/java/com/datadog/api/client/v2/model/EntityV3Service.java +++ b/src/main/java/com/datadog/api/client/v2/model/EntityV3Service.java @@ -73,8 +73,9 @@ public EntityV3Service apiVersion(EntityV3APIVersion apiVersion) { } /** - * The schema version of entity type. The field is known as schema-version in the previous - * version. + * The version of the schema data that was used to populate this entity's data. This could be via + * the API, Terraform, or YAML file in a repository. The field is known as schema-version in the + * previous version. * * @return apiVersion */ diff --git a/src/main/java/com/datadog/api/client/v2/model/EntityV3System.java b/src/main/java/com/datadog/api/client/v2/model/EntityV3System.java index 6ae6559ec61..1e898146530 100644 --- a/src/main/java/com/datadog/api/client/v2/model/EntityV3System.java +++ b/src/main/java/com/datadog/api/client/v2/model/EntityV3System.java @@ -73,8 +73,9 @@ public EntityV3System apiVersion(EntityV3APIVersion apiVersion) { } /** - * The schema version of entity type. The field is known as schema-version in the previous - * version. + * The version of the schema data that was used to populate this entity's data. This could be via + * the API, Terraform, or YAML file in a repository. The field is known as schema-version in the + * previous version. * * @return apiVersion */