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:53:16.203"
"spec_repo_commit": "20279f4",
"generated": "2025-07-18 10:22:50.343"
}
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
2 changes: 1 addition & 1 deletion lib/datadog_api_client/v2/models/entity_v3_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module DatadogAPIClient::V2
class EntityV3API
include BaseGenericModel

# 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.
attr_reader :api_version

# Datadog product integrations for the API entity.
Expand Down
5 changes: 4 additions & 1 deletion lib/datadog_api_client/v2/models/entity_v3_api_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@
require 'time'

module DatadogAPIClient::V2
# 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.
class EntityV3APIVersion
include BaseEnumModel

V3 = "v3".freeze
V2_2 = "v2.2".freeze
V2_1 = "v2.1".freeze
V2 = "v2".freeze
end
end
2 changes: 1 addition & 1 deletion lib/datadog_api_client/v2/models/entity_v3_datastore.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module DatadogAPIClient::V2
class EntityV3Datastore
include BaseGenericModel

# 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.
attr_reader :api_version

# Datadog product integrations for the datastore entity.
Expand Down
2 changes: 1 addition & 1 deletion lib/datadog_api_client/v2/models/entity_v3_queue.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module DatadogAPIClient::V2
class EntityV3Queue
include BaseGenericModel

# 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.
attr_reader :api_version

# Datadog product integrations for the datastore entity.
Expand Down
2 changes: 1 addition & 1 deletion lib/datadog_api_client/v2/models/entity_v3_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module DatadogAPIClient::V2
class EntityV3Service
include BaseGenericModel

# 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.
attr_reader :api_version

# Datadog product integrations for the service entity.
Expand Down
2 changes: 1 addition & 1 deletion lib/datadog_api_client/v2/models/entity_v3_system.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module DatadogAPIClient::V2
class EntityV3System
include BaseGenericModel

# 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.
attr_reader :api_version

# Datadog product integrations for the service entity.
Expand Down
Loading