Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -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"
}
11 changes: 9 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> {

private static final Set<String> allowedValues = new HashSet<String>(Arrays.asList("v3"));
private static final Set<String> allowedValues =
new HashSet<String>(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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down