From 67139305012d4c5668888ba413710e6d580ff800 Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Tue, 11 Mar 2025 13:24:51 -0400
Subject: [PATCH 01/17] Bump datadog_api_client to 2.31.1.dev.1 (#2288)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 lib/datadog_api_client/version.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/datadog_api_client/version.rb b/lib/datadog_api_client/version.rb
index 66bc61370ab..21f931a58c7 100644
--- a/lib/datadog_api_client/version.rb
+++ b/lib/datadog_api_client/version.rb
@@ -1,5 +1,5 @@
 # Define library version.
 
 module DatadogAPIClient
-  VERSION = '2.31.1'
+  VERSION = '2.31.1.dev.1'
 end

From b22ced43fe5f127a9a9b70219072754e089130f8 Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Thu, 13 Mar 2025 09:57:46 +0000
Subject: [PATCH 02/17] [SEC-19484] Add datasource to rule model (#2281)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                             |  8 +++---
 .generator/schemas/v2/openapi.yaml            | 13 +++++++++
 lib/datadog_api_client/inflector.rb           |  1 +
 ...ecurity_monitoring_standard_data_source.rb | 27 +++++++++++++++++++
 ...security_monitoring_standard_rule_query.rb | 12 ++++++++-
 5 files changed, 56 insertions(+), 5 deletions(-)
 create mode 100644 lib/datadog_api_client/v2/models/security_monitoring_standard_data_source.rb

diff --git a/.apigentools-info b/.apigentools-info
index d9a629311c8..2f3a792c956 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-11 16:30:31.555356",
-            "spec_repo_commit": "baf04a80"
+            "regenerated": "2025-03-13 09:11:27.618467",
+            "spec_repo_commit": "a1fc1148"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-11 16:30:31.570839",
-            "spec_repo_commit": "baf04a80"
+            "regenerated": "2025-03-13 09:11:27.634732",
+            "spec_repo_commit": "a1fc1148"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index 8f02bf6313b..2737d23c346 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -27642,6 +27642,17 @@ components:
       x-enum-varnames:
       - TIMESTAMP_ASCENDING
       - TIMESTAMP_DESCENDING
+    SecurityMonitoringStandardDataSource:
+      default: logs
+      description: Source of events, either logs or audit trail.
+      enum:
+      - logs
+      - audit
+      example: logs
+      type: string
+      x-enum-varnames:
+      - LOGS
+      - AUDIT
     SecurityMonitoringStandardRuleCreatePayload:
       description: Create a new rule.
       properties:
@@ -27809,6 +27820,8 @@ components:
       properties:
         aggregation:
           $ref: '#/components/schemas/SecurityMonitoringRuleQueryAggregation'
+        dataSource:
+          $ref: '#/components/schemas/SecurityMonitoringStandardDataSource'
         distinctFields:
           description: Field for which the cardinality is measured. Sent as an array.
           items:
diff --git a/lib/datadog_api_client/inflector.rb b/lib/datadog_api_client/inflector.rb
index 2d4ee2d774e..124d7b77060 100644
--- a/lib/datadog_api_client/inflector.rb
+++ b/lib/datadog_api_client/inflector.rb
@@ -2643,6 +2643,7 @@ def overrides
           "v2.security_monitoring_signal_triage_update_data" => "SecurityMonitoringSignalTriageUpdateData",
           "v2.security_monitoring_signal_triage_update_response" => "SecurityMonitoringSignalTriageUpdateResponse",
           "v2.security_monitoring_signal_type" => "SecurityMonitoringSignalType",
+          "v2.security_monitoring_standard_data_source" => "SecurityMonitoringStandardDataSource",
           "v2.security_monitoring_standard_rule_create_payload" => "SecurityMonitoringStandardRuleCreatePayload",
           "v2.security_monitoring_standard_rule_payload" => "SecurityMonitoringStandardRulePayload",
           "v2.security_monitoring_standard_rule_query" => "SecurityMonitoringStandardRuleQuery",
diff --git a/lib/datadog_api_client/v2/models/security_monitoring_standard_data_source.rb b/lib/datadog_api_client/v2/models/security_monitoring_standard_data_source.rb
new file mode 100644
index 00000000000..f2ee764b6ac
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/security_monitoring_standard_data_source.rb
@@ -0,0 +1,27 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Source of events, either logs or audit trail.
+  class SecurityMonitoringStandardDataSource
+    include BaseEnumModel
+
+    LOGS = "logs".freeze
+    AUDIT = "audit".freeze
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb b/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb
index dad7f6b58a3..fc9a785e74f 100644
--- a/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb
+++ b/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb
@@ -24,6 +24,9 @@ class SecurityMonitoringStandardRuleQuery
     # The aggregation type.
     attr_accessor :aggregation
 
+    # Source of events, either logs or audit trail.
+    attr_accessor :data_source
+
     # Field for which the cardinality is measured. Sent as an array.
     attr_accessor :distinct_fields
 
@@ -53,6 +56,7 @@ class SecurityMonitoringStandardRuleQuery
     def self.attribute_map
       {
         :'aggregation' => :'aggregation',
+        :'data_source' => :'dataSource',
         :'distinct_fields' => :'distinctFields',
         :'group_by_fields' => :'groupByFields',
         :'has_optional_group_by_fields' => :'hasOptionalGroupByFields',
@@ -68,6 +72,7 @@ def self.attribute_map
     def self.openapi_types
       {
         :'aggregation' => :'SecurityMonitoringRuleQueryAggregation',
+        :'data_source' => :'SecurityMonitoringStandardDataSource',
         :'distinct_fields' => :'Array<String>',
         :'group_by_fields' => :'Array<String>',
         :'has_optional_group_by_fields' => :'Boolean',
@@ -100,6 +105,10 @@ def initialize(attributes = {})
         self.aggregation = attributes[:'aggregation']
       end
 
+      if attributes.key?(:'data_source')
+        self.data_source = attributes[:'data_source']
+      end
+
       if attributes.key?(:'distinct_fields')
         if (value = attributes[:'distinct_fields']).is_a?(Array)
           self.distinct_fields = value
@@ -162,6 +171,7 @@ def ==(o)
       return true if self.equal?(o)
       self.class == o.class &&
           aggregation == o.aggregation &&
+          data_source == o.data_source &&
           distinct_fields == o.distinct_fields &&
           group_by_fields == o.group_by_fields &&
           has_optional_group_by_fields == o.has_optional_group_by_fields &&
@@ -176,7 +186,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [aggregation, distinct_fields, group_by_fields, has_optional_group_by_fields, metric, metrics, name, query, additional_properties].hash
+      [aggregation, data_source, distinct_fields, group_by_fields, has_optional_group_by_fields, metric, metrics, name, query, additional_properties].hash
     end
   end
 end

From 8a58533290a45ab9eab9141b3b84a7ac2612538f Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Thu, 13 Mar 2025 20:59:59 +0000
Subject: [PATCH 03/17] Match server description (#2291)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                  | 8 ++++----
 .generator/schemas/v1/openapi.yaml | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index 2f3a792c956..18a9b7f24e8 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-13 09:11:27.618467",
-            "spec_repo_commit": "a1fc1148"
+            "regenerated": "2025-03-13 19:52:49.528972",
+            "spec_repo_commit": "f64c1d75"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-13 09:11:27.634732",
-            "spec_repo_commit": "a1fc1148"
+            "regenerated": "2025-03-13 19:52:49.544117",
+            "spec_repo_commit": "f64c1d75"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml
index f315ec830db..c44a16f3789 100644
--- a/.generator/schemas/v1/openapi.yaml
+++ b/.generator/schemas/v1/openapi.yaml
@@ -36788,7 +36788,7 @@ servers:
   variables:
     site:
       default: datadoghq.com
-      description: The regional site for a Datadog customer.
+      description: The regional site for Datadog customers.
       enum:
       - datadoghq.com
       - us3.datadoghq.com

From 6c9bf173f1220f7f91398bf4848d05802008793c Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Fri, 14 Mar 2025 10:51:12 +0000
Subject: [PATCH 04/17] Add a note about downtime deletion behavior (#2289)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                              | 8 ++++----
 .generator/schemas/v2/openapi.yaml             | 7 ++++++-
 lib/datadog_api_client/v2/api/downtimes_api.rb | 2 ++
 3 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index 18a9b7f24e8..959d2d96270 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-13 19:52:49.528972",
-            "spec_repo_commit": "f64c1d75"
+            "regenerated": "2025-03-14 07:51:10.767732",
+            "spec_repo_commit": "899883be"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-13 19:52:49.544117",
-            "spec_repo_commit": "f64c1d75"
+            "regenerated": "2025-03-14 07:51:10.783055",
+            "spec_repo_commit": "899883be"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index 2737d23c346..e8dfdfe3b3e 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -38777,7 +38777,12 @@ paths:
         - monitors_downtime
   /api/v2/downtime/{downtime_id}:
     delete:
-      description: Cancel a downtime.
+      description: 'Cancel a downtime.
+
+
+        **Note**: Downtimes canceled through the API are no longer active, but are
+        retained for approximately two days before being permanently removed. The
+        downtime may still appear in search results until it is permanently removed.'
       operationId: CancelDowntime
       parameters:
       - description: ID of the downtime to cancel.
diff --git a/lib/datadog_api_client/v2/api/downtimes_api.rb b/lib/datadog_api_client/v2/api/downtimes_api.rb
index ee200c4b1f3..599f36cddc9 100644
--- a/lib/datadog_api_client/v2/api/downtimes_api.rb
+++ b/lib/datadog_api_client/v2/api/downtimes_api.rb
@@ -35,6 +35,8 @@ def cancel_downtime(downtime_id, opts = {})
     #
     # Cancel a downtime.
     #
+    # **Note**: Downtimes canceled through the API are no longer active, but are retained for approximately two days before being permanently removed. The downtime may still appear in search results until it is permanently removed.
+    #
     # @param downtime_id [String] ID of the downtime to cancel.
     # @param opts [Hash] the optional parameters
     # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers

From f3aa52fd1fda3e99224a10dfcb27428744eae562 Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Mon, 17 Mar 2025 16:29:02 -0400
Subject: [PATCH 05/17] Regenerate client from commit 29344bf2 of spec repo
 (#2294)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                             |  8 ++---
 .generator/schemas/v2/openapi.yaml            | 18 ++---------
 .../CreateOrUpdateServiceDefinitions.rb       |  2 +-
 lib/datadog_api_client/inflector.rb           |  1 -
 .../v2/models/historical_job_query.rb         | 12 ++++++-
 .../v2/models/service_definition_v2_dot2.rb   |  2 +-
 .../models/service_definition_v2_dot2_type.rb | 32 -------------------
 7 files changed, 19 insertions(+), 56 deletions(-)
 delete mode 100644 lib/datadog_api_client/v2/models/service_definition_v2_dot2_type.rb

diff --git a/.apigentools-info b/.apigentools-info
index 959d2d96270..eaa75eebfc2 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-14 07:51:10.767732",
-            "spec_repo_commit": "899883be"
+            "regenerated": "2025-03-17 17:20:20.728873",
+            "spec_repo_commit": "29344bf2"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-14 07:51:10.783055",
-            "spec_repo_commit": "899883be"
+            "regenerated": "2025-03-17 17:20:20.745019",
+            "spec_repo_commit": "29344bf2"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index e8dfdfe3b3e..aa344b25b5e 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -14746,6 +14746,8 @@ components:
       properties:
         aggregation:
           $ref: '#/components/schemas/SecurityMonitoringRuleQueryAggregation'
+        dataSource:
+          $ref: '#/components/schemas/SecurityMonitoringStandardDataSource'
         distinctFields:
           description: Field for which the cardinality is measured. Sent as an array.
           items:
@@ -29900,24 +29902,8 @@ components:
       type: object
     ServiceDefinitionV2Dot2Type:
       description: The type of service.
-      enum:
-      - web
-      - db
-      - cache
-      - function
-      - browser
-      - mobile
-      - custom
       example: web
       type: string
-      x-enum-varnames:
-      - WEB
-      - DB
-      - CACHE
-      - FUNCTION
-      - BROSWER
-      - MOBILE
-      - CUSTOM
     ServiceDefinitionV2Dot2Version:
       default: v2.2
       description: Schema version being used.
diff --git a/examples/v2/service-definition/CreateOrUpdateServiceDefinitions.rb b/examples/v2/service-definition/CreateOrUpdateServiceDefinitions.rb
index d47d1fa6f2b..0eb74779179 100644
--- a/examples/v2/service-definition/CreateOrUpdateServiceDefinitions.rb
+++ b/examples/v2/service-definition/CreateOrUpdateServiceDefinitions.rb
@@ -56,6 +56,6 @@
   ],
   team: "my-team",
   tier: "High",
-  type: DatadogAPIClient::V2::ServiceDefinitionV2Dot2Type::WEB,
+  type: "web",
 })
 p api_instance.create_or_update_service_definitions(body)
diff --git a/lib/datadog_api_client/inflector.rb b/lib/datadog_api_client/inflector.rb
index 124d7b77060..580fcd761b7 100644
--- a/lib/datadog_api_client/inflector.rb
+++ b/lib/datadog_api_client/inflector.rb
@@ -2769,7 +2769,6 @@ def overrides
           "v2.service_definition_v2_dot2_opsgenie" => "ServiceDefinitionV2Dot2Opsgenie",
           "v2.service_definition_v2_dot2_opsgenie_region" => "ServiceDefinitionV2Dot2OpsgenieRegion",
           "v2.service_definition_v2_dot2_pagerduty" => "ServiceDefinitionV2Dot2Pagerduty",
-          "v2.service_definition_v2_dot2_type" => "ServiceDefinitionV2Dot2Type",
           "v2.service_definition_v2_dot2_version" => "ServiceDefinitionV2Dot2Version",
           "v2.service_definition_v2_email" => "ServiceDefinitionV2Email",
           "v2.service_definition_v2_email_type" => "ServiceDefinitionV2EmailType",
diff --git a/lib/datadog_api_client/v2/models/historical_job_query.rb b/lib/datadog_api_client/v2/models/historical_job_query.rb
index 0a345ca300e..af69aa01f35 100644
--- a/lib/datadog_api_client/v2/models/historical_job_query.rb
+++ b/lib/datadog_api_client/v2/models/historical_job_query.rb
@@ -24,6 +24,9 @@ class HistoricalJobQuery
     # The aggregation type.
     attr_accessor :aggregation
 
+    # Source of events, either logs or audit trail.
+    attr_accessor :data_source
+
     # Field for which the cardinality is measured. Sent as an array.
     attr_accessor :distinct_fields
 
@@ -49,6 +52,7 @@ class HistoricalJobQuery
     def self.attribute_map
       {
         :'aggregation' => :'aggregation',
+        :'data_source' => :'dataSource',
         :'distinct_fields' => :'distinctFields',
         :'group_by_fields' => :'groupByFields',
         :'has_optional_group_by_fields' => :'hasOptionalGroupByFields',
@@ -63,6 +67,7 @@ def self.attribute_map
     def self.openapi_types
       {
         :'aggregation' => :'SecurityMonitoringRuleQueryAggregation',
+        :'data_source' => :'SecurityMonitoringStandardDataSource',
         :'distinct_fields' => :'Array<String>',
         :'group_by_fields' => :'Array<String>',
         :'has_optional_group_by_fields' => :'Boolean',
@@ -94,6 +99,10 @@ def initialize(attributes = {})
         self.aggregation = attributes[:'aggregation']
       end
 
+      if attributes.key?(:'data_source')
+        self.data_source = attributes[:'data_source']
+      end
+
       if attributes.key?(:'distinct_fields')
         if (value = attributes[:'distinct_fields']).is_a?(Array)
           self.distinct_fields = value
@@ -152,6 +161,7 @@ def ==(o)
       return true if self.equal?(o)
       self.class == o.class &&
           aggregation == o.aggregation &&
+          data_source == o.data_source &&
           distinct_fields == o.distinct_fields &&
           group_by_fields == o.group_by_fields &&
           has_optional_group_by_fields == o.has_optional_group_by_fields &&
@@ -165,7 +175,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [aggregation, distinct_fields, group_by_fields, has_optional_group_by_fields, metrics, name, query, additional_properties].hash
+      [aggregation, data_source, distinct_fields, group_by_fields, has_optional_group_by_fields, metrics, name, query, additional_properties].hash
     end
   end
 end
diff --git a/lib/datadog_api_client/v2/models/service_definition_v2_dot2.rb b/lib/datadog_api_client/v2/models/service_definition_v2_dot2.rb
index 3fcec8fd8c0..32822bc7a5f 100644
--- a/lib/datadog_api_client/v2/models/service_definition_v2_dot2.rb
+++ b/lib/datadog_api_client/v2/models/service_definition_v2_dot2.rb
@@ -108,7 +108,7 @@ def self.openapi_types
         :'tags' => :'Array<String>',
         :'team' => :'String',
         :'tier' => :'String',
-        :'type' => :'ServiceDefinitionV2Dot2Type'
+        :'type' => :'String'
       }
     end
 
diff --git a/lib/datadog_api_client/v2/models/service_definition_v2_dot2_type.rb b/lib/datadog_api_client/v2/models/service_definition_v2_dot2_type.rb
deleted file mode 100644
index 07bc801ad42..00000000000
--- a/lib/datadog_api_client/v2/models/service_definition_v2_dot2_type.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-=begin
-#Datadog API V2 Collection
-
-#Collection of all Datadog Public endpoints.
-
-The version of the OpenAPI document: 1.0
-Contact: support@datadoghq.com
-Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
-
- Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
- This product includes software developed at Datadog (https://www.datadoghq.com/).
- Copyright 2020-Present Datadog, Inc.
-
-=end
-
-require 'date'
-require 'time'
-
-module DatadogAPIClient::V2
-  # The type of service.
-  class ServiceDefinitionV2Dot2Type
-    include BaseEnumModel
-
-    WEB = "web".freeze
-    DB = "db".freeze
-    CACHE = "cache".freeze
-    FUNCTION = "function".freeze
-    BROSWER = "browser".freeze
-    MOBILE = "mobile".freeze
-    CUSTOM = "custom".freeze
-  end
-end

From 5ab59905fbb124cb0aebe2ade427f84d9bd83e74 Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Tue, 18 Mar 2025 08:19:49 -0400
Subject: [PATCH 06/17] Regenerate client from commit 2dfddc18 of spec repo
 (#2249)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                             |  8 ++++----
 .generator/schemas/v1/openapi.yaml            | 12 +++++++++---
 features/v1/downtimes.feature                 |  3 ++-
 features/v1/monitors.feature                  |  4 +++-
 lib/datadog_api_client/v1/api/monitors_api.rb |  2 +-
 5 files changed, 19 insertions(+), 10 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index eaa75eebfc2..4b15754974e 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-17 17:20:20.728873",
-            "spec_repo_commit": "29344bf2"
+            "regenerated": "2025-03-17 21:06:24.773354",
+            "spec_repo_commit": "2dfddc18"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-17 17:20:20.745019",
-            "spec_repo_commit": "29344bf2"
+            "regenerated": "2025-03-17 21:06:24.789125",
+            "spec_repo_commit": "2dfddc18"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml
index c44a16f3789..2e767a05abb 100644
--- a/.generator/schemas/v1/openapi.yaml
+++ b/.generator/schemas/v1/openapi.yaml
@@ -29328,7 +29328,7 @@ paths:
       - description: 'When specified, shows additional information about the group
           states.
 
-          Choose one or more from `all`, `alert`, `warn`, and `no data` (`no%20data`).'
+          Choose one or more from `all`, `alert`, `warn`, and `no data`.'
         in: query
         name: group_states
         required: false
@@ -36863,7 +36863,10 @@ tags:
 
     scopes from alerting. Downtime settings, which can be scheduled with start and
 
-    end times, prevent all alerting related to specified Datadog tags.'
+    end times, prevent all alerting related to specified Datadog tags.
+
+
+    **Note:** `curl` commands require [url encoding](https://curl.se/docs/url-syntax.html).'
   name: Downtimes
 - description: 'The Event Management API allows you to programmatically post events
     to the Events Explorer and fetch events from the Events Explorer. See the [Event
@@ -36940,7 +36943,10 @@ tags:
     notifies your team when a defined threshold has exceeded.
 
 
-    For more information, see [Creating Monitors](https://docs.datadoghq.com/monitors/create/types/).'
+    For more information, see [Creating Monitors](https://docs.datadoghq.com/monitors/create/types/).
+
+
+    **Note:** `curl` commands require [url encoding](https://curl.se/docs/url-syntax.html).'
   externalDocs:
     description: Find out more at
     url: https://docs.datadoghq.com/monitors/create/types/
diff --git a/features/v1/downtimes.feature b/features/v1/downtimes.feature
index ccad86b876d..fccf3660272 100644
--- a/features/v1/downtimes.feature
+++ b/features/v1/downtimes.feature
@@ -4,7 +4,8 @@ Feature: Downtimes
   you greater control over monitor notifications by allowing you to globally
   exclude scopes from alerting. Downtime settings, which can be scheduled
   with start and end times, prevent all alerting related to specified
-  Datadog tags.
+  Datadog tags.  **Note:** `curl` commands require [url
+  encoding](https://curl.se/docs/url-syntax.html).
 
   Background:
     Given a valid "apiKeyAuth" key in the system
diff --git a/features/v1/monitors.feature b/features/v1/monitors.feature
index 05ef98216ed..9bbc6531fa2 100644
--- a/features/v1/monitors.feature
+++ b/features/v1/monitors.feature
@@ -3,7 +3,9 @@ Feature: Monitors
   [Monitors](https://docs.datadoghq.com/monitors) allow you to watch a
   metric or check that you care about and notifies your team when a defined
   threshold has exceeded.  For more information, see [Creating
-  Monitors](https://docs.datadoghq.com/monitors/create/types/).
+  Monitors](https://docs.datadoghq.com/monitors/create/types/).  **Note:**
+  `curl` commands require [url encoding](https://curl.se/docs/url-
+  syntax.html).
 
   Background:
     Given a valid "apiKeyAuth" key in the system
diff --git a/lib/datadog_api_client/v1/api/monitors_api.rb b/lib/datadog_api_client/v1/api/monitors_api.rb
index 51332616712..4a46a009ecb 100644
--- a/lib/datadog_api_client/v1/api/monitors_api.rb
+++ b/lib/datadog_api_client/v1/api/monitors_api.rb
@@ -522,7 +522,7 @@ def list_monitors(opts = {})
     # Get all monitors from your organization.
     #
     # @param opts [Hash] the optional parameters
-    # @option opts [String] :group_states When specified, shows additional information about the group states. Choose one or more from `all`, `alert`, `warn`, and `no data` (`no%20data`).
+    # @option opts [String] :group_states When specified, shows additional information about the group states. Choose one or more from `all`, `alert`, `warn`, and `no data`.
     # @option opts [String] :name A string to filter monitors by name.
     # @option opts [String] :tags A comma separated list indicating what tags, if any, should be used to filter the list of monitors by scope. For example, `host:host0`.
     # @option opts [String] :monitor_tags A comma separated list indicating what service and/or custom tags, if any, should be used to filter the list of monitors. Tags created in the Datadog UI automatically have the service key prepended. For example, `service:my-app`.

From 22b1d7c2d863816982c7ff410e0de8424d7524ec Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Thu, 20 Mar 2025 10:46:44 -0400
Subject: [PATCH 07/17] Regenerate client from commit 78376979 of spec repo
 (#2296)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                             |  8 ++--
 .generator/schemas/v1/openapi.yaml            | 45 +++++++++++++++++++
 .../v1/models/usage_summary_date.rb           | 32 ++++++++++++-
 .../v1/models/usage_summary_date_org.rb       | 32 ++++++++++++-
 .../v1/models/usage_summary_response.rb       | 32 ++++++++++++-
 5 files changed, 142 insertions(+), 7 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index 4b15754974e..63208ae61dc 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-17 21:06:24.773354",
-            "spec_repo_commit": "2dfddc18"
+            "regenerated": "2025-03-18 16:20:32.486865",
+            "spec_repo_commit": "78376979"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-17 21:06:24.789125",
-            "spec_repo_commit": "2dfddc18"
+            "regenerated": "2025-03-18 16:20:32.502823",
+            "spec_repo_commit": "78376979"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml
index 2e767a05abb..ee759304973 100644
--- a/.generator/schemas/v1/openapi.yaml
+++ b/.generator/schemas/v1/openapi.yaml
@@ -20634,6 +20634,11 @@ components:
             1st, 2024).
           format: int64
           type: integer
+        rum_mobile_lite_session_count_kotlinmultiplatform_sum:
+          description: Shows the sum of all mobile RUM lite sessions on Kotlin Multiplatform
+            over all hours within the current date for all organizations.
+          format: int64
+          type: integer
         rum_mobile_lite_session_count_reactnative_sum:
           description: Shows the sum of all mobile RUM lite sessions on React Native
             over all hours in the current date for all organizations (To be introduced
@@ -20646,6 +20651,11 @@ components:
             on October 1st, 2024).
           format: int64
           type: integer
+        rum_mobile_lite_session_count_unity_sum:
+          description: Shows the sum of all mobile RUM lite sessions on Unity over
+            all hours within the current date for all organizations.
+          format: int64
+          type: integer
         rum_mobile_replay_session_count_android_sum:
           description: Shows the sum of all mobile RUM replay sessions on Android
             over all hours within the current date for the given org.
@@ -20656,6 +20666,11 @@ components:
             all hours within the current date for the given org.
           format: int64
           type: integer
+        rum_mobile_replay_session_count_kotlinmultiplatform_sum:
+          description: Shows the sum of all mobile RUM replay sessions on Kotlin Multiplatform
+            over all hours within the current date for all organizations.
+          format: int64
+          type: integer
         rum_mobile_replay_session_count_reactnative_sum:
           description: Shows the sum of all mobile RUM replay sessions on React Native
             over all hours within the current date for the given org.
@@ -21508,6 +21523,11 @@ components:
             1st, 2024).
           format: int64
           type: integer
+        rum_mobile_lite_session_count_kotlinmultiplatform_sum:
+          description: Shows the sum of all mobile RUM lite sessions on Kotlin Multiplatform
+            over all hours within the current date for the given org.
+          format: int64
+          type: integer
         rum_mobile_lite_session_count_reactnative_sum:
           description: Shows the sum of all mobile RUM lite sessions on React Native
             over all hours in the current date for the given org (To be introduced
@@ -21520,6 +21540,11 @@ components:
             1st, 2024).
           format: int64
           type: integer
+        rum_mobile_lite_session_count_unity_sum:
+          description: Shows the sum of all mobile RUM lite sessions on Unity over
+            all hours within the current date for the given org.
+          format: int64
+          type: integer
         rum_mobile_replay_session_count_android_sum:
           description: Shows the sum of all mobile RUM replay sessions on Android
             over all hours within the current date for the given org.
@@ -21530,6 +21555,11 @@ components:
             all hours within the current date for the given org.
           format: int64
           type: integer
+        rum_mobile_replay_session_count_kotlinmultiplatform_sum:
+          description: Shows the sum of all mobile RUM replay sessions on Kotlin Multiplatform
+            over all hours within the current date for the given org.
+          format: int64
+          type: integer
         rum_mobile_replay_session_count_reactnative_sum:
           description: Shows the sum of all mobile RUM replay sessions on React Native
             over all hours within the current date for the given org.
@@ -22414,6 +22444,11 @@ components:
             October 1st, 2024).
           format: int64
           type: integer
+        rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum:
+          description: Shows the sum of all mobile RUM lite sessions on Kotlin Multiplatform
+            over all hours within the current month for all organizations.
+          format: int64
+          type: integer
         rum_mobile_lite_session_count_reactnative_agg_sum:
           description: Shows the sum of all mobile RUM lite sessions on React Native
             over all hours in the current month for all organizations (To be introduced
@@ -22426,6 +22461,11 @@ components:
             on October 1st, 2024).
           format: int64
           type: integer
+        rum_mobile_lite_session_count_unity_agg_sum:
+          description: Shows the sum of all mobile RUM lite sessions on Unity over
+            all hours within the current month for all organizations.
+          format: int64
+          type: integer
         rum_mobile_replay_session_count_android_agg_sum:
           description: Shows the sum of all mobile RUM replay sessions on Android
             over all hours within the current month for all organizations.
@@ -22436,6 +22476,11 @@ components:
             all hours within the current month for all organizations.
           format: int64
           type: integer
+        rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum:
+          description: Shows the sum of all mobile RUM replay sessions on Kotlin Multiplatform
+            over all hours within the current month for all organizations.
+          format: int64
+          type: integer
         rum_mobile_replay_session_count_reactnative_agg_sum:
           description: Shows the sum of all mobile RUM replay sessions on React Native
             over all hours within the current month for all organizations.
diff --git a/lib/datadog_api_client/v1/models/usage_summary_date.rb b/lib/datadog_api_client/v1/models/usage_summary_date.rb
index 36c4a185a45..b25ebcb038d 100644
--- a/lib/datadog_api_client/v1/models/usage_summary_date.rb
+++ b/lib/datadog_api_client/v1/models/usage_summary_date.rb
@@ -408,18 +408,27 @@ class UsageSummaryDate
     # Shows the sum of all mobile RUM lite sessions on iOS over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
     attr_accessor :rum_mobile_lite_session_count_ios_sum
 
+    # Shows the sum of all mobile RUM lite sessions on Kotlin Multiplatform over all hours within the current date for all organizations.
+    attr_accessor :rum_mobile_lite_session_count_kotlinmultiplatform_sum
+
     # Shows the sum of all mobile RUM lite sessions on React Native over all hours in the current date for all organizations (To be introduced on October 1st, 2024).
     attr_accessor :rum_mobile_lite_session_count_reactnative_sum
 
     # Shows the sum of all mobile RUM lite sessions on Roku over all hours within the current date for all organizations (To be introduced on October 1st, 2024).
     attr_accessor :rum_mobile_lite_session_count_roku_sum
 
+    # Shows the sum of all mobile RUM lite sessions on Unity over all hours within the current date for all organizations.
+    attr_accessor :rum_mobile_lite_session_count_unity_sum
+
     # Shows the sum of all mobile RUM replay sessions on Android over all hours within the current date for the given org.
     attr_accessor :rum_mobile_replay_session_count_android_sum
 
     # Shows the sum of all mobile RUM replay sessions on iOS over all hours within the current date for the given org.
     attr_accessor :rum_mobile_replay_session_count_ios_sum
 
+    # Shows the sum of all mobile RUM replay sessions on Kotlin Multiplatform over all hours within the current date for all organizations.
+    attr_accessor :rum_mobile_replay_session_count_kotlinmultiplatform_sum
+
     # Shows the sum of all mobile RUM replay sessions on React Native over all hours within the current date for the given org.
     attr_accessor :rum_mobile_replay_session_count_reactnative_sum
 
@@ -633,10 +642,13 @@ def self.attribute_map
         :'rum_mobile_lite_session_count_android_sum' => :'rum_mobile_lite_session_count_android_sum',
         :'rum_mobile_lite_session_count_flutter_sum' => :'rum_mobile_lite_session_count_flutter_sum',
         :'rum_mobile_lite_session_count_ios_sum' => :'rum_mobile_lite_session_count_ios_sum',
+        :'rum_mobile_lite_session_count_kotlinmultiplatform_sum' => :'rum_mobile_lite_session_count_kotlinmultiplatform_sum',
         :'rum_mobile_lite_session_count_reactnative_sum' => :'rum_mobile_lite_session_count_reactnative_sum',
         :'rum_mobile_lite_session_count_roku_sum' => :'rum_mobile_lite_session_count_roku_sum',
+        :'rum_mobile_lite_session_count_unity_sum' => :'rum_mobile_lite_session_count_unity_sum',
         :'rum_mobile_replay_session_count_android_sum' => :'rum_mobile_replay_session_count_android_sum',
         :'rum_mobile_replay_session_count_ios_sum' => :'rum_mobile_replay_session_count_ios_sum',
+        :'rum_mobile_replay_session_count_kotlinmultiplatform_sum' => :'rum_mobile_replay_session_count_kotlinmultiplatform_sum',
         :'rum_mobile_replay_session_count_reactnative_sum' => :'rum_mobile_replay_session_count_reactnative_sum',
         :'rum_replay_session_count_sum' => :'rum_replay_session_count_sum',
         :'rum_session_count_sum' => :'rum_session_count_sum',
@@ -799,10 +811,13 @@ def self.openapi_types
         :'rum_mobile_lite_session_count_android_sum' => :'Integer',
         :'rum_mobile_lite_session_count_flutter_sum' => :'Integer',
         :'rum_mobile_lite_session_count_ios_sum' => :'Integer',
+        :'rum_mobile_lite_session_count_kotlinmultiplatform_sum' => :'Integer',
         :'rum_mobile_lite_session_count_reactnative_sum' => :'Integer',
         :'rum_mobile_lite_session_count_roku_sum' => :'Integer',
+        :'rum_mobile_lite_session_count_unity_sum' => :'Integer',
         :'rum_mobile_replay_session_count_android_sum' => :'Integer',
         :'rum_mobile_replay_session_count_ios_sum' => :'Integer',
+        :'rum_mobile_replay_session_count_kotlinmultiplatform_sum' => :'Integer',
         :'rum_mobile_replay_session_count_reactnative_sum' => :'Integer',
         :'rum_replay_session_count_sum' => :'Integer',
         :'rum_session_count_sum' => :'Integer',
@@ -1368,6 +1383,10 @@ def initialize(attributes = {})
         self.rum_mobile_lite_session_count_ios_sum = attributes[:'rum_mobile_lite_session_count_ios_sum']
       end
 
+      if attributes.key?(:'rum_mobile_lite_session_count_kotlinmultiplatform_sum')
+        self.rum_mobile_lite_session_count_kotlinmultiplatform_sum = attributes[:'rum_mobile_lite_session_count_kotlinmultiplatform_sum']
+      end
+
       if attributes.key?(:'rum_mobile_lite_session_count_reactnative_sum')
         self.rum_mobile_lite_session_count_reactnative_sum = attributes[:'rum_mobile_lite_session_count_reactnative_sum']
       end
@@ -1376,6 +1395,10 @@ def initialize(attributes = {})
         self.rum_mobile_lite_session_count_roku_sum = attributes[:'rum_mobile_lite_session_count_roku_sum']
       end
 
+      if attributes.key?(:'rum_mobile_lite_session_count_unity_sum')
+        self.rum_mobile_lite_session_count_unity_sum = attributes[:'rum_mobile_lite_session_count_unity_sum']
+      end
+
       if attributes.key?(:'rum_mobile_replay_session_count_android_sum')
         self.rum_mobile_replay_session_count_android_sum = attributes[:'rum_mobile_replay_session_count_android_sum']
       end
@@ -1384,6 +1407,10 @@ def initialize(attributes = {})
         self.rum_mobile_replay_session_count_ios_sum = attributes[:'rum_mobile_replay_session_count_ios_sum']
       end
 
+      if attributes.key?(:'rum_mobile_replay_session_count_kotlinmultiplatform_sum')
+        self.rum_mobile_replay_session_count_kotlinmultiplatform_sum = attributes[:'rum_mobile_replay_session_count_kotlinmultiplatform_sum']
+      end
+
       if attributes.key?(:'rum_mobile_replay_session_count_reactnative_sum')
         self.rum_mobile_replay_session_count_reactnative_sum = attributes[:'rum_mobile_replay_session_count_reactnative_sum']
       end
@@ -1644,10 +1671,13 @@ def ==(o)
           rum_mobile_lite_session_count_android_sum == o.rum_mobile_lite_session_count_android_sum &&
           rum_mobile_lite_session_count_flutter_sum == o.rum_mobile_lite_session_count_flutter_sum &&
           rum_mobile_lite_session_count_ios_sum == o.rum_mobile_lite_session_count_ios_sum &&
+          rum_mobile_lite_session_count_kotlinmultiplatform_sum == o.rum_mobile_lite_session_count_kotlinmultiplatform_sum &&
           rum_mobile_lite_session_count_reactnative_sum == o.rum_mobile_lite_session_count_reactnative_sum &&
           rum_mobile_lite_session_count_roku_sum == o.rum_mobile_lite_session_count_roku_sum &&
+          rum_mobile_lite_session_count_unity_sum == o.rum_mobile_lite_session_count_unity_sum &&
           rum_mobile_replay_session_count_android_sum == o.rum_mobile_replay_session_count_android_sum &&
           rum_mobile_replay_session_count_ios_sum == o.rum_mobile_replay_session_count_ios_sum &&
+          rum_mobile_replay_session_count_kotlinmultiplatform_sum == o.rum_mobile_replay_session_count_kotlinmultiplatform_sum &&
           rum_mobile_replay_session_count_reactnative_sum == o.rum_mobile_replay_session_count_reactnative_sum &&
           rum_replay_session_count_sum == o.rum_replay_session_count_sum &&
           rum_session_count_sum == o.rum_session_count_sum &&
@@ -1681,7 +1711,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [agent_host_top99p, apm_azure_app_service_host_top99p, apm_devsecops_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, asm_serverless_sum, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_gcp_host_count_avg, cloud_cost_management_host_count_avg, cloud_siem_events_sum, code_analysis_sa_committers_hwm, code_analysis_sca_committers_hwm, code_security_host_top99p, container_avg, container_excl_agent_avg, container_hwm, csm_container_enterprise_compliance_count_sum, csm_container_enterprise_cws_count_sum, csm_container_enterprise_total_count_sum, csm_host_enterprise_aas_host_count_top99p, csm_host_enterprise_aws_host_count_top99p, csm_host_enterprise_azure_host_count_top99p, csm_host_enterprise_compliance_host_count_top99p, csm_host_enterprise_cws_host_count_top99p, csm_host_enterprise_gcp_host_count_top99p, csm_host_enterprise_total_host_count_top99p, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_fargate_task_avg, cws_host_top99p, data_jobs_monitoring_host_hr_sum, date, dbm_host_top99p, dbm_queries_count_avg, eph_infra_host_agent_sum, eph_infra_host_alibaba_sum, eph_infra_host_aws_sum, eph_infra_host_azure_sum, eph_infra_host_ent_sum, eph_infra_host_gcp_sum, eph_infra_host_heroku_sum, eph_infra_host_only_aas_sum, eph_infra_host_only_vsphere_sum, eph_infra_host_opentelemetry_apm_sum, eph_infra_host_opentelemetry_sum, eph_infra_host_pro_sum, eph_infra_host_proplus_sum, error_tracking_error_events_sum, error_tracking_events_sum, error_tracking_rum_error_events_sum, fargate_container_profiler_profiling_fargate_avg, fargate_container_profiler_profiling_fargate_eks_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, flex_logs_compute_large_avg, flex_logs_compute_medium_avg, flex_logs_compute_small_avg, flex_logs_compute_xsmall_avg, flex_logs_starter_avg, flex_logs_starter_storage_index_avg, flex_logs_starter_storage_retention_adjustment_avg, flex_stored_logs_avg, forwarding_events_bytes_sum, gcp_host_top99p, heroku_host_top99p, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_sum, iot_device_top99p, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, ndm_netflow_events_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, oci_host_sum, oci_host_top99p, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, orgs, profiling_aas_count_top99p, profiling_host_top99p, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_sum, rum_browser_lite_session_count_sum, rum_browser_replay_session_count_sum, rum_lite_session_count_sum, rum_mobile_legacy_session_count_android_sum, rum_mobile_legacy_session_count_flutter_sum, rum_mobile_legacy_session_count_ios_sum, rum_mobile_legacy_session_count_reactnative_sum, rum_mobile_legacy_session_count_roku_sum, rum_mobile_lite_session_count_android_sum, rum_mobile_lite_session_count_flutter_sum, rum_mobile_lite_session_count_ios_sum, rum_mobile_lite_session_count_reactnative_sum, rum_mobile_lite_session_count_roku_sum, rum_mobile_replay_session_count_android_sum, rum_mobile_replay_session_count_ios_sum, rum_mobile_replay_session_count_reactnative_sum, rum_replay_session_count_sum, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sca_fargate_count_avg, sca_fargate_count_hwm, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg, serverless_apps_google_count_avg, serverless_apps_total_count_avg, siem_analyzed_logs_add_on_count_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_mobile_test_runs_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum, additional_properties].hash
+      [agent_host_top99p, apm_azure_app_service_host_top99p, apm_devsecops_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, asm_serverless_sum, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_gcp_host_count_avg, cloud_cost_management_host_count_avg, cloud_siem_events_sum, code_analysis_sa_committers_hwm, code_analysis_sca_committers_hwm, code_security_host_top99p, container_avg, container_excl_agent_avg, container_hwm, csm_container_enterprise_compliance_count_sum, csm_container_enterprise_cws_count_sum, csm_container_enterprise_total_count_sum, csm_host_enterprise_aas_host_count_top99p, csm_host_enterprise_aws_host_count_top99p, csm_host_enterprise_azure_host_count_top99p, csm_host_enterprise_compliance_host_count_top99p, csm_host_enterprise_cws_host_count_top99p, csm_host_enterprise_gcp_host_count_top99p, csm_host_enterprise_total_host_count_top99p, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_fargate_task_avg, cws_host_top99p, data_jobs_monitoring_host_hr_sum, date, dbm_host_top99p, dbm_queries_count_avg, eph_infra_host_agent_sum, eph_infra_host_alibaba_sum, eph_infra_host_aws_sum, eph_infra_host_azure_sum, eph_infra_host_ent_sum, eph_infra_host_gcp_sum, eph_infra_host_heroku_sum, eph_infra_host_only_aas_sum, eph_infra_host_only_vsphere_sum, eph_infra_host_opentelemetry_apm_sum, eph_infra_host_opentelemetry_sum, eph_infra_host_pro_sum, eph_infra_host_proplus_sum, error_tracking_error_events_sum, error_tracking_events_sum, error_tracking_rum_error_events_sum, fargate_container_profiler_profiling_fargate_avg, fargate_container_profiler_profiling_fargate_eks_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, flex_logs_compute_large_avg, flex_logs_compute_medium_avg, flex_logs_compute_small_avg, flex_logs_compute_xsmall_avg, flex_logs_starter_avg, flex_logs_starter_storage_index_avg, flex_logs_starter_storage_retention_adjustment_avg, flex_stored_logs_avg, forwarding_events_bytes_sum, gcp_host_top99p, heroku_host_top99p, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_sum, iot_device_top99p, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, ndm_netflow_events_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, oci_host_sum, oci_host_top99p, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, orgs, profiling_aas_count_top99p, profiling_host_top99p, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_sum, rum_browser_lite_session_count_sum, rum_browser_replay_session_count_sum, rum_lite_session_count_sum, rum_mobile_legacy_session_count_android_sum, rum_mobile_legacy_session_count_flutter_sum, rum_mobile_legacy_session_count_ios_sum, rum_mobile_legacy_session_count_reactnative_sum, rum_mobile_legacy_session_count_roku_sum, rum_mobile_lite_session_count_android_sum, rum_mobile_lite_session_count_flutter_sum, rum_mobile_lite_session_count_ios_sum, rum_mobile_lite_session_count_kotlinmultiplatform_sum, rum_mobile_lite_session_count_reactnative_sum, rum_mobile_lite_session_count_roku_sum, rum_mobile_lite_session_count_unity_sum, rum_mobile_replay_session_count_android_sum, rum_mobile_replay_session_count_ios_sum, rum_mobile_replay_session_count_kotlinmultiplatform_sum, rum_mobile_replay_session_count_reactnative_sum, rum_replay_session_count_sum, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sca_fargate_count_avg, sca_fargate_count_hwm, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg, serverless_apps_google_count_avg, serverless_apps_total_count_avg, siem_analyzed_logs_add_on_count_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_mobile_test_runs_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum, additional_properties].hash
     end
   end
 end
diff --git a/lib/datadog_api_client/v1/models/usage_summary_date_org.rb b/lib/datadog_api_client/v1/models/usage_summary_date_org.rb
index d81cbc699e6..6f2c387f370 100644
--- a/lib/datadog_api_client/v1/models/usage_summary_date_org.rb
+++ b/lib/datadog_api_client/v1/models/usage_summary_date_org.rb
@@ -426,18 +426,27 @@ class UsageSummaryDateOrg
     # Shows the sum of all mobile RUM lite sessions on iOS over all hours in the current date for the given org (To be introduced on October 1st, 2024).
     attr_accessor :rum_mobile_lite_session_count_ios_sum
 
+    # Shows the sum of all mobile RUM lite sessions on Kotlin Multiplatform over all hours within the current date for the given org.
+    attr_accessor :rum_mobile_lite_session_count_kotlinmultiplatform_sum
+
     # Shows the sum of all mobile RUM lite sessions on React Native over all hours in the current date for the given org (To be introduced on October 1st, 2024).
     attr_accessor :rum_mobile_lite_session_count_reactnative_sum
 
     # Shows the sum of all mobile RUM lite sessions on Roku over all hours in the current date for the given org (To be introduced on October 1st, 2024).
     attr_accessor :rum_mobile_lite_session_count_roku_sum
 
+    # Shows the sum of all mobile RUM lite sessions on Unity over all hours within the current date for the given org.
+    attr_accessor :rum_mobile_lite_session_count_unity_sum
+
     # Shows the sum of all mobile RUM replay sessions on Android over all hours within the current date for the given org.
     attr_accessor :rum_mobile_replay_session_count_android_sum
 
     # Shows the sum of all mobile RUM replay sessions on iOS over all hours within the current date for the given org.
     attr_accessor :rum_mobile_replay_session_count_ios_sum
 
+    # Shows the sum of all mobile RUM replay sessions on Kotlin Multiplatform over all hours within the current date for the given org.
+    attr_accessor :rum_mobile_replay_session_count_kotlinmultiplatform_sum
+
     # Shows the sum of all mobile RUM replay sessions on React Native over all hours within the current date for the given org.
     attr_accessor :rum_mobile_replay_session_count_reactnative_sum
 
@@ -657,10 +666,13 @@ def self.attribute_map
         :'rum_mobile_lite_session_count_android_sum' => :'rum_mobile_lite_session_count_android_sum',
         :'rum_mobile_lite_session_count_flutter_sum' => :'rum_mobile_lite_session_count_flutter_sum',
         :'rum_mobile_lite_session_count_ios_sum' => :'rum_mobile_lite_session_count_ios_sum',
+        :'rum_mobile_lite_session_count_kotlinmultiplatform_sum' => :'rum_mobile_lite_session_count_kotlinmultiplatform_sum',
         :'rum_mobile_lite_session_count_reactnative_sum' => :'rum_mobile_lite_session_count_reactnative_sum',
         :'rum_mobile_lite_session_count_roku_sum' => :'rum_mobile_lite_session_count_roku_sum',
+        :'rum_mobile_lite_session_count_unity_sum' => :'rum_mobile_lite_session_count_unity_sum',
         :'rum_mobile_replay_session_count_android_sum' => :'rum_mobile_replay_session_count_android_sum',
         :'rum_mobile_replay_session_count_ios_sum' => :'rum_mobile_replay_session_count_ios_sum',
+        :'rum_mobile_replay_session_count_kotlinmultiplatform_sum' => :'rum_mobile_replay_session_count_kotlinmultiplatform_sum',
         :'rum_mobile_replay_session_count_reactnative_sum' => :'rum_mobile_replay_session_count_reactnative_sum',
         :'rum_replay_session_count_sum' => :'rum_replay_session_count_sum',
         :'rum_session_count_sum' => :'rum_session_count_sum',
@@ -829,10 +841,13 @@ def self.openapi_types
         :'rum_mobile_lite_session_count_android_sum' => :'Integer',
         :'rum_mobile_lite_session_count_flutter_sum' => :'Integer',
         :'rum_mobile_lite_session_count_ios_sum' => :'Integer',
+        :'rum_mobile_lite_session_count_kotlinmultiplatform_sum' => :'Integer',
         :'rum_mobile_lite_session_count_reactnative_sum' => :'Integer',
         :'rum_mobile_lite_session_count_roku_sum' => :'Integer',
+        :'rum_mobile_lite_session_count_unity_sum' => :'Integer',
         :'rum_mobile_replay_session_count_android_sum' => :'Integer',
         :'rum_mobile_replay_session_count_ios_sum' => :'Integer',
+        :'rum_mobile_replay_session_count_kotlinmultiplatform_sum' => :'Integer',
         :'rum_mobile_replay_session_count_reactnative_sum' => :'Integer',
         :'rum_replay_session_count_sum' => :'Integer',
         :'rum_session_count_sum' => :'Integer',
@@ -1420,6 +1435,10 @@ def initialize(attributes = {})
         self.rum_mobile_lite_session_count_ios_sum = attributes[:'rum_mobile_lite_session_count_ios_sum']
       end
 
+      if attributes.key?(:'rum_mobile_lite_session_count_kotlinmultiplatform_sum')
+        self.rum_mobile_lite_session_count_kotlinmultiplatform_sum = attributes[:'rum_mobile_lite_session_count_kotlinmultiplatform_sum']
+      end
+
       if attributes.key?(:'rum_mobile_lite_session_count_reactnative_sum')
         self.rum_mobile_lite_session_count_reactnative_sum = attributes[:'rum_mobile_lite_session_count_reactnative_sum']
       end
@@ -1428,6 +1447,10 @@ def initialize(attributes = {})
         self.rum_mobile_lite_session_count_roku_sum = attributes[:'rum_mobile_lite_session_count_roku_sum']
       end
 
+      if attributes.key?(:'rum_mobile_lite_session_count_unity_sum')
+        self.rum_mobile_lite_session_count_unity_sum = attributes[:'rum_mobile_lite_session_count_unity_sum']
+      end
+
       if attributes.key?(:'rum_mobile_replay_session_count_android_sum')
         self.rum_mobile_replay_session_count_android_sum = attributes[:'rum_mobile_replay_session_count_android_sum']
       end
@@ -1436,6 +1459,10 @@ def initialize(attributes = {})
         self.rum_mobile_replay_session_count_ios_sum = attributes[:'rum_mobile_replay_session_count_ios_sum']
       end
 
+      if attributes.key?(:'rum_mobile_replay_session_count_kotlinmultiplatform_sum')
+        self.rum_mobile_replay_session_count_kotlinmultiplatform_sum = attributes[:'rum_mobile_replay_session_count_kotlinmultiplatform_sum']
+      end
+
       if attributes.key?(:'rum_mobile_replay_session_count_reactnative_sum')
         self.rum_mobile_replay_session_count_reactnative_sum = attributes[:'rum_mobile_replay_session_count_reactnative_sum']
       end
@@ -1702,10 +1729,13 @@ def ==(o)
           rum_mobile_lite_session_count_android_sum == o.rum_mobile_lite_session_count_android_sum &&
           rum_mobile_lite_session_count_flutter_sum == o.rum_mobile_lite_session_count_flutter_sum &&
           rum_mobile_lite_session_count_ios_sum == o.rum_mobile_lite_session_count_ios_sum &&
+          rum_mobile_lite_session_count_kotlinmultiplatform_sum == o.rum_mobile_lite_session_count_kotlinmultiplatform_sum &&
           rum_mobile_lite_session_count_reactnative_sum == o.rum_mobile_lite_session_count_reactnative_sum &&
           rum_mobile_lite_session_count_roku_sum == o.rum_mobile_lite_session_count_roku_sum &&
+          rum_mobile_lite_session_count_unity_sum == o.rum_mobile_lite_session_count_unity_sum &&
           rum_mobile_replay_session_count_android_sum == o.rum_mobile_replay_session_count_android_sum &&
           rum_mobile_replay_session_count_ios_sum == o.rum_mobile_replay_session_count_ios_sum &&
+          rum_mobile_replay_session_count_kotlinmultiplatform_sum == o.rum_mobile_replay_session_count_kotlinmultiplatform_sum &&
           rum_mobile_replay_session_count_reactnative_sum == o.rum_mobile_replay_session_count_reactnative_sum &&
           rum_replay_session_count_sum == o.rum_replay_session_count_sum &&
           rum_session_count_sum == o.rum_session_count_sum &&
@@ -1739,7 +1769,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [account_name, account_public_id, agent_host_top99p, apm_azure_app_service_host_top99p, apm_devsecops_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, asm_serverless_sum, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_gcp_host_count_avg, cloud_cost_management_host_count_avg, cloud_siem_events_sum, code_analysis_sa_committers_hwm, code_analysis_sca_committers_hwm, code_security_host_top99p, container_avg, container_excl_agent_avg, container_hwm, csm_container_enterprise_compliance_count_sum, csm_container_enterprise_cws_count_sum, csm_container_enterprise_total_count_sum, csm_host_enterprise_aas_host_count_top99p, csm_host_enterprise_aws_host_count_top99p, csm_host_enterprise_azure_host_count_top99p, csm_host_enterprise_compliance_host_count_top99p, csm_host_enterprise_cws_host_count_top99p, csm_host_enterprise_gcp_host_count_top99p, csm_host_enterprise_total_host_count_top99p, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_historical_ts_avg, custom_live_ts_avg, custom_ts_avg, cws_container_count_avg, cws_fargate_task_avg, cws_host_top99p, data_jobs_monitoring_host_hr_sum, dbm_host_top99p_sum, dbm_queries_avg_sum, eph_infra_host_agent_sum, eph_infra_host_alibaba_sum, eph_infra_host_aws_sum, eph_infra_host_azure_sum, eph_infra_host_ent_sum, eph_infra_host_gcp_sum, eph_infra_host_heroku_sum, eph_infra_host_only_aas_sum, eph_infra_host_only_vsphere_sum, eph_infra_host_opentelemetry_apm_sum, eph_infra_host_opentelemetry_sum, eph_infra_host_pro_sum, eph_infra_host_proplus_sum, error_tracking_error_events_sum, error_tracking_events_sum, error_tracking_rum_error_events_sum, fargate_container_profiler_profiling_fargate_avg, fargate_container_profiler_profiling_fargate_eks_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, flex_logs_compute_large_avg, flex_logs_compute_medium_avg, flex_logs_compute_small_avg, flex_logs_compute_xsmall_avg, flex_logs_starter_avg, flex_logs_starter_storage_index_avg, flex_logs_starter_storage_retention_adjustment_avg, flex_stored_logs_avg, forwarding_events_bytes_sum, gcp_host_top99p, heroku_host_top99p, id, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_agg_sum, iot_device_top99p_sum, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, name, ndm_netflow_events_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, oci_host_sum, oci_host_top99p, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, profiling_aas_count_top99p, profiling_host_top99p, public_id, region, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_sum, rum_browser_lite_session_count_sum, rum_browser_replay_session_count_sum, rum_lite_session_count_sum, rum_mobile_legacy_session_count_android_sum, rum_mobile_legacy_session_count_flutter_sum, rum_mobile_legacy_session_count_ios_sum, rum_mobile_legacy_session_count_reactnative_sum, rum_mobile_legacy_session_count_roku_sum, rum_mobile_lite_session_count_android_sum, rum_mobile_lite_session_count_flutter_sum, rum_mobile_lite_session_count_ios_sum, rum_mobile_lite_session_count_reactnative_sum, rum_mobile_lite_session_count_roku_sum, rum_mobile_replay_session_count_android_sum, rum_mobile_replay_session_count_ios_sum, rum_mobile_replay_session_count_reactnative_sum, rum_replay_session_count_sum, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sca_fargate_count_avg, sca_fargate_count_hwm, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg, serverless_apps_google_count_avg, serverless_apps_total_count_avg, siem_analyzed_logs_add_on_count_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_mobile_test_runs_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum, additional_properties].hash
+      [account_name, account_public_id, agent_host_top99p, apm_azure_app_service_host_top99p, apm_devsecops_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, asm_serverless_sum, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_gcp_host_count_avg, cloud_cost_management_host_count_avg, cloud_siem_events_sum, code_analysis_sa_committers_hwm, code_analysis_sca_committers_hwm, code_security_host_top99p, container_avg, container_excl_agent_avg, container_hwm, csm_container_enterprise_compliance_count_sum, csm_container_enterprise_cws_count_sum, csm_container_enterprise_total_count_sum, csm_host_enterprise_aas_host_count_top99p, csm_host_enterprise_aws_host_count_top99p, csm_host_enterprise_azure_host_count_top99p, csm_host_enterprise_compliance_host_count_top99p, csm_host_enterprise_cws_host_count_top99p, csm_host_enterprise_gcp_host_count_top99p, csm_host_enterprise_total_host_count_top99p, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_historical_ts_avg, custom_live_ts_avg, custom_ts_avg, cws_container_count_avg, cws_fargate_task_avg, cws_host_top99p, data_jobs_monitoring_host_hr_sum, dbm_host_top99p_sum, dbm_queries_avg_sum, eph_infra_host_agent_sum, eph_infra_host_alibaba_sum, eph_infra_host_aws_sum, eph_infra_host_azure_sum, eph_infra_host_ent_sum, eph_infra_host_gcp_sum, eph_infra_host_heroku_sum, eph_infra_host_only_aas_sum, eph_infra_host_only_vsphere_sum, eph_infra_host_opentelemetry_apm_sum, eph_infra_host_opentelemetry_sum, eph_infra_host_pro_sum, eph_infra_host_proplus_sum, error_tracking_error_events_sum, error_tracking_events_sum, error_tracking_rum_error_events_sum, fargate_container_profiler_profiling_fargate_avg, fargate_container_profiler_profiling_fargate_eks_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, flex_logs_compute_large_avg, flex_logs_compute_medium_avg, flex_logs_compute_small_avg, flex_logs_compute_xsmall_avg, flex_logs_starter_avg, flex_logs_starter_storage_index_avg, flex_logs_starter_storage_retention_adjustment_avg, flex_stored_logs_avg, forwarding_events_bytes_sum, gcp_host_top99p, heroku_host_top99p, id, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_agg_sum, iot_device_top99p_sum, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, name, ndm_netflow_events_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, oci_host_sum, oci_host_top99p, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, profiling_aas_count_top99p, profiling_host_top99p, public_id, region, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_sum, rum_browser_lite_session_count_sum, rum_browser_replay_session_count_sum, rum_lite_session_count_sum, rum_mobile_legacy_session_count_android_sum, rum_mobile_legacy_session_count_flutter_sum, rum_mobile_legacy_session_count_ios_sum, rum_mobile_legacy_session_count_reactnative_sum, rum_mobile_legacy_session_count_roku_sum, rum_mobile_lite_session_count_android_sum, rum_mobile_lite_session_count_flutter_sum, rum_mobile_lite_session_count_ios_sum, rum_mobile_lite_session_count_kotlinmultiplatform_sum, rum_mobile_lite_session_count_reactnative_sum, rum_mobile_lite_session_count_roku_sum, rum_mobile_lite_session_count_unity_sum, rum_mobile_replay_session_count_android_sum, rum_mobile_replay_session_count_ios_sum, rum_mobile_replay_session_count_kotlinmultiplatform_sum, rum_mobile_replay_session_count_reactnative_sum, rum_replay_session_count_sum, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sca_fargate_count_avg, sca_fargate_count_hwm, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg, serverless_apps_google_count_avg, serverless_apps_total_count_avg, siem_analyzed_logs_add_on_count_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_mobile_test_runs_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum, additional_properties].hash
     end
   end
 end
diff --git a/lib/datadog_api_client/v1/models/usage_summary_response.rb b/lib/datadog_api_client/v1/models/usage_summary_response.rb
index febe634dcd0..b934b9625dd 100644
--- a/lib/datadog_api_client/v1/models/usage_summary_response.rb
+++ b/lib/datadog_api_client/v1/models/usage_summary_response.rb
@@ -435,18 +435,27 @@ class UsageSummaryResponse
     # Shows the sum of all mobile RUM lite sessions on iOS over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
     attr_accessor :rum_mobile_lite_session_count_ios_agg_sum
 
+    # Shows the sum of all mobile RUM lite sessions on Kotlin Multiplatform over all hours within the current month for all organizations.
+    attr_accessor :rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum
+
     # Shows the sum of all mobile RUM lite sessions on React Native over all hours in the current month for all organizations (To be introduced on October 1st, 2024).
     attr_accessor :rum_mobile_lite_session_count_reactnative_agg_sum
 
     # Shows the sum of all mobile RUM lite sessions on Roku over all hours within the current month for all organizations (To be introduced on October 1st, 2024).
     attr_accessor :rum_mobile_lite_session_count_roku_agg_sum
 
+    # Shows the sum of all mobile RUM lite sessions on Unity over all hours within the current month for all organizations.
+    attr_accessor :rum_mobile_lite_session_count_unity_agg_sum
+
     # Shows the sum of all mobile RUM replay sessions on Android over all hours within the current month for all organizations.
     attr_accessor :rum_mobile_replay_session_count_android_agg_sum
 
     # Shows the sum of all mobile RUM replay sessions on iOS over all hours within the current month for all organizations.
     attr_accessor :rum_mobile_replay_session_count_ios_agg_sum
 
+    # Shows the sum of all mobile RUM replay sessions on Kotlin Multiplatform over all hours within the current month for all organizations.
+    attr_accessor :rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum
+
     # Shows the sum of all mobile RUM replay sessions on React Native over all hours within the current month for all organizations.
     attr_accessor :rum_mobile_replay_session_count_reactnative_agg_sum
 
@@ -675,10 +684,13 @@ def self.attribute_map
         :'rum_mobile_lite_session_count_android_agg_sum' => :'rum_mobile_lite_session_count_android_agg_sum',
         :'rum_mobile_lite_session_count_flutter_agg_sum' => :'rum_mobile_lite_session_count_flutter_agg_sum',
         :'rum_mobile_lite_session_count_ios_agg_sum' => :'rum_mobile_lite_session_count_ios_agg_sum',
+        :'rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum' => :'rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum',
         :'rum_mobile_lite_session_count_reactnative_agg_sum' => :'rum_mobile_lite_session_count_reactnative_agg_sum',
         :'rum_mobile_lite_session_count_roku_agg_sum' => :'rum_mobile_lite_session_count_roku_agg_sum',
+        :'rum_mobile_lite_session_count_unity_agg_sum' => :'rum_mobile_lite_session_count_unity_agg_sum',
         :'rum_mobile_replay_session_count_android_agg_sum' => :'rum_mobile_replay_session_count_android_agg_sum',
         :'rum_mobile_replay_session_count_ios_agg_sum' => :'rum_mobile_replay_session_count_ios_agg_sum',
+        :'rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum' => :'rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum',
         :'rum_mobile_replay_session_count_reactnative_agg_sum' => :'rum_mobile_replay_session_count_reactnative_agg_sum',
         :'rum_replay_session_count_agg_sum' => :'rum_replay_session_count_agg_sum',
         :'rum_session_count_agg_sum' => :'rum_session_count_agg_sum',
@@ -852,10 +864,13 @@ def self.openapi_types
         :'rum_mobile_lite_session_count_android_agg_sum' => :'Integer',
         :'rum_mobile_lite_session_count_flutter_agg_sum' => :'Integer',
         :'rum_mobile_lite_session_count_ios_agg_sum' => :'Integer',
+        :'rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum' => :'Integer',
         :'rum_mobile_lite_session_count_reactnative_agg_sum' => :'Integer',
         :'rum_mobile_lite_session_count_roku_agg_sum' => :'Integer',
+        :'rum_mobile_lite_session_count_unity_agg_sum' => :'Integer',
         :'rum_mobile_replay_session_count_android_agg_sum' => :'Integer',
         :'rum_mobile_replay_session_count_ios_agg_sum' => :'Integer',
+        :'rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum' => :'Integer',
         :'rum_mobile_replay_session_count_reactnative_agg_sum' => :'Integer',
         :'rum_replay_session_count_agg_sum' => :'Integer',
         :'rum_session_count_agg_sum' => :'Integer',
@@ -1457,6 +1472,10 @@ def initialize(attributes = {})
         self.rum_mobile_lite_session_count_ios_agg_sum = attributes[:'rum_mobile_lite_session_count_ios_agg_sum']
       end
 
+      if attributes.key?(:'rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum')
+        self.rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum = attributes[:'rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum']
+      end
+
       if attributes.key?(:'rum_mobile_lite_session_count_reactnative_agg_sum')
         self.rum_mobile_lite_session_count_reactnative_agg_sum = attributes[:'rum_mobile_lite_session_count_reactnative_agg_sum']
       end
@@ -1465,6 +1484,10 @@ def initialize(attributes = {})
         self.rum_mobile_lite_session_count_roku_agg_sum = attributes[:'rum_mobile_lite_session_count_roku_agg_sum']
       end
 
+      if attributes.key?(:'rum_mobile_lite_session_count_unity_agg_sum')
+        self.rum_mobile_lite_session_count_unity_agg_sum = attributes[:'rum_mobile_lite_session_count_unity_agg_sum']
+      end
+
       if attributes.key?(:'rum_mobile_replay_session_count_android_agg_sum')
         self.rum_mobile_replay_session_count_android_agg_sum = attributes[:'rum_mobile_replay_session_count_android_agg_sum']
       end
@@ -1473,6 +1496,10 @@ def initialize(attributes = {})
         self.rum_mobile_replay_session_count_ios_agg_sum = attributes[:'rum_mobile_replay_session_count_ios_agg_sum']
       end
 
+      if attributes.key?(:'rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum')
+        self.rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum = attributes[:'rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum']
+      end
+
       if attributes.key?(:'rum_mobile_replay_session_count_reactnative_agg_sum')
         self.rum_mobile_replay_session_count_reactnative_agg_sum = attributes[:'rum_mobile_replay_session_count_reactnative_agg_sum']
       end
@@ -1752,10 +1779,13 @@ def ==(o)
           rum_mobile_lite_session_count_android_agg_sum == o.rum_mobile_lite_session_count_android_agg_sum &&
           rum_mobile_lite_session_count_flutter_agg_sum == o.rum_mobile_lite_session_count_flutter_agg_sum &&
           rum_mobile_lite_session_count_ios_agg_sum == o.rum_mobile_lite_session_count_ios_agg_sum &&
+          rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum == o.rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum &&
           rum_mobile_lite_session_count_reactnative_agg_sum == o.rum_mobile_lite_session_count_reactnative_agg_sum &&
           rum_mobile_lite_session_count_roku_agg_sum == o.rum_mobile_lite_session_count_roku_agg_sum &&
+          rum_mobile_lite_session_count_unity_agg_sum == o.rum_mobile_lite_session_count_unity_agg_sum &&
           rum_mobile_replay_session_count_android_agg_sum == o.rum_mobile_replay_session_count_android_agg_sum &&
           rum_mobile_replay_session_count_ios_agg_sum == o.rum_mobile_replay_session_count_ios_agg_sum &&
+          rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum == o.rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum &&
           rum_mobile_replay_session_count_reactnative_agg_sum == o.rum_mobile_replay_session_count_reactnative_agg_sum &&
           rum_replay_session_count_agg_sum == o.rum_replay_session_count_agg_sum &&
           rum_session_count_agg_sum == o.rum_session_count_agg_sum &&
@@ -1791,7 +1821,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [agent_host_top99p_sum, apm_azure_app_service_host_top99p_sum, apm_devsecops_host_top99p_sum, apm_fargate_count_avg_sum, apm_host_top99p_sum, appsec_fargate_count_avg_sum, asm_serverless_agg_sum, audit_logs_lines_indexed_agg_sum, audit_trail_enabled_hwm_sum, avg_profiled_fargate_tasks_sum, aws_host_top99p_sum, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p_sum, azure_host_top99p_sum, billable_ingested_bytes_agg_sum, browser_rum_lite_session_count_agg_sum, browser_rum_replay_session_count_agg_sum, browser_rum_units_agg_sum, ci_pipeline_indexed_spans_agg_sum, ci_test_indexed_spans_agg_sum, ci_visibility_itr_committers_hwm_sum, ci_visibility_pipeline_committers_hwm_sum, ci_visibility_test_committers_hwm_sum, cloud_cost_management_aws_host_count_avg_sum, cloud_cost_management_azure_host_count_avg_sum, cloud_cost_management_gcp_host_count_avg_sum, cloud_cost_management_host_count_avg_sum, cloud_siem_events_agg_sum, code_analysis_sa_committers_hwm_sum, code_analysis_sca_committers_hwm_sum, code_security_host_top99p_sum, container_avg_sum, container_excl_agent_avg_sum, container_hwm_sum, csm_container_enterprise_compliance_count_agg_sum, csm_container_enterprise_cws_count_agg_sum, csm_container_enterprise_total_count_agg_sum, csm_host_enterprise_aas_host_count_top99p_sum, csm_host_enterprise_aws_host_count_top99p_sum, csm_host_enterprise_azure_host_count_top99p_sum, csm_host_enterprise_compliance_host_count_top99p_sum, csm_host_enterprise_cws_host_count_top99p_sum, csm_host_enterprise_gcp_host_count_top99p_sum, csm_host_enterprise_total_host_count_top99p_sum, cspm_aas_host_top99p_sum, cspm_aws_host_top99p_sum, cspm_azure_host_top99p_sum, cspm_container_avg_sum, cspm_container_hwm_sum, cspm_gcp_host_top99p_sum, cspm_host_top99p_sum, custom_historical_ts_sum, custom_live_ts_sum, custom_ts_sum, cws_container_avg_sum, cws_fargate_task_avg_sum, cws_host_top99p_sum, data_jobs_monitoring_host_hr_agg_sum, dbm_host_top99p_sum, dbm_queries_avg_sum, end_date, eph_infra_host_agent_agg_sum, eph_infra_host_alibaba_agg_sum, eph_infra_host_aws_agg_sum, eph_infra_host_azure_agg_sum, eph_infra_host_ent_agg_sum, eph_infra_host_gcp_agg_sum, eph_infra_host_heroku_agg_sum, eph_infra_host_only_aas_agg_sum, eph_infra_host_only_vsphere_agg_sum, eph_infra_host_opentelemetry_agg_sum, eph_infra_host_opentelemetry_apm_agg_sum, eph_infra_host_pro_agg_sum, eph_infra_host_proplus_agg_sum, error_tracking_error_events_agg_sum, error_tracking_events_agg_sum, error_tracking_rum_error_events_agg_sum, fargate_container_profiler_profiling_fargate_avg_sum, fargate_container_profiler_profiling_fargate_eks_avg_sum, fargate_tasks_count_avg_sum, fargate_tasks_count_hwm_sum, flex_logs_compute_large_avg_sum, flex_logs_compute_medium_avg_sum, flex_logs_compute_small_avg_sum, flex_logs_compute_xsmall_avg_sum, flex_logs_starter_avg_sum, flex_logs_starter_storage_index_avg_sum, flex_logs_starter_storage_retention_adjustment_avg_sum, flex_stored_logs_avg_sum, forwarding_events_bytes_agg_sum, gcp_host_top99p_sum, heroku_host_top99p_sum, incident_management_monthly_active_users_hwm_sum, indexed_events_count_agg_sum, infra_host_top99p_sum, ingested_events_bytes_agg_sum, iot_device_agg_sum, iot_device_top99p_sum, last_updated, live_indexed_events_agg_sum, live_ingested_bytes_agg_sum, logs_by_retention, mobile_rum_lite_session_count_agg_sum, mobile_rum_session_count_agg_sum, mobile_rum_session_count_android_agg_sum, mobile_rum_session_count_flutter_agg_sum, mobile_rum_session_count_ios_agg_sum, mobile_rum_session_count_reactnative_agg_sum, mobile_rum_session_count_roku_agg_sum, mobile_rum_units_agg_sum, ndm_netflow_events_agg_sum, netflow_indexed_events_count_agg_sum, npm_host_top99p_sum, observability_pipelines_bytes_processed_agg_sum, oci_host_agg_sum, oci_host_top99p_sum, online_archive_events_count_agg_sum, opentelemetry_apm_host_top99p_sum, opentelemetry_host_top99p_sum, profiling_aas_count_top99p_sum, profiling_container_agent_count_avg, profiling_host_count_top99p_sum, rehydrated_indexed_events_agg_sum, rehydrated_ingested_bytes_agg_sum, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_agg_sum, rum_browser_lite_session_count_agg_sum, rum_browser_replay_session_count_agg_sum, rum_lite_session_count_agg_sum, rum_mobile_legacy_session_count_android_agg_sum, rum_mobile_legacy_session_count_flutter_agg_sum, rum_mobile_legacy_session_count_ios_agg_sum, rum_mobile_legacy_session_count_reactnative_agg_sum, rum_mobile_legacy_session_count_roku_agg_sum, rum_mobile_lite_session_count_android_agg_sum, rum_mobile_lite_session_count_flutter_agg_sum, rum_mobile_lite_session_count_ios_agg_sum, rum_mobile_lite_session_count_reactnative_agg_sum, rum_mobile_lite_session_count_roku_agg_sum, rum_mobile_replay_session_count_android_agg_sum, rum_mobile_replay_session_count_ios_agg_sum, rum_mobile_replay_session_count_reactnative_agg_sum, rum_replay_session_count_agg_sum, rum_session_count_agg_sum, rum_total_session_count_agg_sum, rum_units_agg_sum, sca_fargate_count_avg_sum, sca_fargate_count_hwm_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg_sum, serverless_apps_google_count_avg_sum, serverless_apps_total_count_avg_sum, siem_analyzed_logs_add_on_count_agg_sum, start_date, synthetics_browser_check_calls_count_agg_sum, synthetics_check_calls_count_agg_sum, synthetics_mobile_test_runs_agg_sum, synthetics_parallel_testing_max_slots_hwm_sum, trace_search_indexed_events_count_agg_sum, twol_ingested_events_bytes_agg_sum, universal_service_monitoring_host_top99p_sum, usage, vsphere_host_top99p_sum, vuln_management_host_count_top99p_sum, workflow_executions_usage_agg_sum, additional_properties].hash
+      [agent_host_top99p_sum, apm_azure_app_service_host_top99p_sum, apm_devsecops_host_top99p_sum, apm_fargate_count_avg_sum, apm_host_top99p_sum, appsec_fargate_count_avg_sum, asm_serverless_agg_sum, audit_logs_lines_indexed_agg_sum, audit_trail_enabled_hwm_sum, avg_profiled_fargate_tasks_sum, aws_host_top99p_sum, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p_sum, azure_host_top99p_sum, billable_ingested_bytes_agg_sum, browser_rum_lite_session_count_agg_sum, browser_rum_replay_session_count_agg_sum, browser_rum_units_agg_sum, ci_pipeline_indexed_spans_agg_sum, ci_test_indexed_spans_agg_sum, ci_visibility_itr_committers_hwm_sum, ci_visibility_pipeline_committers_hwm_sum, ci_visibility_test_committers_hwm_sum, cloud_cost_management_aws_host_count_avg_sum, cloud_cost_management_azure_host_count_avg_sum, cloud_cost_management_gcp_host_count_avg_sum, cloud_cost_management_host_count_avg_sum, cloud_siem_events_agg_sum, code_analysis_sa_committers_hwm_sum, code_analysis_sca_committers_hwm_sum, code_security_host_top99p_sum, container_avg_sum, container_excl_agent_avg_sum, container_hwm_sum, csm_container_enterprise_compliance_count_agg_sum, csm_container_enterprise_cws_count_agg_sum, csm_container_enterprise_total_count_agg_sum, csm_host_enterprise_aas_host_count_top99p_sum, csm_host_enterprise_aws_host_count_top99p_sum, csm_host_enterprise_azure_host_count_top99p_sum, csm_host_enterprise_compliance_host_count_top99p_sum, csm_host_enterprise_cws_host_count_top99p_sum, csm_host_enterprise_gcp_host_count_top99p_sum, csm_host_enterprise_total_host_count_top99p_sum, cspm_aas_host_top99p_sum, cspm_aws_host_top99p_sum, cspm_azure_host_top99p_sum, cspm_container_avg_sum, cspm_container_hwm_sum, cspm_gcp_host_top99p_sum, cspm_host_top99p_sum, custom_historical_ts_sum, custom_live_ts_sum, custom_ts_sum, cws_container_avg_sum, cws_fargate_task_avg_sum, cws_host_top99p_sum, data_jobs_monitoring_host_hr_agg_sum, dbm_host_top99p_sum, dbm_queries_avg_sum, end_date, eph_infra_host_agent_agg_sum, eph_infra_host_alibaba_agg_sum, eph_infra_host_aws_agg_sum, eph_infra_host_azure_agg_sum, eph_infra_host_ent_agg_sum, eph_infra_host_gcp_agg_sum, eph_infra_host_heroku_agg_sum, eph_infra_host_only_aas_agg_sum, eph_infra_host_only_vsphere_agg_sum, eph_infra_host_opentelemetry_agg_sum, eph_infra_host_opentelemetry_apm_agg_sum, eph_infra_host_pro_agg_sum, eph_infra_host_proplus_agg_sum, error_tracking_error_events_agg_sum, error_tracking_events_agg_sum, error_tracking_rum_error_events_agg_sum, fargate_container_profiler_profiling_fargate_avg_sum, fargate_container_profiler_profiling_fargate_eks_avg_sum, fargate_tasks_count_avg_sum, fargate_tasks_count_hwm_sum, flex_logs_compute_large_avg_sum, flex_logs_compute_medium_avg_sum, flex_logs_compute_small_avg_sum, flex_logs_compute_xsmall_avg_sum, flex_logs_starter_avg_sum, flex_logs_starter_storage_index_avg_sum, flex_logs_starter_storage_retention_adjustment_avg_sum, flex_stored_logs_avg_sum, forwarding_events_bytes_agg_sum, gcp_host_top99p_sum, heroku_host_top99p_sum, incident_management_monthly_active_users_hwm_sum, indexed_events_count_agg_sum, infra_host_top99p_sum, ingested_events_bytes_agg_sum, iot_device_agg_sum, iot_device_top99p_sum, last_updated, live_indexed_events_agg_sum, live_ingested_bytes_agg_sum, logs_by_retention, mobile_rum_lite_session_count_agg_sum, mobile_rum_session_count_agg_sum, mobile_rum_session_count_android_agg_sum, mobile_rum_session_count_flutter_agg_sum, mobile_rum_session_count_ios_agg_sum, mobile_rum_session_count_reactnative_agg_sum, mobile_rum_session_count_roku_agg_sum, mobile_rum_units_agg_sum, ndm_netflow_events_agg_sum, netflow_indexed_events_count_agg_sum, npm_host_top99p_sum, observability_pipelines_bytes_processed_agg_sum, oci_host_agg_sum, oci_host_top99p_sum, online_archive_events_count_agg_sum, opentelemetry_apm_host_top99p_sum, opentelemetry_host_top99p_sum, profiling_aas_count_top99p_sum, profiling_container_agent_count_avg, profiling_host_count_top99p_sum, rehydrated_indexed_events_agg_sum, rehydrated_ingested_bytes_agg_sum, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_agg_sum, rum_browser_lite_session_count_agg_sum, rum_browser_replay_session_count_agg_sum, rum_lite_session_count_agg_sum, rum_mobile_legacy_session_count_android_agg_sum, rum_mobile_legacy_session_count_flutter_agg_sum, rum_mobile_legacy_session_count_ios_agg_sum, rum_mobile_legacy_session_count_reactnative_agg_sum, rum_mobile_legacy_session_count_roku_agg_sum, rum_mobile_lite_session_count_android_agg_sum, rum_mobile_lite_session_count_flutter_agg_sum, rum_mobile_lite_session_count_ios_agg_sum, rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum, rum_mobile_lite_session_count_reactnative_agg_sum, rum_mobile_lite_session_count_roku_agg_sum, rum_mobile_lite_session_count_unity_agg_sum, rum_mobile_replay_session_count_android_agg_sum, rum_mobile_replay_session_count_ios_agg_sum, rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum, rum_mobile_replay_session_count_reactnative_agg_sum, rum_replay_session_count_agg_sum, rum_session_count_agg_sum, rum_total_session_count_agg_sum, rum_units_agg_sum, sca_fargate_count_avg_sum, sca_fargate_count_hwm_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg_sum, serverless_apps_google_count_avg_sum, serverless_apps_total_count_avg_sum, siem_analyzed_logs_add_on_count_agg_sum, start_date, synthetics_browser_check_calls_count_agg_sum, synthetics_check_calls_count_agg_sum, synthetics_mobile_test_runs_agg_sum, synthetics_parallel_testing_max_slots_hwm_sum, trace_search_indexed_events_count_agg_sum, twol_ingested_events_bytes_agg_sum, universal_service_monitoring_host_top99p_sum, usage, vsphere_host_top99p_sum, vuln_management_host_count_top99p_sum, workflow_executions_usage_agg_sum, additional_properties].hash
     end
   end
 end

From 911403c28da979763fa8d4f4e5c352bc853afbdf Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Mon, 24 Mar 2025 10:50:25 -0400
Subject: [PATCH 08/17] Regenerate client from commit 0f5c928e of spec repo
 (#2290)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                                 |  8 ++++----
 .generator/schemas/v1/openapi.yaml                | 15 +++++++++++++++
 .../v1/models/usage_summary_date.rb               | 12 +++++++++++-
 .../v1/models/usage_summary_date_org.rb           | 12 +++++++++++-
 .../v1/models/usage_summary_response.rb           | 12 +++++++++++-
 5 files changed, 52 insertions(+), 7 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index 63208ae61dc..e372d38ea2f 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-18 16:20:32.486865",
-            "spec_repo_commit": "78376979"
+            "regenerated": "2025-03-20 15:01:21.019349",
+            "spec_repo_commit": "0f5c928e"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-18 16:20:32.502823",
-            "spec_repo_commit": "78376979"
+            "regenerated": "2025-03-20 15:01:21.035270",
+            "spec_repo_commit": "0f5c928e"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml
index ee759304973..6c4f6966d1a 100644
--- a/.generator/schemas/v1/openapi.yaml
+++ b/.generator/schemas/v1/openapi.yaml
@@ -20315,6 +20315,11 @@ components:
             Plus over all hours in the current date for the given org.
           format: int64
           type: integer
+        error_tracking_apm_error_events_sum:
+          description: Shows the sum of all Error Tracking APM error events over all
+            hours in the current date for the given org.
+          format: int64
+          type: integer
         error_tracking_error_events_sum:
           description: Shows the sum of all Error Tracking error events over all hours
             in the current date for the given org.
@@ -21200,6 +21205,11 @@ components:
             Plus over all hours in the current date for the given org.
           format: int64
           type: integer
+        error_tracking_apm_error_events_sum:
+          description: Shows the sum of all Error Tracking APM error events over all
+            hours in the current date for the given org.
+          format: int64
+          type: integer
         error_tracking_error_events_sum:
           description: Shows the sum of all Error Tracking error events over all hours
             in the current date for the given org.
@@ -22090,6 +22100,11 @@ components:
             Plus over all hours in the current month for all organizations.
           format: int64
           type: integer
+        error_tracking_apm_error_events_agg_sum:
+          description: Shows the sum of all Error Tracking APM error events over all
+            hours in the current month for all organizations.
+          format: int64
+          type: integer
         error_tracking_error_events_agg_sum:
           description: Shows the sum of all Error Tracking error events over all hours
             in the current month for all organizations.
diff --git a/lib/datadog_api_client/v1/models/usage_summary_date.rb b/lib/datadog_api_client/v1/models/usage_summary_date.rb
index b25ebcb038d..9086fe50747 100644
--- a/lib/datadog_api_client/v1/models/usage_summary_date.rb
+++ b/lib/datadog_api_client/v1/models/usage_summary_date.rb
@@ -237,6 +237,9 @@ class UsageSummaryDate
     # Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current date for the given org.
     attr_accessor :eph_infra_host_proplus_sum
 
+    # Shows the sum of all Error Tracking APM error events over all hours in the current date for the given org.
+    attr_accessor :error_tracking_apm_error_events_sum
+
     # Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
     attr_accessor :error_tracking_error_events_sum
 
@@ -585,6 +588,7 @@ def self.attribute_map
         :'eph_infra_host_opentelemetry_sum' => :'eph_infra_host_opentelemetry_sum',
         :'eph_infra_host_pro_sum' => :'eph_infra_host_pro_sum',
         :'eph_infra_host_proplus_sum' => :'eph_infra_host_proplus_sum',
+        :'error_tracking_apm_error_events_sum' => :'error_tracking_apm_error_events_sum',
         :'error_tracking_error_events_sum' => :'error_tracking_error_events_sum',
         :'error_tracking_events_sum' => :'error_tracking_events_sum',
         :'error_tracking_rum_error_events_sum' => :'error_tracking_rum_error_events_sum',
@@ -754,6 +758,7 @@ def self.openapi_types
         :'eph_infra_host_opentelemetry_sum' => :'Integer',
         :'eph_infra_host_pro_sum' => :'Integer',
         :'eph_infra_host_proplus_sum' => :'Integer',
+        :'error_tracking_apm_error_events_sum' => :'Integer',
         :'error_tracking_error_events_sum' => :'Integer',
         :'error_tracking_events_sum' => :'Integer',
         :'error_tracking_rum_error_events_sum' => :'Integer',
@@ -1153,6 +1158,10 @@ def initialize(attributes = {})
         self.eph_infra_host_proplus_sum = attributes[:'eph_infra_host_proplus_sum']
       end
 
+      if attributes.key?(:'error_tracking_apm_error_events_sum')
+        self.error_tracking_apm_error_events_sum = attributes[:'error_tracking_apm_error_events_sum']
+      end
+
       if attributes.key?(:'error_tracking_error_events_sum')
         self.error_tracking_error_events_sum = attributes[:'error_tracking_error_events_sum']
       end
@@ -1614,6 +1623,7 @@ def ==(o)
           eph_infra_host_opentelemetry_sum == o.eph_infra_host_opentelemetry_sum &&
           eph_infra_host_pro_sum == o.eph_infra_host_pro_sum &&
           eph_infra_host_proplus_sum == o.eph_infra_host_proplus_sum &&
+          error_tracking_apm_error_events_sum == o.error_tracking_apm_error_events_sum &&
           error_tracking_error_events_sum == o.error_tracking_error_events_sum &&
           error_tracking_events_sum == o.error_tracking_events_sum &&
           error_tracking_rum_error_events_sum == o.error_tracking_rum_error_events_sum &&
@@ -1711,7 +1721,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [agent_host_top99p, apm_azure_app_service_host_top99p, apm_devsecops_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, asm_serverless_sum, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_gcp_host_count_avg, cloud_cost_management_host_count_avg, cloud_siem_events_sum, code_analysis_sa_committers_hwm, code_analysis_sca_committers_hwm, code_security_host_top99p, container_avg, container_excl_agent_avg, container_hwm, csm_container_enterprise_compliance_count_sum, csm_container_enterprise_cws_count_sum, csm_container_enterprise_total_count_sum, csm_host_enterprise_aas_host_count_top99p, csm_host_enterprise_aws_host_count_top99p, csm_host_enterprise_azure_host_count_top99p, csm_host_enterprise_compliance_host_count_top99p, csm_host_enterprise_cws_host_count_top99p, csm_host_enterprise_gcp_host_count_top99p, csm_host_enterprise_total_host_count_top99p, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_fargate_task_avg, cws_host_top99p, data_jobs_monitoring_host_hr_sum, date, dbm_host_top99p, dbm_queries_count_avg, eph_infra_host_agent_sum, eph_infra_host_alibaba_sum, eph_infra_host_aws_sum, eph_infra_host_azure_sum, eph_infra_host_ent_sum, eph_infra_host_gcp_sum, eph_infra_host_heroku_sum, eph_infra_host_only_aas_sum, eph_infra_host_only_vsphere_sum, eph_infra_host_opentelemetry_apm_sum, eph_infra_host_opentelemetry_sum, eph_infra_host_pro_sum, eph_infra_host_proplus_sum, error_tracking_error_events_sum, error_tracking_events_sum, error_tracking_rum_error_events_sum, fargate_container_profiler_profiling_fargate_avg, fargate_container_profiler_profiling_fargate_eks_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, flex_logs_compute_large_avg, flex_logs_compute_medium_avg, flex_logs_compute_small_avg, flex_logs_compute_xsmall_avg, flex_logs_starter_avg, flex_logs_starter_storage_index_avg, flex_logs_starter_storage_retention_adjustment_avg, flex_stored_logs_avg, forwarding_events_bytes_sum, gcp_host_top99p, heroku_host_top99p, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_sum, iot_device_top99p, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, ndm_netflow_events_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, oci_host_sum, oci_host_top99p, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, orgs, profiling_aas_count_top99p, profiling_host_top99p, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_sum, rum_browser_lite_session_count_sum, rum_browser_replay_session_count_sum, rum_lite_session_count_sum, rum_mobile_legacy_session_count_android_sum, rum_mobile_legacy_session_count_flutter_sum, rum_mobile_legacy_session_count_ios_sum, rum_mobile_legacy_session_count_reactnative_sum, rum_mobile_legacy_session_count_roku_sum, rum_mobile_lite_session_count_android_sum, rum_mobile_lite_session_count_flutter_sum, rum_mobile_lite_session_count_ios_sum, rum_mobile_lite_session_count_kotlinmultiplatform_sum, rum_mobile_lite_session_count_reactnative_sum, rum_mobile_lite_session_count_roku_sum, rum_mobile_lite_session_count_unity_sum, rum_mobile_replay_session_count_android_sum, rum_mobile_replay_session_count_ios_sum, rum_mobile_replay_session_count_kotlinmultiplatform_sum, rum_mobile_replay_session_count_reactnative_sum, rum_replay_session_count_sum, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sca_fargate_count_avg, sca_fargate_count_hwm, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg, serverless_apps_google_count_avg, serverless_apps_total_count_avg, siem_analyzed_logs_add_on_count_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_mobile_test_runs_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum, additional_properties].hash
+      [agent_host_top99p, apm_azure_app_service_host_top99p, apm_devsecops_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, asm_serverless_sum, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_gcp_host_count_avg, cloud_cost_management_host_count_avg, cloud_siem_events_sum, code_analysis_sa_committers_hwm, code_analysis_sca_committers_hwm, code_security_host_top99p, container_avg, container_excl_agent_avg, container_hwm, csm_container_enterprise_compliance_count_sum, csm_container_enterprise_cws_count_sum, csm_container_enterprise_total_count_sum, csm_host_enterprise_aas_host_count_top99p, csm_host_enterprise_aws_host_count_top99p, csm_host_enterprise_azure_host_count_top99p, csm_host_enterprise_compliance_host_count_top99p, csm_host_enterprise_cws_host_count_top99p, csm_host_enterprise_gcp_host_count_top99p, csm_host_enterprise_total_host_count_top99p, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_fargate_task_avg, cws_host_top99p, data_jobs_monitoring_host_hr_sum, date, dbm_host_top99p, dbm_queries_count_avg, eph_infra_host_agent_sum, eph_infra_host_alibaba_sum, eph_infra_host_aws_sum, eph_infra_host_azure_sum, eph_infra_host_ent_sum, eph_infra_host_gcp_sum, eph_infra_host_heroku_sum, eph_infra_host_only_aas_sum, eph_infra_host_only_vsphere_sum, eph_infra_host_opentelemetry_apm_sum, eph_infra_host_opentelemetry_sum, eph_infra_host_pro_sum, eph_infra_host_proplus_sum, error_tracking_apm_error_events_sum, error_tracking_error_events_sum, error_tracking_events_sum, error_tracking_rum_error_events_sum, fargate_container_profiler_profiling_fargate_avg, fargate_container_profiler_profiling_fargate_eks_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, flex_logs_compute_large_avg, flex_logs_compute_medium_avg, flex_logs_compute_small_avg, flex_logs_compute_xsmall_avg, flex_logs_starter_avg, flex_logs_starter_storage_index_avg, flex_logs_starter_storage_retention_adjustment_avg, flex_stored_logs_avg, forwarding_events_bytes_sum, gcp_host_top99p, heroku_host_top99p, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_sum, iot_device_top99p, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, ndm_netflow_events_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, oci_host_sum, oci_host_top99p, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, orgs, profiling_aas_count_top99p, profiling_host_top99p, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_sum, rum_browser_lite_session_count_sum, rum_browser_replay_session_count_sum, rum_lite_session_count_sum, rum_mobile_legacy_session_count_android_sum, rum_mobile_legacy_session_count_flutter_sum, rum_mobile_legacy_session_count_ios_sum, rum_mobile_legacy_session_count_reactnative_sum, rum_mobile_legacy_session_count_roku_sum, rum_mobile_lite_session_count_android_sum, rum_mobile_lite_session_count_flutter_sum, rum_mobile_lite_session_count_ios_sum, rum_mobile_lite_session_count_kotlinmultiplatform_sum, rum_mobile_lite_session_count_reactnative_sum, rum_mobile_lite_session_count_roku_sum, rum_mobile_lite_session_count_unity_sum, rum_mobile_replay_session_count_android_sum, rum_mobile_replay_session_count_ios_sum, rum_mobile_replay_session_count_kotlinmultiplatform_sum, rum_mobile_replay_session_count_reactnative_sum, rum_replay_session_count_sum, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sca_fargate_count_avg, sca_fargate_count_hwm, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg, serverless_apps_google_count_avg, serverless_apps_total_count_avg, siem_analyzed_logs_add_on_count_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_mobile_test_runs_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum, additional_properties].hash
     end
   end
 end
diff --git a/lib/datadog_api_client/v1/models/usage_summary_date_org.rb b/lib/datadog_api_client/v1/models/usage_summary_date_org.rb
index 6f2c387f370..58798d6ac8a 100644
--- a/lib/datadog_api_client/v1/models/usage_summary_date_org.rb
+++ b/lib/datadog_api_client/v1/models/usage_summary_date_org.rb
@@ -246,6 +246,9 @@ class UsageSummaryDateOrg
     # Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current date for the given org.
     attr_accessor :eph_infra_host_proplus_sum
 
+    # Shows the sum of all Error Tracking APM error events over all hours in the current date for the given org.
+    attr_accessor :error_tracking_apm_error_events_sum
+
     # Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
     attr_accessor :error_tracking_error_events_sum
 
@@ -606,6 +609,7 @@ def self.attribute_map
         :'eph_infra_host_opentelemetry_sum' => :'eph_infra_host_opentelemetry_sum',
         :'eph_infra_host_pro_sum' => :'eph_infra_host_pro_sum',
         :'eph_infra_host_proplus_sum' => :'eph_infra_host_proplus_sum',
+        :'error_tracking_apm_error_events_sum' => :'error_tracking_apm_error_events_sum',
         :'error_tracking_error_events_sum' => :'error_tracking_error_events_sum',
         :'error_tracking_events_sum' => :'error_tracking_events_sum',
         :'error_tracking_rum_error_events_sum' => :'error_tracking_rum_error_events_sum',
@@ -781,6 +785,7 @@ def self.openapi_types
         :'eph_infra_host_opentelemetry_sum' => :'Integer',
         :'eph_infra_host_pro_sum' => :'Integer',
         :'eph_infra_host_proplus_sum' => :'Integer',
+        :'error_tracking_apm_error_events_sum' => :'Integer',
         :'error_tracking_error_events_sum' => :'Integer',
         :'error_tracking_events_sum' => :'Integer',
         :'error_tracking_rum_error_events_sum' => :'Integer',
@@ -1195,6 +1200,10 @@ def initialize(attributes = {})
         self.eph_infra_host_proplus_sum = attributes[:'eph_infra_host_proplus_sum']
       end
 
+      if attributes.key?(:'error_tracking_apm_error_events_sum')
+        self.error_tracking_apm_error_events_sum = attributes[:'error_tracking_apm_error_events_sum']
+      end
+
       if attributes.key?(:'error_tracking_error_events_sum')
         self.error_tracking_error_events_sum = attributes[:'error_tracking_error_events_sum']
       end
@@ -1669,6 +1678,7 @@ def ==(o)
           eph_infra_host_opentelemetry_sum == o.eph_infra_host_opentelemetry_sum &&
           eph_infra_host_pro_sum == o.eph_infra_host_pro_sum &&
           eph_infra_host_proplus_sum == o.eph_infra_host_proplus_sum &&
+          error_tracking_apm_error_events_sum == o.error_tracking_apm_error_events_sum &&
           error_tracking_error_events_sum == o.error_tracking_error_events_sum &&
           error_tracking_events_sum == o.error_tracking_events_sum &&
           error_tracking_rum_error_events_sum == o.error_tracking_rum_error_events_sum &&
@@ -1769,7 +1779,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [account_name, account_public_id, agent_host_top99p, apm_azure_app_service_host_top99p, apm_devsecops_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, asm_serverless_sum, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_gcp_host_count_avg, cloud_cost_management_host_count_avg, cloud_siem_events_sum, code_analysis_sa_committers_hwm, code_analysis_sca_committers_hwm, code_security_host_top99p, container_avg, container_excl_agent_avg, container_hwm, csm_container_enterprise_compliance_count_sum, csm_container_enterprise_cws_count_sum, csm_container_enterprise_total_count_sum, csm_host_enterprise_aas_host_count_top99p, csm_host_enterprise_aws_host_count_top99p, csm_host_enterprise_azure_host_count_top99p, csm_host_enterprise_compliance_host_count_top99p, csm_host_enterprise_cws_host_count_top99p, csm_host_enterprise_gcp_host_count_top99p, csm_host_enterprise_total_host_count_top99p, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_historical_ts_avg, custom_live_ts_avg, custom_ts_avg, cws_container_count_avg, cws_fargate_task_avg, cws_host_top99p, data_jobs_monitoring_host_hr_sum, dbm_host_top99p_sum, dbm_queries_avg_sum, eph_infra_host_agent_sum, eph_infra_host_alibaba_sum, eph_infra_host_aws_sum, eph_infra_host_azure_sum, eph_infra_host_ent_sum, eph_infra_host_gcp_sum, eph_infra_host_heroku_sum, eph_infra_host_only_aas_sum, eph_infra_host_only_vsphere_sum, eph_infra_host_opentelemetry_apm_sum, eph_infra_host_opentelemetry_sum, eph_infra_host_pro_sum, eph_infra_host_proplus_sum, error_tracking_error_events_sum, error_tracking_events_sum, error_tracking_rum_error_events_sum, fargate_container_profiler_profiling_fargate_avg, fargate_container_profiler_profiling_fargate_eks_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, flex_logs_compute_large_avg, flex_logs_compute_medium_avg, flex_logs_compute_small_avg, flex_logs_compute_xsmall_avg, flex_logs_starter_avg, flex_logs_starter_storage_index_avg, flex_logs_starter_storage_retention_adjustment_avg, flex_stored_logs_avg, forwarding_events_bytes_sum, gcp_host_top99p, heroku_host_top99p, id, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_agg_sum, iot_device_top99p_sum, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, name, ndm_netflow_events_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, oci_host_sum, oci_host_top99p, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, profiling_aas_count_top99p, profiling_host_top99p, public_id, region, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_sum, rum_browser_lite_session_count_sum, rum_browser_replay_session_count_sum, rum_lite_session_count_sum, rum_mobile_legacy_session_count_android_sum, rum_mobile_legacy_session_count_flutter_sum, rum_mobile_legacy_session_count_ios_sum, rum_mobile_legacy_session_count_reactnative_sum, rum_mobile_legacy_session_count_roku_sum, rum_mobile_lite_session_count_android_sum, rum_mobile_lite_session_count_flutter_sum, rum_mobile_lite_session_count_ios_sum, rum_mobile_lite_session_count_kotlinmultiplatform_sum, rum_mobile_lite_session_count_reactnative_sum, rum_mobile_lite_session_count_roku_sum, rum_mobile_lite_session_count_unity_sum, rum_mobile_replay_session_count_android_sum, rum_mobile_replay_session_count_ios_sum, rum_mobile_replay_session_count_kotlinmultiplatform_sum, rum_mobile_replay_session_count_reactnative_sum, rum_replay_session_count_sum, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sca_fargate_count_avg, sca_fargate_count_hwm, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg, serverless_apps_google_count_avg, serverless_apps_total_count_avg, siem_analyzed_logs_add_on_count_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_mobile_test_runs_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum, additional_properties].hash
+      [account_name, account_public_id, agent_host_top99p, apm_azure_app_service_host_top99p, apm_devsecops_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, asm_serverless_sum, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_gcp_host_count_avg, cloud_cost_management_host_count_avg, cloud_siem_events_sum, code_analysis_sa_committers_hwm, code_analysis_sca_committers_hwm, code_security_host_top99p, container_avg, container_excl_agent_avg, container_hwm, csm_container_enterprise_compliance_count_sum, csm_container_enterprise_cws_count_sum, csm_container_enterprise_total_count_sum, csm_host_enterprise_aas_host_count_top99p, csm_host_enterprise_aws_host_count_top99p, csm_host_enterprise_azure_host_count_top99p, csm_host_enterprise_compliance_host_count_top99p, csm_host_enterprise_cws_host_count_top99p, csm_host_enterprise_gcp_host_count_top99p, csm_host_enterprise_total_host_count_top99p, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_historical_ts_avg, custom_live_ts_avg, custom_ts_avg, cws_container_count_avg, cws_fargate_task_avg, cws_host_top99p, data_jobs_monitoring_host_hr_sum, dbm_host_top99p_sum, dbm_queries_avg_sum, eph_infra_host_agent_sum, eph_infra_host_alibaba_sum, eph_infra_host_aws_sum, eph_infra_host_azure_sum, eph_infra_host_ent_sum, eph_infra_host_gcp_sum, eph_infra_host_heroku_sum, eph_infra_host_only_aas_sum, eph_infra_host_only_vsphere_sum, eph_infra_host_opentelemetry_apm_sum, eph_infra_host_opentelemetry_sum, eph_infra_host_pro_sum, eph_infra_host_proplus_sum, error_tracking_apm_error_events_sum, error_tracking_error_events_sum, error_tracking_events_sum, error_tracking_rum_error_events_sum, fargate_container_profiler_profiling_fargate_avg, fargate_container_profiler_profiling_fargate_eks_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, flex_logs_compute_large_avg, flex_logs_compute_medium_avg, flex_logs_compute_small_avg, flex_logs_compute_xsmall_avg, flex_logs_starter_avg, flex_logs_starter_storage_index_avg, flex_logs_starter_storage_retention_adjustment_avg, flex_stored_logs_avg, forwarding_events_bytes_sum, gcp_host_top99p, heroku_host_top99p, id, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_agg_sum, iot_device_top99p_sum, mobile_rum_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, name, ndm_netflow_events_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, oci_host_sum, oci_host_top99p, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, profiling_aas_count_top99p, profiling_host_top99p, public_id, region, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_sum, rum_browser_lite_session_count_sum, rum_browser_replay_session_count_sum, rum_lite_session_count_sum, rum_mobile_legacy_session_count_android_sum, rum_mobile_legacy_session_count_flutter_sum, rum_mobile_legacy_session_count_ios_sum, rum_mobile_legacy_session_count_reactnative_sum, rum_mobile_legacy_session_count_roku_sum, rum_mobile_lite_session_count_android_sum, rum_mobile_lite_session_count_flutter_sum, rum_mobile_lite_session_count_ios_sum, rum_mobile_lite_session_count_kotlinmultiplatform_sum, rum_mobile_lite_session_count_reactnative_sum, rum_mobile_lite_session_count_roku_sum, rum_mobile_lite_session_count_unity_sum, rum_mobile_replay_session_count_android_sum, rum_mobile_replay_session_count_ios_sum, rum_mobile_replay_session_count_kotlinmultiplatform_sum, rum_mobile_replay_session_count_reactnative_sum, rum_replay_session_count_sum, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sca_fargate_count_avg, sca_fargate_count_hwm, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg, serverless_apps_google_count_avg, serverless_apps_total_count_avg, siem_analyzed_logs_add_on_count_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_mobile_test_runs_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum, additional_properties].hash
     end
   end
 end
diff --git a/lib/datadog_api_client/v1/models/usage_summary_response.rb b/lib/datadog_api_client/v1/models/usage_summary_response.rb
index b934b9625dd..f70f70d4596 100644
--- a/lib/datadog_api_client/v1/models/usage_summary_response.rb
+++ b/lib/datadog_api_client/v1/models/usage_summary_response.rb
@@ -246,6 +246,9 @@ class UsageSummaryResponse
     # Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current month for all organizations.
     attr_accessor :eph_infra_host_proplus_agg_sum
 
+    # Shows the sum of all Error Tracking APM error events over all hours in the current month for all organizations.
+    attr_accessor :error_tracking_apm_error_events_agg_sum
+
     # Shows the sum of all Error Tracking error events over all hours in the current month for all organizations.
     attr_accessor :error_tracking_error_events_agg_sum
 
@@ -621,6 +624,7 @@ def self.attribute_map
         :'eph_infra_host_opentelemetry_apm_agg_sum' => :'eph_infra_host_opentelemetry_apm_agg_sum',
         :'eph_infra_host_pro_agg_sum' => :'eph_infra_host_pro_agg_sum',
         :'eph_infra_host_proplus_agg_sum' => :'eph_infra_host_proplus_agg_sum',
+        :'error_tracking_apm_error_events_agg_sum' => :'error_tracking_apm_error_events_agg_sum',
         :'error_tracking_error_events_agg_sum' => :'error_tracking_error_events_agg_sum',
         :'error_tracking_events_agg_sum' => :'error_tracking_events_agg_sum',
         :'error_tracking_rum_error_events_agg_sum' => :'error_tracking_rum_error_events_agg_sum',
@@ -801,6 +805,7 @@ def self.openapi_types
         :'eph_infra_host_opentelemetry_apm_agg_sum' => :'Integer',
         :'eph_infra_host_pro_agg_sum' => :'Integer',
         :'eph_infra_host_proplus_agg_sum' => :'Integer',
+        :'error_tracking_apm_error_events_agg_sum' => :'Integer',
         :'error_tracking_error_events_agg_sum' => :'Integer',
         :'error_tracking_events_agg_sum' => :'Integer',
         :'error_tracking_rum_error_events_agg_sum' => :'Integer',
@@ -1220,6 +1225,10 @@ def initialize(attributes = {})
         self.eph_infra_host_proplus_agg_sum = attributes[:'eph_infra_host_proplus_agg_sum']
       end
 
+      if attributes.key?(:'error_tracking_apm_error_events_agg_sum')
+        self.error_tracking_apm_error_events_agg_sum = attributes[:'error_tracking_apm_error_events_agg_sum']
+      end
+
       if attributes.key?(:'error_tracking_error_events_agg_sum')
         self.error_tracking_error_events_agg_sum = attributes[:'error_tracking_error_events_agg_sum']
       end
@@ -1716,6 +1725,7 @@ def ==(o)
           eph_infra_host_opentelemetry_apm_agg_sum == o.eph_infra_host_opentelemetry_apm_agg_sum &&
           eph_infra_host_pro_agg_sum == o.eph_infra_host_pro_agg_sum &&
           eph_infra_host_proplus_agg_sum == o.eph_infra_host_proplus_agg_sum &&
+          error_tracking_apm_error_events_agg_sum == o.error_tracking_apm_error_events_agg_sum &&
           error_tracking_error_events_agg_sum == o.error_tracking_error_events_agg_sum &&
           error_tracking_events_agg_sum == o.error_tracking_events_agg_sum &&
           error_tracking_rum_error_events_agg_sum == o.error_tracking_rum_error_events_agg_sum &&
@@ -1821,7 +1831,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [agent_host_top99p_sum, apm_azure_app_service_host_top99p_sum, apm_devsecops_host_top99p_sum, apm_fargate_count_avg_sum, apm_host_top99p_sum, appsec_fargate_count_avg_sum, asm_serverless_agg_sum, audit_logs_lines_indexed_agg_sum, audit_trail_enabled_hwm_sum, avg_profiled_fargate_tasks_sum, aws_host_top99p_sum, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p_sum, azure_host_top99p_sum, billable_ingested_bytes_agg_sum, browser_rum_lite_session_count_agg_sum, browser_rum_replay_session_count_agg_sum, browser_rum_units_agg_sum, ci_pipeline_indexed_spans_agg_sum, ci_test_indexed_spans_agg_sum, ci_visibility_itr_committers_hwm_sum, ci_visibility_pipeline_committers_hwm_sum, ci_visibility_test_committers_hwm_sum, cloud_cost_management_aws_host_count_avg_sum, cloud_cost_management_azure_host_count_avg_sum, cloud_cost_management_gcp_host_count_avg_sum, cloud_cost_management_host_count_avg_sum, cloud_siem_events_agg_sum, code_analysis_sa_committers_hwm_sum, code_analysis_sca_committers_hwm_sum, code_security_host_top99p_sum, container_avg_sum, container_excl_agent_avg_sum, container_hwm_sum, csm_container_enterprise_compliance_count_agg_sum, csm_container_enterprise_cws_count_agg_sum, csm_container_enterprise_total_count_agg_sum, csm_host_enterprise_aas_host_count_top99p_sum, csm_host_enterprise_aws_host_count_top99p_sum, csm_host_enterprise_azure_host_count_top99p_sum, csm_host_enterprise_compliance_host_count_top99p_sum, csm_host_enterprise_cws_host_count_top99p_sum, csm_host_enterprise_gcp_host_count_top99p_sum, csm_host_enterprise_total_host_count_top99p_sum, cspm_aas_host_top99p_sum, cspm_aws_host_top99p_sum, cspm_azure_host_top99p_sum, cspm_container_avg_sum, cspm_container_hwm_sum, cspm_gcp_host_top99p_sum, cspm_host_top99p_sum, custom_historical_ts_sum, custom_live_ts_sum, custom_ts_sum, cws_container_avg_sum, cws_fargate_task_avg_sum, cws_host_top99p_sum, data_jobs_monitoring_host_hr_agg_sum, dbm_host_top99p_sum, dbm_queries_avg_sum, end_date, eph_infra_host_agent_agg_sum, eph_infra_host_alibaba_agg_sum, eph_infra_host_aws_agg_sum, eph_infra_host_azure_agg_sum, eph_infra_host_ent_agg_sum, eph_infra_host_gcp_agg_sum, eph_infra_host_heroku_agg_sum, eph_infra_host_only_aas_agg_sum, eph_infra_host_only_vsphere_agg_sum, eph_infra_host_opentelemetry_agg_sum, eph_infra_host_opentelemetry_apm_agg_sum, eph_infra_host_pro_agg_sum, eph_infra_host_proplus_agg_sum, error_tracking_error_events_agg_sum, error_tracking_events_agg_sum, error_tracking_rum_error_events_agg_sum, fargate_container_profiler_profiling_fargate_avg_sum, fargate_container_profiler_profiling_fargate_eks_avg_sum, fargate_tasks_count_avg_sum, fargate_tasks_count_hwm_sum, flex_logs_compute_large_avg_sum, flex_logs_compute_medium_avg_sum, flex_logs_compute_small_avg_sum, flex_logs_compute_xsmall_avg_sum, flex_logs_starter_avg_sum, flex_logs_starter_storage_index_avg_sum, flex_logs_starter_storage_retention_adjustment_avg_sum, flex_stored_logs_avg_sum, forwarding_events_bytes_agg_sum, gcp_host_top99p_sum, heroku_host_top99p_sum, incident_management_monthly_active_users_hwm_sum, indexed_events_count_agg_sum, infra_host_top99p_sum, ingested_events_bytes_agg_sum, iot_device_agg_sum, iot_device_top99p_sum, last_updated, live_indexed_events_agg_sum, live_ingested_bytes_agg_sum, logs_by_retention, mobile_rum_lite_session_count_agg_sum, mobile_rum_session_count_agg_sum, mobile_rum_session_count_android_agg_sum, mobile_rum_session_count_flutter_agg_sum, mobile_rum_session_count_ios_agg_sum, mobile_rum_session_count_reactnative_agg_sum, mobile_rum_session_count_roku_agg_sum, mobile_rum_units_agg_sum, ndm_netflow_events_agg_sum, netflow_indexed_events_count_agg_sum, npm_host_top99p_sum, observability_pipelines_bytes_processed_agg_sum, oci_host_agg_sum, oci_host_top99p_sum, online_archive_events_count_agg_sum, opentelemetry_apm_host_top99p_sum, opentelemetry_host_top99p_sum, profiling_aas_count_top99p_sum, profiling_container_agent_count_avg, profiling_host_count_top99p_sum, rehydrated_indexed_events_agg_sum, rehydrated_ingested_bytes_agg_sum, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_agg_sum, rum_browser_lite_session_count_agg_sum, rum_browser_replay_session_count_agg_sum, rum_lite_session_count_agg_sum, rum_mobile_legacy_session_count_android_agg_sum, rum_mobile_legacy_session_count_flutter_agg_sum, rum_mobile_legacy_session_count_ios_agg_sum, rum_mobile_legacy_session_count_reactnative_agg_sum, rum_mobile_legacy_session_count_roku_agg_sum, rum_mobile_lite_session_count_android_agg_sum, rum_mobile_lite_session_count_flutter_agg_sum, rum_mobile_lite_session_count_ios_agg_sum, rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum, rum_mobile_lite_session_count_reactnative_agg_sum, rum_mobile_lite_session_count_roku_agg_sum, rum_mobile_lite_session_count_unity_agg_sum, rum_mobile_replay_session_count_android_agg_sum, rum_mobile_replay_session_count_ios_agg_sum, rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum, rum_mobile_replay_session_count_reactnative_agg_sum, rum_replay_session_count_agg_sum, rum_session_count_agg_sum, rum_total_session_count_agg_sum, rum_units_agg_sum, sca_fargate_count_avg_sum, sca_fargate_count_hwm_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg_sum, serverless_apps_google_count_avg_sum, serverless_apps_total_count_avg_sum, siem_analyzed_logs_add_on_count_agg_sum, start_date, synthetics_browser_check_calls_count_agg_sum, synthetics_check_calls_count_agg_sum, synthetics_mobile_test_runs_agg_sum, synthetics_parallel_testing_max_slots_hwm_sum, trace_search_indexed_events_count_agg_sum, twol_ingested_events_bytes_agg_sum, universal_service_monitoring_host_top99p_sum, usage, vsphere_host_top99p_sum, vuln_management_host_count_top99p_sum, workflow_executions_usage_agg_sum, additional_properties].hash
+      [agent_host_top99p_sum, apm_azure_app_service_host_top99p_sum, apm_devsecops_host_top99p_sum, apm_fargate_count_avg_sum, apm_host_top99p_sum, appsec_fargate_count_avg_sum, asm_serverless_agg_sum, audit_logs_lines_indexed_agg_sum, audit_trail_enabled_hwm_sum, avg_profiled_fargate_tasks_sum, aws_host_top99p_sum, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p_sum, azure_host_top99p_sum, billable_ingested_bytes_agg_sum, browser_rum_lite_session_count_agg_sum, browser_rum_replay_session_count_agg_sum, browser_rum_units_agg_sum, ci_pipeline_indexed_spans_agg_sum, ci_test_indexed_spans_agg_sum, ci_visibility_itr_committers_hwm_sum, ci_visibility_pipeline_committers_hwm_sum, ci_visibility_test_committers_hwm_sum, cloud_cost_management_aws_host_count_avg_sum, cloud_cost_management_azure_host_count_avg_sum, cloud_cost_management_gcp_host_count_avg_sum, cloud_cost_management_host_count_avg_sum, cloud_siem_events_agg_sum, code_analysis_sa_committers_hwm_sum, code_analysis_sca_committers_hwm_sum, code_security_host_top99p_sum, container_avg_sum, container_excl_agent_avg_sum, container_hwm_sum, csm_container_enterprise_compliance_count_agg_sum, csm_container_enterprise_cws_count_agg_sum, csm_container_enterprise_total_count_agg_sum, csm_host_enterprise_aas_host_count_top99p_sum, csm_host_enterprise_aws_host_count_top99p_sum, csm_host_enterprise_azure_host_count_top99p_sum, csm_host_enterprise_compliance_host_count_top99p_sum, csm_host_enterprise_cws_host_count_top99p_sum, csm_host_enterprise_gcp_host_count_top99p_sum, csm_host_enterprise_total_host_count_top99p_sum, cspm_aas_host_top99p_sum, cspm_aws_host_top99p_sum, cspm_azure_host_top99p_sum, cspm_container_avg_sum, cspm_container_hwm_sum, cspm_gcp_host_top99p_sum, cspm_host_top99p_sum, custom_historical_ts_sum, custom_live_ts_sum, custom_ts_sum, cws_container_avg_sum, cws_fargate_task_avg_sum, cws_host_top99p_sum, data_jobs_monitoring_host_hr_agg_sum, dbm_host_top99p_sum, dbm_queries_avg_sum, end_date, eph_infra_host_agent_agg_sum, eph_infra_host_alibaba_agg_sum, eph_infra_host_aws_agg_sum, eph_infra_host_azure_agg_sum, eph_infra_host_ent_agg_sum, eph_infra_host_gcp_agg_sum, eph_infra_host_heroku_agg_sum, eph_infra_host_only_aas_agg_sum, eph_infra_host_only_vsphere_agg_sum, eph_infra_host_opentelemetry_agg_sum, eph_infra_host_opentelemetry_apm_agg_sum, eph_infra_host_pro_agg_sum, eph_infra_host_proplus_agg_sum, error_tracking_apm_error_events_agg_sum, error_tracking_error_events_agg_sum, error_tracking_events_agg_sum, error_tracking_rum_error_events_agg_sum, fargate_container_profiler_profiling_fargate_avg_sum, fargate_container_profiler_profiling_fargate_eks_avg_sum, fargate_tasks_count_avg_sum, fargate_tasks_count_hwm_sum, flex_logs_compute_large_avg_sum, flex_logs_compute_medium_avg_sum, flex_logs_compute_small_avg_sum, flex_logs_compute_xsmall_avg_sum, flex_logs_starter_avg_sum, flex_logs_starter_storage_index_avg_sum, flex_logs_starter_storage_retention_adjustment_avg_sum, flex_stored_logs_avg_sum, forwarding_events_bytes_agg_sum, gcp_host_top99p_sum, heroku_host_top99p_sum, incident_management_monthly_active_users_hwm_sum, indexed_events_count_agg_sum, infra_host_top99p_sum, ingested_events_bytes_agg_sum, iot_device_agg_sum, iot_device_top99p_sum, last_updated, live_indexed_events_agg_sum, live_ingested_bytes_agg_sum, logs_by_retention, mobile_rum_lite_session_count_agg_sum, mobile_rum_session_count_agg_sum, mobile_rum_session_count_android_agg_sum, mobile_rum_session_count_flutter_agg_sum, mobile_rum_session_count_ios_agg_sum, mobile_rum_session_count_reactnative_agg_sum, mobile_rum_session_count_roku_agg_sum, mobile_rum_units_agg_sum, ndm_netflow_events_agg_sum, netflow_indexed_events_count_agg_sum, npm_host_top99p_sum, observability_pipelines_bytes_processed_agg_sum, oci_host_agg_sum, oci_host_top99p_sum, online_archive_events_count_agg_sum, opentelemetry_apm_host_top99p_sum, opentelemetry_host_top99p_sum, profiling_aas_count_top99p_sum, profiling_container_agent_count_avg, profiling_host_count_top99p_sum, rehydrated_indexed_events_agg_sum, rehydrated_ingested_bytes_agg_sum, rum_browser_and_mobile_session_count, rum_browser_legacy_session_count_agg_sum, rum_browser_lite_session_count_agg_sum, rum_browser_replay_session_count_agg_sum, rum_lite_session_count_agg_sum, rum_mobile_legacy_session_count_android_agg_sum, rum_mobile_legacy_session_count_flutter_agg_sum, rum_mobile_legacy_session_count_ios_agg_sum, rum_mobile_legacy_session_count_reactnative_agg_sum, rum_mobile_legacy_session_count_roku_agg_sum, rum_mobile_lite_session_count_android_agg_sum, rum_mobile_lite_session_count_flutter_agg_sum, rum_mobile_lite_session_count_ios_agg_sum, rum_mobile_lite_session_count_kotlinmultiplatform_agg_sum, rum_mobile_lite_session_count_reactnative_agg_sum, rum_mobile_lite_session_count_roku_agg_sum, rum_mobile_lite_session_count_unity_agg_sum, rum_mobile_replay_session_count_android_agg_sum, rum_mobile_replay_session_count_ios_agg_sum, rum_mobile_replay_session_count_kotlinmultiplatform_agg_sum, rum_mobile_replay_session_count_reactnative_agg_sum, rum_replay_session_count_agg_sum, rum_session_count_agg_sum, rum_total_session_count_agg_sum, rum_units_agg_sum, sca_fargate_count_avg_sum, sca_fargate_count_hwm_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, serverless_apps_azure_count_avg_sum, serverless_apps_google_count_avg_sum, serverless_apps_total_count_avg_sum, siem_analyzed_logs_add_on_count_agg_sum, start_date, synthetics_browser_check_calls_count_agg_sum, synthetics_check_calls_count_agg_sum, synthetics_mobile_test_runs_agg_sum, synthetics_parallel_testing_max_slots_hwm_sum, trace_search_indexed_events_count_agg_sum, twol_ingested_events_bytes_agg_sum, universal_service_monitoring_host_top99p_sum, usage, vsphere_host_top99p_sum, vuln_management_host_count_top99p_sum, workflow_executions_usage_agg_sum, additional_properties].hash
     end
   end
 end

From 05d639ff8425a8363e59d610179aeb5fbae59408 Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Mon, 24 Mar 2025 17:12:04 -0400
Subject: [PATCH 09/17] Regenerate client from commit 764de5f0 of spec repo
 (#2298)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                             |  8 +--
 .generator/schemas/v2/openapi.yaml            | 50 +++++++++++++++----
 lib/datadog_api_client/inflector.rb           |  5 ++
 .../entity_response_included_incident.rb      |  2 +-
 .../entity_response_included_incident_type.rb | 26 ++++++++++
 .../models/entity_response_included_oncall.rb |  2 +-
 .../entity_response_included_oncall_type.rb   | 26 ++++++++++
 .../entity_response_included_raw_schema.rb    |  2 +-
 ...ntity_response_included_raw_schema_type.rb | 26 ++++++++++
 ...entity_response_included_related_entity.rb |  2 +-
 ...y_response_included_related_entity_type.rb | 26 ++++++++++
 .../models/entity_response_included_schema.rb |  2 +-
 .../entity_response_included_schema_type.rb   | 26 ++++++++++
 13 files changed, 184 insertions(+), 19 deletions(-)
 create mode 100644 lib/datadog_api_client/v2/models/entity_response_included_incident_type.rb
 create mode 100644 lib/datadog_api_client/v2/models/entity_response_included_oncall_type.rb
 create mode 100644 lib/datadog_api_client/v2/models/entity_response_included_raw_schema_type.rb
 create mode 100644 lib/datadog_api_client/v2/models/entity_response_included_related_entity_type.rb
 create mode 100644 lib/datadog_api_client/v2/models/entity_response_included_schema_type.rb

diff --git a/.apigentools-info b/.apigentools-info
index e372d38ea2f..7f7d66e0575 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-20 15:01:21.019349",
-            "spec_repo_commit": "0f5c928e"
+            "regenerated": "2025-03-24 14:58:39.758624",
+            "spec_repo_commit": "764de5f0"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-20 15:01:21.035270",
-            "spec_repo_commit": "0f5c928e"
+            "regenerated": "2025-03-24 14:58:39.774537",
+            "spec_repo_commit": "764de5f0"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index aa344b25b5e..cd3b7d730ba 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -11936,9 +11936,15 @@ components:
           description: Incident ID.
           type: string
         type:
-          description: Incident description.
-          type: string
+          $ref: '#/components/schemas/EntityResponseIncludedIncidentType'
       type: object
+    EntityResponseIncludedIncidentType:
+      description: Incident description.
+      enum:
+      - incident
+      type: string
+      x-enum-varnames:
+      - INCIDENT
     EntityResponseIncludedOncall:
       description: Included oncall.
       properties:
@@ -11948,9 +11954,15 @@ components:
           description: Oncall ID.
           type: string
         type:
-          description: Oncall type.
-          type: string
+          $ref: '#/components/schemas/EntityResponseIncludedOncallType'
       type: object
+    EntityResponseIncludedOncallType:
+      description: Oncall type.
+      enum:
+      - oncall
+      type: string
+      x-enum-varnames:
+      - ONCALL
     EntityResponseIncludedRawSchema:
       description: Included raw schema.
       properties:
@@ -11960,8 +11972,7 @@ components:
           description: Raw schema ID.
           type: string
         type:
-          description: Raw schema type.
-          type: string
+          $ref: '#/components/schemas/EntityResponseIncludedRawSchemaType'
       type: object
     EntityResponseIncludedRawSchemaAttributes:
       description: Included raw schema attributes.
@@ -11970,6 +11981,13 @@ components:
           description: Schema from user input in base64 encoding.
           type: string
       type: object
+    EntityResponseIncludedRawSchemaType:
+      description: Raw schema type.
+      enum:
+      - rawSchema
+      type: string
+      x-enum-varnames:
+      - RAW_SCHEMA
     EntityResponseIncludedRelatedEntity:
       description: Included related entity.
       properties:
@@ -11981,8 +11999,7 @@ components:
         meta:
           $ref: '#/components/schemas/EntityResponseIncludedRelatedEntityMeta'
         type:
-          description: Related entity.
-          type: string
+          $ref: '#/components/schemas/EntityResponseIncludedRelatedEntityType'
       type: object
     EntityResponseIncludedRelatedEntityAttributes:
       description: Related entity attributes.
@@ -12018,6 +12035,13 @@ components:
           description: Entity relation source.
           type: string
       type: object
+    EntityResponseIncludedRelatedEntityType:
+      description: Related entity.
+      enum:
+      - relatedEntity
+      type: string
+      x-enum-varnames:
+      - RELATED_ENTITY
     EntityResponseIncludedRelatedIncidentAttributes:
       description: Incident attributes.
       properties:
@@ -12075,8 +12099,7 @@ components:
           description: Entity ID.
           type: string
         type:
-          description: Schema type.
-          type: string
+          $ref: '#/components/schemas/EntityResponseIncludedSchemaType'
       type: object
     EntityResponseIncludedSchemaAttributes:
       description: Included schema.
@@ -12084,6 +12107,13 @@ components:
         schema:
           $ref: '#/components/schemas/EntityV3'
       type: object
+    EntityResponseIncludedSchemaType:
+      description: Schema type.
+      enum:
+      - schema
+      type: string
+      x-enum-varnames:
+      - SCHEMA
     EntityResponseMeta:
       description: Entity metadata.
       properties:
diff --git a/lib/datadog_api_client/inflector.rb b/lib/datadog_api_client/inflector.rb
index 580fcd761b7..4a013bbc8f8 100644
--- a/lib/datadog_api_client/inflector.rb
+++ b/lib/datadog_api_client/inflector.rb
@@ -1606,17 +1606,22 @@ def overrides
           "v2.entity_meta" => "EntityMeta",
           "v2.entity_relationships" => "EntityRelationships",
           "v2.entity_response_included_incident" => "EntityResponseIncludedIncident",
+          "v2.entity_response_included_incident_type" => "EntityResponseIncludedIncidentType",
           "v2.entity_response_included_oncall" => "EntityResponseIncludedOncall",
+          "v2.entity_response_included_oncall_type" => "EntityResponseIncludedOncallType",
           "v2.entity_response_included_raw_schema" => "EntityResponseIncludedRawSchema",
           "v2.entity_response_included_raw_schema_attributes" => "EntityResponseIncludedRawSchemaAttributes",
+          "v2.entity_response_included_raw_schema_type" => "EntityResponseIncludedRawSchemaType",
           "v2.entity_response_included_related_entity" => "EntityResponseIncludedRelatedEntity",
           "v2.entity_response_included_related_entity_attributes" => "EntityResponseIncludedRelatedEntityAttributes",
           "v2.entity_response_included_related_entity_meta" => "EntityResponseIncludedRelatedEntityMeta",
+          "v2.entity_response_included_related_entity_type" => "EntityResponseIncludedRelatedEntityType",
           "v2.entity_response_included_related_incident_attributes" => "EntityResponseIncludedRelatedIncidentAttributes",
           "v2.entity_response_included_related_oncall_attributes" => "EntityResponseIncludedRelatedOncallAttributes",
           "v2.entity_response_included_related_oncall_escalation_item" => "EntityResponseIncludedRelatedOncallEscalationItem",
           "v2.entity_response_included_schema" => "EntityResponseIncludedSchema",
           "v2.entity_response_included_schema_attributes" => "EntityResponseIncludedSchemaAttributes",
+          "v2.entity_response_included_schema_type" => "EntityResponseIncludedSchemaType",
           "v2.entity_response_meta" => "EntityResponseMeta",
           "v2.entity_to_incidents" => "EntityToIncidents",
           "v2.entity_to_oncalls" => "EntityToOncalls",
diff --git a/lib/datadog_api_client/v2/models/entity_response_included_incident.rb b/lib/datadog_api_client/v2/models/entity_response_included_incident.rb
index 5b0026eb176..11fd9f5f3dd 100644
--- a/lib/datadog_api_client/v2/models/entity_response_included_incident.rb
+++ b/lib/datadog_api_client/v2/models/entity_response_included_incident.rb
@@ -48,7 +48,7 @@ def self.openapi_types
       {
         :'attributes' => :'EntityResponseIncludedRelatedIncidentAttributes',
         :'id' => :'String',
-        :'type' => :'String'
+        :'type' => :'EntityResponseIncludedIncidentType'
       }
     end
 
diff --git a/lib/datadog_api_client/v2/models/entity_response_included_incident_type.rb b/lib/datadog_api_client/v2/models/entity_response_included_incident_type.rb
new file mode 100644
index 00000000000..c6068b4afdc
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/entity_response_included_incident_type.rb
@@ -0,0 +1,26 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Incident description.
+  class EntityResponseIncludedIncidentType
+    include BaseEnumModel
+
+    INCIDENT = "incident".freeze
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/entity_response_included_oncall.rb b/lib/datadog_api_client/v2/models/entity_response_included_oncall.rb
index b2727305949..71c0af50d42 100644
--- a/lib/datadog_api_client/v2/models/entity_response_included_oncall.rb
+++ b/lib/datadog_api_client/v2/models/entity_response_included_oncall.rb
@@ -48,7 +48,7 @@ def self.openapi_types
       {
         :'attributes' => :'EntityResponseIncludedRelatedOncallAttributes',
         :'id' => :'String',
-        :'type' => :'String'
+        :'type' => :'EntityResponseIncludedOncallType'
       }
     end
 
diff --git a/lib/datadog_api_client/v2/models/entity_response_included_oncall_type.rb b/lib/datadog_api_client/v2/models/entity_response_included_oncall_type.rb
new file mode 100644
index 00000000000..36900d37d53
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/entity_response_included_oncall_type.rb
@@ -0,0 +1,26 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Oncall type.
+  class EntityResponseIncludedOncallType
+    include BaseEnumModel
+
+    ONCALL = "oncall".freeze
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/entity_response_included_raw_schema.rb b/lib/datadog_api_client/v2/models/entity_response_included_raw_schema.rb
index feeb7872ae8..bfa91d0f74f 100644
--- a/lib/datadog_api_client/v2/models/entity_response_included_raw_schema.rb
+++ b/lib/datadog_api_client/v2/models/entity_response_included_raw_schema.rb
@@ -48,7 +48,7 @@ def self.openapi_types
       {
         :'attributes' => :'EntityResponseIncludedRawSchemaAttributes',
         :'id' => :'String',
-        :'type' => :'String'
+        :'type' => :'EntityResponseIncludedRawSchemaType'
       }
     end
 
diff --git a/lib/datadog_api_client/v2/models/entity_response_included_raw_schema_type.rb b/lib/datadog_api_client/v2/models/entity_response_included_raw_schema_type.rb
new file mode 100644
index 00000000000..3ca9c513e8e
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/entity_response_included_raw_schema_type.rb
@@ -0,0 +1,26 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Raw schema type.
+  class EntityResponseIncludedRawSchemaType
+    include BaseEnumModel
+
+    RAW_SCHEMA = "rawSchema".freeze
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/entity_response_included_related_entity.rb b/lib/datadog_api_client/v2/models/entity_response_included_related_entity.rb
index 24133753e1c..67e9933b6ce 100644
--- a/lib/datadog_api_client/v2/models/entity_response_included_related_entity.rb
+++ b/lib/datadog_api_client/v2/models/entity_response_included_related_entity.rb
@@ -53,7 +53,7 @@ def self.openapi_types
         :'attributes' => :'EntityResponseIncludedRelatedEntityAttributes',
         :'id' => :'String',
         :'meta' => :'EntityResponseIncludedRelatedEntityMeta',
-        :'type' => :'String'
+        :'type' => :'EntityResponseIncludedRelatedEntityType'
       }
     end
 
diff --git a/lib/datadog_api_client/v2/models/entity_response_included_related_entity_type.rb b/lib/datadog_api_client/v2/models/entity_response_included_related_entity_type.rb
new file mode 100644
index 00000000000..4e10ae88c74
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/entity_response_included_related_entity_type.rb
@@ -0,0 +1,26 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Related entity.
+  class EntityResponseIncludedRelatedEntityType
+    include BaseEnumModel
+
+    RELATED_ENTITY = "relatedEntity".freeze
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/entity_response_included_schema.rb b/lib/datadog_api_client/v2/models/entity_response_included_schema.rb
index 3f552b7acca..a7a60611f45 100644
--- a/lib/datadog_api_client/v2/models/entity_response_included_schema.rb
+++ b/lib/datadog_api_client/v2/models/entity_response_included_schema.rb
@@ -48,7 +48,7 @@ def self.openapi_types
       {
         :'attributes' => :'EntityResponseIncludedSchemaAttributes',
         :'id' => :'String',
-        :'type' => :'String'
+        :'type' => :'EntityResponseIncludedSchemaType'
       }
     end
 
diff --git a/lib/datadog_api_client/v2/models/entity_response_included_schema_type.rb b/lib/datadog_api_client/v2/models/entity_response_included_schema_type.rb
new file mode 100644
index 00000000000..618acb7c4e9
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/entity_response_included_schema_type.rb
@@ -0,0 +1,26 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Schema type.
+  class EntityResponseIncludedSchemaType
+    include BaseEnumModel
+
+    SCHEMA = "schema".freeze
+  end
+end

From 898b06a6fab81568f2a1bc280a3373a2490d1e85 Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Tue, 25 Mar 2025 19:23:51 +0000
Subject: [PATCH 10/17] Add more triggers for workflow automation (#2301)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                             |   8 +-
 .generator/schemas/v2/openapi.yaml            |  76 ++++++++--
 lib/datadog_api_client/inflector.rb           |   4 +
 .../v2/models/api_trigger.rb                  |   2 +-
 .../v2/models/api_trigger_wrapper.rb          |   2 +-
 .../v2/models/app_trigger_wrapper.rb          |   2 +-
 .../v2/models/case_trigger.rb                 |   2 +-
 .../v2/models/case_trigger_wrapper.rb         |   2 +-
 .../v2/models/change_event_trigger_wrapper.rb |   2 +-
 .../v2/models/dashboard_trigger_wrapper.rb    |   2 +-
 .../database_monitoring_trigger_wrapper.rb    | 135 ++++++++++++++++++
 .../v2/models/github_webhook_trigger.rb       |   2 +-
 .../models/github_webhook_trigger_wrapper.rb  |   2 +-
 .../v2/models/incident_trigger.rb             |   2 +-
 .../v2/models/incident_trigger_wrapper.rb     |   2 +-
 .../v2/models/monitor_trigger.rb              |   2 +-
 .../v2/models/monitor_trigger_wrapper.rb      |   2 +-
 .../v2/models/notebook_trigger_wrapper.rb     | 135 ++++++++++++++++++
 .../v2/models/schedule_trigger.rb             |   2 +-
 .../v2/models/schedule_trigger_wrapper.rb     |   2 +-
 .../v2/models/security_trigger.rb             |   2 +-
 .../v2/models/security_trigger_wrapper.rb     |   2 +-
 .../v2/models/self_service_trigger_wrapper.rb | 135 ++++++++++++++++++
 .../v2/models/slack_trigger_wrapper.rb        |   2 +-
 .../software_catalog_trigger_wrapper.rb       | 135 ++++++++++++++++++
 lib/datadog_api_client/v2/models/trigger.rb   |   4 +
 .../v2/models/workflow_trigger_wrapper.rb     |   2 +-
 27 files changed, 633 insertions(+), 37 deletions(-)
 create mode 100644 lib/datadog_api_client/v2/models/database_monitoring_trigger_wrapper.rb
 create mode 100644 lib/datadog_api_client/v2/models/notebook_trigger_wrapper.rb
 create mode 100644 lib/datadog_api_client/v2/models/self_service_trigger_wrapper.rb
 create mode 100644 lib/datadog_api_client/v2/models/software_catalog_trigger_wrapper.rb

diff --git a/.apigentools-info b/.apigentools-info
index 7f7d66e0575..210542fd275 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-24 14:58:39.758624",
-            "spec_repo_commit": "764de5f0"
+            "regenerated": "2025-03-25 18:26:19.730337",
+            "spec_repo_commit": "b25d7c85"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-24 14:58:39.774537",
-            "spec_repo_commit": "764de5f0"
+            "regenerated": "2025-03-25 18:26:19.746346",
+            "spec_repo_commit": "b25d7c85"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index cd3b7d730ba..664a9f7ecae 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -1095,7 +1095,7 @@ components:
       x-enum-varnames:
       - API_KEYS
     APITrigger:
-      description: Trigger a workflow VIA an API. The workflow must be published.
+      description: Trigger a workflow from an API request. The workflow must be published.
       properties:
         rateLimit:
           $ref: '#/components/schemas/TriggerRateLimit'
@@ -2313,7 +2313,7 @@ components:
       description: Schema for an App-based trigger.
       properties:
         appTrigger:
-          description: Trigger a workflow VIA an App.
+          description: Trigger a workflow from an App.
           type: object
         startStepNames:
           $ref: '#/components/schemas/StartStepNames'
@@ -6525,7 +6525,7 @@ components:
       - IN_PROGRESS
       - CLOSED
     CaseTrigger:
-      description: Trigger a workflow VIA a Case. For automatic triggering a handle
+      description: Trigger a workflow from a Case. For automatic triggering a handle
         must be configured and the workflow must be published.
       properties:
         rateLimit:
@@ -6762,7 +6762,7 @@ components:
       description: Schema for a Change Event-based trigger.
       properties:
         changeEventTrigger:
-          description: Trigger a workflow VIA a Change Event.
+          description: Trigger a workflow from a Change Event.
           type: object
         startStepNames:
           $ref: '#/components/schemas/StartStepNames'
@@ -10589,7 +10589,7 @@ components:
       description: Schema for a Dashboard-based trigger.
       properties:
         dashboardTrigger:
-          description: Trigger a workflow VIA a Dashboard.
+          description: Trigger a workflow from a Dashboard.
           type: object
         startStepNames:
           $ref: '#/components/schemas/StartStepNames'
@@ -10813,6 +10813,17 @@ components:
       type: string
       x-enum-varnames:
       - DATATRANSFORM
+    DatabaseMonitoringTriggerWrapper:
+      description: Schema for a Database Monitoring-based trigger.
+      properties:
+        databaseMonitoringTrigger:
+          description: Trigger a workflow from Database Monitoring.
+          type: object
+        startStepNames:
+          $ref: '#/components/schemas/StartStepNames'
+      required:
+      - databaseMonitoringTrigger
+      type: object
     Date:
       description: Date as Unix timestamp in milliseconds.
       example: 1722439510282
@@ -14393,9 +14404,9 @@ components:
       example: https://github.com/organization/example-repository
       type: string
     GithubWebhookTrigger:
-      description: Trigger a workflow VIA GitHub webhook. To trigger a workflow from
-        GitHub, you must set a `webhookSecret`. In your GitHub Webhook Settings, set
-        the Payload URL to "base_url"/api/v2/workflows/"workflow_id"/webhook?orgId="org_id",
+      description: Trigger a workflow from a GitHub webhook. To trigger a workflow
+        from GitHub, you must set a `webhookSecret`. In your GitHub Webhook Settings,
+        set the Payload URL to "base_url"/api/v2/workflows/"workflow_id"/webhook?orgId="org_id",
         select application/json for the content type, and be highly recommend enabling
         SSL verification for security. The workflow must be published.
       properties:
@@ -16706,7 +16717,7 @@ components:
       x-enum-varnames:
       - INCIDENT_TODOS
     IncidentTrigger:
-      description: Trigger a workflow VIA an Incident. For automatic triggering a
+      description: Trigger a workflow from an Incident. For automatic triggering a
         handle must be configured and the workflow must be published.
       properties:
         rateLimit:
@@ -21179,7 +21190,7 @@ components:
           $ref: '#/components/schemas/MonitorDowntimeMatchResourceType'
       type: object
     MonitorTrigger:
-      description: Trigger a workflow VIA a Monitor. For automatic triggering a handle
+      description: Trigger a workflow from a Monitor. For automatic triggering a handle
         must be configured and the workflow must be published.
       properties:
         rateLimit:
@@ -21317,6 +21328,17 @@ components:
         meta:
           $ref: '#/components/schemas/MonthlyCostAttributionMeta'
       type: object
+    NotebookTriggerWrapper:
+      description: Schema for a Notebook-based trigger.
+      properties:
+        notebookTrigger:
+          description: Trigger a workflow from a Notebook.
+          type: object
+        startStepNames:
+          $ref: '#/components/schemas/StartStepNames'
+      required:
+      - notebookTrigger
+      type: object
     NotificationRule:
       description: 'Notification rules allow full control over notifications generated
         by the various Datadog security products.
@@ -26139,7 +26161,7 @@ components:
           $ref: '#/components/schemas/ScalarFormulaResponseType'
       type: object
     ScheduleTrigger:
-      description: Trigger a workflow VIA a Schedule. The workflow must be published.
+      description: Trigger a workflow from a Schedule. The workflow must be published.
       properties:
         rruleExpression:
           description: Recurrence rule expression for scheduling.
@@ -28436,7 +28458,7 @@ components:
           type: string
       type: object
     SecurityTrigger:
-      description: Trigger a workflow VIA a Security Signal or Finding. For automatic
+      description: Trigger a workflow from a Security Signal or Finding. For automatic
         triggering a handle must be configured and the workflow must be published.
       properties:
         rateLimit:
@@ -28475,6 +28497,17 @@ components:
       required:
       - trigger_source
       type: object
+    SelfServiceTriggerWrapper:
+      description: Schema for a Self Service-based trigger.
+      properties:
+        selfServiceTrigger:
+          description: Trigger a workflow from Self Service.
+          type: object
+        startStepNames:
+          $ref: '#/components/schemas/StartStepNames'
+      required:
+      - selfServiceTrigger
+      type: object
     SensitiveDataScannerConfigRequest:
       description: Group reorder request.
       properties:
@@ -30195,7 +30228,7 @@ components:
       description: Schema for a Slack-based trigger.
       properties:
         slackTrigger:
-          description: Trigger a workflow VIA Slack. The workflow must be published.
+          description: Trigger a workflow from Slack. The workflow must be published.
           type: object
         startStepNames:
           $ref: '#/components/schemas/StartStepNames'
@@ -30249,6 +30282,17 @@ components:
       required:
       - attributes
       type: object
+    SoftwareCatalogTriggerWrapper:
+      description: Schema for a Software Catalog-based trigger.
+      properties:
+        softwareCatalogTrigger:
+          description: Trigger a workflow from Software Catalog.
+          type: object
+        startStepNames:
+          $ref: '#/components/schemas/StartStepNames'
+      required:
+      - softwareCatalogTrigger
+      type: object
     SortDirection:
       default: desc
       description: The direction to sort by.
@@ -32108,13 +32152,17 @@ components:
       - $ref: '#/components/schemas/AppTriggerWrapper'
       - $ref: '#/components/schemas/CaseTriggerWrapper'
       - $ref: '#/components/schemas/ChangeEventTriggerWrapper'
+      - $ref: '#/components/schemas/DatabaseMonitoringTriggerWrapper'
       - $ref: '#/components/schemas/DashboardTriggerWrapper'
       - $ref: '#/components/schemas/GithubWebhookTriggerWrapper'
       - $ref: '#/components/schemas/IncidentTriggerWrapper'
       - $ref: '#/components/schemas/MonitorTriggerWrapper'
+      - $ref: '#/components/schemas/NotebookTriggerWrapper'
       - $ref: '#/components/schemas/ScheduleTriggerWrapper'
       - $ref: '#/components/schemas/SecurityTriggerWrapper'
+      - $ref: '#/components/schemas/SelfServiceTriggerWrapper'
       - $ref: '#/components/schemas/SlackTriggerWrapper'
+      - $ref: '#/components/schemas/SoftwareCatalogTriggerWrapper'
       - $ref: '#/components/schemas/WorkflowTriggerWrapper'
     TriggerRateLimit:
       description: Defines a rate limit for a trigger.
@@ -33743,7 +33791,7 @@ components:
         startStepNames:
           $ref: '#/components/schemas/StartStepNames'
         workflowTrigger:
-          description: Trigger a workflow VIA the Datadog UI. Only required if no
+          description: Trigger a workflow from the Datadog UI. Only required if no
             other trigger exists.
           type: object
       required:
diff --git a/lib/datadog_api_client/inflector.rb b/lib/datadog_api_client/inflector.rb
index 4a013bbc8f8..7d3c4ff9d7d 100644
--- a/lib/datadog_api_client/inflector.rb
+++ b/lib/datadog_api_client/inflector.rb
@@ -1518,6 +1518,7 @@ def overrides
           "v2.dashboard_list_update_items_response" => "DashboardListUpdateItemsResponse",
           "v2.dashboard_trigger_wrapper" => "DashboardTriggerWrapper",
           "v2.dashboard_type" => "DashboardType",
+          "v2.database_monitoring_trigger_wrapper" => "DatabaseMonitoringTriggerWrapper",
           "v2.data_deletion_response_item" => "DataDeletionResponseItem",
           "v2.data_deletion_response_item_attributes" => "DataDeletionResponseItemAttributes",
           "v2.data_deletion_response_meta" => "DataDeletionResponseMeta",
@@ -2224,6 +2225,7 @@ def overrides
           "v2.monthly_cost_attribution_response" => "MonthlyCostAttributionResponse",
           "v2.ms_teams_integration_metadata" => "MSTeamsIntegrationMetadata",
           "v2.ms_teams_integration_metadata_teams_item" => "MSTeamsIntegrationMetadataTeamsItem",
+          "v2.notebook_trigger_wrapper" => "NotebookTriggerWrapper",
           "v2.notification_rule" => "NotificationRule",
           "v2.notification_rule_attributes" => "NotificationRuleAttributes",
           "v2.notification_rule_response" => "NotificationRuleResponse",
@@ -2673,6 +2675,7 @@ def overrides
           "v2.security_trigger" => "SecurityTrigger",
           "v2.security_trigger_wrapper" => "SecurityTriggerWrapper",
           "v2.selectors" => "Selectors",
+          "v2.self_service_trigger_wrapper" => "SelfServiceTriggerWrapper",
           "v2.sensitive_data_scanner_config_request" => "SensitiveDataScannerConfigRequest",
           "v2.sensitive_data_scanner_configuration" => "SensitiveDataScannerConfiguration",
           "v2.sensitive_data_scanner_configuration_data" => "SensitiveDataScannerConfigurationData",
@@ -2803,6 +2806,7 @@ def overrides
           "v2.slo_report_status_get_response" => "SLOReportStatusGetResponse",
           "v2.slo_report_status_get_response_attributes" => "SLOReportStatusGetResponseAttributes",
           "v2.slo_report_status_get_response_data" => "SLOReportStatusGetResponseData",
+          "v2.software_catalog_trigger_wrapper" => "SoftwareCatalogTriggerWrapper",
           "v2.sort_direction" => "SortDirection",
           "v2.span" => "Span",
           "v2.spans_aggregate_bucket" => "SpansAggregateBucket",
diff --git a/lib/datadog_api_client/v2/models/api_trigger.rb b/lib/datadog_api_client/v2/models/api_trigger.rb
index d0759718140..3b8736a622c 100644
--- a/lib/datadog_api_client/v2/models/api_trigger.rb
+++ b/lib/datadog_api_client/v2/models/api_trigger.rb
@@ -17,7 +17,7 @@
 require 'time'
 
 module DatadogAPIClient::V2
-  # Trigger a workflow VIA an API. The workflow must be published.
+  # Trigger a workflow from an API request. The workflow must be published.
   class APITrigger
     include BaseGenericModel
 
diff --git a/lib/datadog_api_client/v2/models/api_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/api_trigger_wrapper.rb
index 5dd07a64fd0..289a375844b 100644
--- a/lib/datadog_api_client/v2/models/api_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/api_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class APITriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA an API. The workflow must be published.
+    # Trigger a workflow from an API request. The workflow must be published.
     attr_reader :api_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/app_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/app_trigger_wrapper.rb
index 344c4512c23..3f590e4d638 100644
--- a/lib/datadog_api_client/v2/models/app_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/app_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class AppTriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA an App.
+    # Trigger a workflow from an App.
     attr_reader :app_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/case_trigger.rb b/lib/datadog_api_client/v2/models/case_trigger.rb
index e1aa9de8e65..8297096892b 100644
--- a/lib/datadog_api_client/v2/models/case_trigger.rb
+++ b/lib/datadog_api_client/v2/models/case_trigger.rb
@@ -17,7 +17,7 @@
 require 'time'
 
 module DatadogAPIClient::V2
-  # Trigger a workflow VIA a Case. For automatic triggering a handle must be configured and the workflow must be published.
+  # Trigger a workflow from a Case. For automatic triggering a handle must be configured and the workflow must be published.
   class CaseTrigger
     include BaseGenericModel
 
diff --git a/lib/datadog_api_client/v2/models/case_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/case_trigger_wrapper.rb
index 14b0a77c6f1..5b8943e0d1b 100644
--- a/lib/datadog_api_client/v2/models/case_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/case_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class CaseTriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA a Case. For automatic triggering a handle must be configured and the workflow must be published.
+    # Trigger a workflow from a Case. For automatic triggering a handle must be configured and the workflow must be published.
     attr_reader :case_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/change_event_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/change_event_trigger_wrapper.rb
index 300b94e133f..0bf673399a1 100644
--- a/lib/datadog_api_client/v2/models/change_event_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/change_event_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class ChangeEventTriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA a Change Event.
+    # Trigger a workflow from a Change Event.
     attr_reader :change_event_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/dashboard_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/dashboard_trigger_wrapper.rb
index 9afda106a73..672034601fc 100644
--- a/lib/datadog_api_client/v2/models/dashboard_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/dashboard_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class DashboardTriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA a Dashboard.
+    # Trigger a workflow from a Dashboard.
     attr_reader :dashboard_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/database_monitoring_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/database_monitoring_trigger_wrapper.rb
new file mode 100644
index 00000000000..23d13f826c2
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/database_monitoring_trigger_wrapper.rb
@@ -0,0 +1,135 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Schema for a Database Monitoring-based trigger.
+  class DatabaseMonitoringTriggerWrapper
+    include BaseGenericModel
+
+    # Trigger a workflow from Database Monitoring.
+    attr_reader :database_monitoring_trigger
+
+    # A list of steps that run first after a trigger fires.
+    attr_accessor :start_step_names
+
+    attr_accessor :additional_properties
+
+    # Attribute mapping from ruby-style variable name to JSON key.
+    # @!visibility private
+    def self.attribute_map
+      {
+        :'database_monitoring_trigger' => :'databaseMonitoringTrigger',
+        :'start_step_names' => :'startStepNames'
+      }
+    end
+
+    # Attribute type mapping.
+    # @!visibility private
+    def self.openapi_types
+      {
+        :'database_monitoring_trigger' => :'Object',
+        :'start_step_names' => :'Array<String>'
+      }
+    end
+
+    # Initializes the object
+    # @param attributes [Hash] Model attributes in the form of hash
+    # @!visibility private
+    def initialize(attributes = {})
+      if (!attributes.is_a?(Hash))
+        fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::DatabaseMonitoringTriggerWrapper` initialize method"
+      end
+
+      self.additional_properties = {}
+      # check to see if the attribute exists and convert string to symbol for hash key
+      attributes = attributes.each_with_object({}) { |(k, v), h|
+        if (!self.class.attribute_map.key?(k.to_sym))
+          self.additional_properties[k.to_sym] = v
+        else
+          h[k.to_sym] = v
+        end
+      }
+
+      if attributes.key?(:'database_monitoring_trigger')
+        self.database_monitoring_trigger = attributes[:'database_monitoring_trigger']
+      end
+
+      if attributes.key?(:'start_step_names')
+        if (value = attributes[:'start_step_names']).is_a?(Array)
+          self.start_step_names = value
+        end
+      end
+    end
+
+    # Check to see if the all the properties in the model are valid
+    # @return true if the model is valid
+    # @!visibility private
+    def valid?
+      return false if @database_monitoring_trigger.nil?
+      true
+    end
+
+    # Custom attribute writer method with validation
+    # @param database_monitoring_trigger [Object] Object to be assigned
+    # @!visibility private
+    def database_monitoring_trigger=(database_monitoring_trigger)
+      if database_monitoring_trigger.nil?
+        fail ArgumentError, 'invalid value for "database_monitoring_trigger", database_monitoring_trigger cannot be nil.'
+      end
+      @database_monitoring_trigger = database_monitoring_trigger
+    end
+
+    # Returns the object in the form of hash, with additionalProperties support.
+    # @return [Hash] Returns the object in the form of hash
+    # @!visibility private
+    def to_hash
+      hash = {}
+      self.class.attribute_map.each_pair do |attr, param|
+        value = self.send(attr)
+        if value.nil?
+          is_nullable = self.class.openapi_nullable.include?(attr)
+          next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
+        end
+
+        hash[param] = _to_hash(value)
+      end
+      self.additional_properties.each_pair do |attr, value|
+        hash[attr] = value
+      end
+      hash
+    end
+
+    # Checks equality by comparing each attribute.
+    # @param o [Object] Object to be compared
+    # @!visibility private
+    def ==(o)
+      return true if self.equal?(o)
+      self.class == o.class &&
+          database_monitoring_trigger == o.database_monitoring_trigger &&
+          start_step_names == o.start_step_names &&
+          additional_properties == o.additional_properties
+    end
+
+    # Calculates hash code according to all attributes.
+    # @return [Integer] Hash code
+    # @!visibility private
+    def hash
+      [database_monitoring_trigger, start_step_names, additional_properties].hash
+    end
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/github_webhook_trigger.rb b/lib/datadog_api_client/v2/models/github_webhook_trigger.rb
index 2f0348f3e64..89d520bc338 100644
--- a/lib/datadog_api_client/v2/models/github_webhook_trigger.rb
+++ b/lib/datadog_api_client/v2/models/github_webhook_trigger.rb
@@ -17,7 +17,7 @@
 require 'time'
 
 module DatadogAPIClient::V2
-  # Trigger a workflow VIA GitHub webhook. To trigger a workflow from GitHub, you must set a `webhookSecret`. In your GitHub Webhook Settings, set the Payload URL to "base_url"/api/v2/workflows/"workflow_id"/webhook?orgId="org_id", select application/json for the content type, and be highly recommend enabling SSL verification for security. The workflow must be published.
+  # Trigger a workflow from a GitHub webhook. To trigger a workflow from GitHub, you must set a `webhookSecret`. In your GitHub Webhook Settings, set the Payload URL to "base_url"/api/v2/workflows/"workflow_id"/webhook?orgId="org_id", select application/json for the content type, and be highly recommend enabling SSL verification for security. The workflow must be published.
   class GithubWebhookTrigger
     include BaseGenericModel
 
diff --git a/lib/datadog_api_client/v2/models/github_webhook_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/github_webhook_trigger_wrapper.rb
index 88b42aa95d5..a16a258b1b3 100644
--- a/lib/datadog_api_client/v2/models/github_webhook_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/github_webhook_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class GithubWebhookTriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA GitHub webhook. To trigger a workflow from GitHub, you must set a `webhookSecret`. In your GitHub Webhook Settings, set the Payload URL to "base_url"/api/v2/workflows/"workflow_id"/webhook?orgId="org_id", select application/json for the content type, and be highly recommend enabling SSL verification for security. The workflow must be published.
+    # Trigger a workflow from a GitHub webhook. To trigger a workflow from GitHub, you must set a `webhookSecret`. In your GitHub Webhook Settings, set the Payload URL to "base_url"/api/v2/workflows/"workflow_id"/webhook?orgId="org_id", select application/json for the content type, and be highly recommend enabling SSL verification for security. The workflow must be published.
     attr_reader :github_webhook_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/incident_trigger.rb b/lib/datadog_api_client/v2/models/incident_trigger.rb
index 11429c14d48..a8960e4ca6a 100644
--- a/lib/datadog_api_client/v2/models/incident_trigger.rb
+++ b/lib/datadog_api_client/v2/models/incident_trigger.rb
@@ -17,7 +17,7 @@
 require 'time'
 
 module DatadogAPIClient::V2
-  # Trigger a workflow VIA an Incident. For automatic triggering a handle must be configured and the workflow must be published.
+  # Trigger a workflow from an Incident. For automatic triggering a handle must be configured and the workflow must be published.
   class IncidentTrigger
     include BaseGenericModel
 
diff --git a/lib/datadog_api_client/v2/models/incident_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/incident_trigger_wrapper.rb
index f8667820d98..1caa6638f24 100644
--- a/lib/datadog_api_client/v2/models/incident_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/incident_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class IncidentTriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA an Incident. For automatic triggering a handle must be configured and the workflow must be published.
+    # Trigger a workflow from an Incident. For automatic triggering a handle must be configured and the workflow must be published.
     attr_reader :incident_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/monitor_trigger.rb b/lib/datadog_api_client/v2/models/monitor_trigger.rb
index 37980ffa247..c9509d8827a 100644
--- a/lib/datadog_api_client/v2/models/monitor_trigger.rb
+++ b/lib/datadog_api_client/v2/models/monitor_trigger.rb
@@ -17,7 +17,7 @@
 require 'time'
 
 module DatadogAPIClient::V2
-  # Trigger a workflow VIA a Monitor. For automatic triggering a handle must be configured and the workflow must be published.
+  # Trigger a workflow from a Monitor. For automatic triggering a handle must be configured and the workflow must be published.
   class MonitorTrigger
     include BaseGenericModel
 
diff --git a/lib/datadog_api_client/v2/models/monitor_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/monitor_trigger_wrapper.rb
index 7775123600f..6d8d047c080 100644
--- a/lib/datadog_api_client/v2/models/monitor_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/monitor_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class MonitorTriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA a Monitor. For automatic triggering a handle must be configured and the workflow must be published.
+    # Trigger a workflow from a Monitor. For automatic triggering a handle must be configured and the workflow must be published.
     attr_reader :monitor_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/notebook_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/notebook_trigger_wrapper.rb
new file mode 100644
index 00000000000..739541677ed
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/notebook_trigger_wrapper.rb
@@ -0,0 +1,135 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Schema for a Notebook-based trigger.
+  class NotebookTriggerWrapper
+    include BaseGenericModel
+
+    # Trigger a workflow from a Notebook.
+    attr_reader :notebook_trigger
+
+    # A list of steps that run first after a trigger fires.
+    attr_accessor :start_step_names
+
+    attr_accessor :additional_properties
+
+    # Attribute mapping from ruby-style variable name to JSON key.
+    # @!visibility private
+    def self.attribute_map
+      {
+        :'notebook_trigger' => :'notebookTrigger',
+        :'start_step_names' => :'startStepNames'
+      }
+    end
+
+    # Attribute type mapping.
+    # @!visibility private
+    def self.openapi_types
+      {
+        :'notebook_trigger' => :'Object',
+        :'start_step_names' => :'Array<String>'
+      }
+    end
+
+    # Initializes the object
+    # @param attributes [Hash] Model attributes in the form of hash
+    # @!visibility private
+    def initialize(attributes = {})
+      if (!attributes.is_a?(Hash))
+        fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::NotebookTriggerWrapper` initialize method"
+      end
+
+      self.additional_properties = {}
+      # check to see if the attribute exists and convert string to symbol for hash key
+      attributes = attributes.each_with_object({}) { |(k, v), h|
+        if (!self.class.attribute_map.key?(k.to_sym))
+          self.additional_properties[k.to_sym] = v
+        else
+          h[k.to_sym] = v
+        end
+      }
+
+      if attributes.key?(:'notebook_trigger')
+        self.notebook_trigger = attributes[:'notebook_trigger']
+      end
+
+      if attributes.key?(:'start_step_names')
+        if (value = attributes[:'start_step_names']).is_a?(Array)
+          self.start_step_names = value
+        end
+      end
+    end
+
+    # Check to see if the all the properties in the model are valid
+    # @return true if the model is valid
+    # @!visibility private
+    def valid?
+      return false if @notebook_trigger.nil?
+      true
+    end
+
+    # Custom attribute writer method with validation
+    # @param notebook_trigger [Object] Object to be assigned
+    # @!visibility private
+    def notebook_trigger=(notebook_trigger)
+      if notebook_trigger.nil?
+        fail ArgumentError, 'invalid value for "notebook_trigger", notebook_trigger cannot be nil.'
+      end
+      @notebook_trigger = notebook_trigger
+    end
+
+    # Returns the object in the form of hash, with additionalProperties support.
+    # @return [Hash] Returns the object in the form of hash
+    # @!visibility private
+    def to_hash
+      hash = {}
+      self.class.attribute_map.each_pair do |attr, param|
+        value = self.send(attr)
+        if value.nil?
+          is_nullable = self.class.openapi_nullable.include?(attr)
+          next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
+        end
+
+        hash[param] = _to_hash(value)
+      end
+      self.additional_properties.each_pair do |attr, value|
+        hash[attr] = value
+      end
+      hash
+    end
+
+    # Checks equality by comparing each attribute.
+    # @param o [Object] Object to be compared
+    # @!visibility private
+    def ==(o)
+      return true if self.equal?(o)
+      self.class == o.class &&
+          notebook_trigger == o.notebook_trigger &&
+          start_step_names == o.start_step_names &&
+          additional_properties == o.additional_properties
+    end
+
+    # Calculates hash code according to all attributes.
+    # @return [Integer] Hash code
+    # @!visibility private
+    def hash
+      [notebook_trigger, start_step_names, additional_properties].hash
+    end
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/schedule_trigger.rb b/lib/datadog_api_client/v2/models/schedule_trigger.rb
index 92eca72bca3..2aa9dc400f2 100644
--- a/lib/datadog_api_client/v2/models/schedule_trigger.rb
+++ b/lib/datadog_api_client/v2/models/schedule_trigger.rb
@@ -17,7 +17,7 @@
 require 'time'
 
 module DatadogAPIClient::V2
-  # Trigger a workflow VIA a Schedule. The workflow must be published.
+  # Trigger a workflow from a Schedule. The workflow must be published.
   class ScheduleTrigger
     include BaseGenericModel
 
diff --git a/lib/datadog_api_client/v2/models/schedule_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/schedule_trigger_wrapper.rb
index db3d6b7efda..64a76f25c2b 100644
--- a/lib/datadog_api_client/v2/models/schedule_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/schedule_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class ScheduleTriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA a Schedule. The workflow must be published.
+    # Trigger a workflow from a Schedule. The workflow must be published.
     attr_reader :schedule_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/security_trigger.rb b/lib/datadog_api_client/v2/models/security_trigger.rb
index 4ebd64c799f..b159523ca01 100644
--- a/lib/datadog_api_client/v2/models/security_trigger.rb
+++ b/lib/datadog_api_client/v2/models/security_trigger.rb
@@ -17,7 +17,7 @@
 require 'time'
 
 module DatadogAPIClient::V2
-  # Trigger a workflow VIA a Security Signal or Finding. For automatic triggering a handle must be configured and the workflow must be published.
+  # Trigger a workflow from a Security Signal or Finding. For automatic triggering a handle must be configured and the workflow must be published.
   class SecurityTrigger
     include BaseGenericModel
 
diff --git a/lib/datadog_api_client/v2/models/security_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/security_trigger_wrapper.rb
index 072599e569f..7c5e0bfcd62 100644
--- a/lib/datadog_api_client/v2/models/security_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/security_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class SecurityTriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA a Security Signal or Finding. For automatic triggering a handle must be configured and the workflow must be published.
+    # Trigger a workflow from a Security Signal or Finding. For automatic triggering a handle must be configured and the workflow must be published.
     attr_reader :security_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/self_service_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/self_service_trigger_wrapper.rb
new file mode 100644
index 00000000000..66facb3dc65
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/self_service_trigger_wrapper.rb
@@ -0,0 +1,135 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Schema for a Self Service-based trigger.
+  class SelfServiceTriggerWrapper
+    include BaseGenericModel
+
+    # Trigger a workflow from Self Service.
+    attr_reader :self_service_trigger
+
+    # A list of steps that run first after a trigger fires.
+    attr_accessor :start_step_names
+
+    attr_accessor :additional_properties
+
+    # Attribute mapping from ruby-style variable name to JSON key.
+    # @!visibility private
+    def self.attribute_map
+      {
+        :'self_service_trigger' => :'selfServiceTrigger',
+        :'start_step_names' => :'startStepNames'
+      }
+    end
+
+    # Attribute type mapping.
+    # @!visibility private
+    def self.openapi_types
+      {
+        :'self_service_trigger' => :'Object',
+        :'start_step_names' => :'Array<String>'
+      }
+    end
+
+    # Initializes the object
+    # @param attributes [Hash] Model attributes in the form of hash
+    # @!visibility private
+    def initialize(attributes = {})
+      if (!attributes.is_a?(Hash))
+        fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SelfServiceTriggerWrapper` initialize method"
+      end
+
+      self.additional_properties = {}
+      # check to see if the attribute exists and convert string to symbol for hash key
+      attributes = attributes.each_with_object({}) { |(k, v), h|
+        if (!self.class.attribute_map.key?(k.to_sym))
+          self.additional_properties[k.to_sym] = v
+        else
+          h[k.to_sym] = v
+        end
+      }
+
+      if attributes.key?(:'self_service_trigger')
+        self.self_service_trigger = attributes[:'self_service_trigger']
+      end
+
+      if attributes.key?(:'start_step_names')
+        if (value = attributes[:'start_step_names']).is_a?(Array)
+          self.start_step_names = value
+        end
+      end
+    end
+
+    # Check to see if the all the properties in the model are valid
+    # @return true if the model is valid
+    # @!visibility private
+    def valid?
+      return false if @self_service_trigger.nil?
+      true
+    end
+
+    # Custom attribute writer method with validation
+    # @param self_service_trigger [Object] Object to be assigned
+    # @!visibility private
+    def self_service_trigger=(self_service_trigger)
+      if self_service_trigger.nil?
+        fail ArgumentError, 'invalid value for "self_service_trigger", self_service_trigger cannot be nil.'
+      end
+      @self_service_trigger = self_service_trigger
+    end
+
+    # Returns the object in the form of hash, with additionalProperties support.
+    # @return [Hash] Returns the object in the form of hash
+    # @!visibility private
+    def to_hash
+      hash = {}
+      self.class.attribute_map.each_pair do |attr, param|
+        value = self.send(attr)
+        if value.nil?
+          is_nullable = self.class.openapi_nullable.include?(attr)
+          next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
+        end
+
+        hash[param] = _to_hash(value)
+      end
+      self.additional_properties.each_pair do |attr, value|
+        hash[attr] = value
+      end
+      hash
+    end
+
+    # Checks equality by comparing each attribute.
+    # @param o [Object] Object to be compared
+    # @!visibility private
+    def ==(o)
+      return true if self.equal?(o)
+      self.class == o.class &&
+          self_service_trigger == o.self_service_trigger &&
+          start_step_names == o.start_step_names &&
+          additional_properties == o.additional_properties
+    end
+
+    # Calculates hash code according to all attributes.
+    # @return [Integer] Hash code
+    # @!visibility private
+    def hash
+      [self_service_trigger, start_step_names, additional_properties].hash
+    end
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/slack_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/slack_trigger_wrapper.rb
index 5e5ede47705..414349de8de 100644
--- a/lib/datadog_api_client/v2/models/slack_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/slack_trigger_wrapper.rb
@@ -21,7 +21,7 @@ module DatadogAPIClient::V2
   class SlackTriggerWrapper
     include BaseGenericModel
 
-    # Trigger a workflow VIA Slack. The workflow must be published.
+    # Trigger a workflow from Slack. The workflow must be published.
     attr_reader :slack_trigger
 
     # A list of steps that run first after a trigger fires.
diff --git a/lib/datadog_api_client/v2/models/software_catalog_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/software_catalog_trigger_wrapper.rb
new file mode 100644
index 00000000000..f863c8aa47b
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/software_catalog_trigger_wrapper.rb
@@ -0,0 +1,135 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Schema for a Software Catalog-based trigger.
+  class SoftwareCatalogTriggerWrapper
+    include BaseGenericModel
+
+    # Trigger a workflow from Software Catalog.
+    attr_reader :software_catalog_trigger
+
+    # A list of steps that run first after a trigger fires.
+    attr_accessor :start_step_names
+
+    attr_accessor :additional_properties
+
+    # Attribute mapping from ruby-style variable name to JSON key.
+    # @!visibility private
+    def self.attribute_map
+      {
+        :'software_catalog_trigger' => :'softwareCatalogTrigger',
+        :'start_step_names' => :'startStepNames'
+      }
+    end
+
+    # Attribute type mapping.
+    # @!visibility private
+    def self.openapi_types
+      {
+        :'software_catalog_trigger' => :'Object',
+        :'start_step_names' => :'Array<String>'
+      }
+    end
+
+    # Initializes the object
+    # @param attributes [Hash] Model attributes in the form of hash
+    # @!visibility private
+    def initialize(attributes = {})
+      if (!attributes.is_a?(Hash))
+        fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SoftwareCatalogTriggerWrapper` initialize method"
+      end
+
+      self.additional_properties = {}
+      # check to see if the attribute exists and convert string to symbol for hash key
+      attributes = attributes.each_with_object({}) { |(k, v), h|
+        if (!self.class.attribute_map.key?(k.to_sym))
+          self.additional_properties[k.to_sym] = v
+        else
+          h[k.to_sym] = v
+        end
+      }
+
+      if attributes.key?(:'software_catalog_trigger')
+        self.software_catalog_trigger = attributes[:'software_catalog_trigger']
+      end
+
+      if attributes.key?(:'start_step_names')
+        if (value = attributes[:'start_step_names']).is_a?(Array)
+          self.start_step_names = value
+        end
+      end
+    end
+
+    # Check to see if the all the properties in the model are valid
+    # @return true if the model is valid
+    # @!visibility private
+    def valid?
+      return false if @software_catalog_trigger.nil?
+      true
+    end
+
+    # Custom attribute writer method with validation
+    # @param software_catalog_trigger [Object] Object to be assigned
+    # @!visibility private
+    def software_catalog_trigger=(software_catalog_trigger)
+      if software_catalog_trigger.nil?
+        fail ArgumentError, 'invalid value for "software_catalog_trigger", software_catalog_trigger cannot be nil.'
+      end
+      @software_catalog_trigger = software_catalog_trigger
+    end
+
+    # Returns the object in the form of hash, with additionalProperties support.
+    # @return [Hash] Returns the object in the form of hash
+    # @!visibility private
+    def to_hash
+      hash = {}
+      self.class.attribute_map.each_pair do |attr, param|
+        value = self.send(attr)
+        if value.nil?
+          is_nullable = self.class.openapi_nullable.include?(attr)
+          next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
+        end
+
+        hash[param] = _to_hash(value)
+      end
+      self.additional_properties.each_pair do |attr, value|
+        hash[attr] = value
+      end
+      hash
+    end
+
+    # Checks equality by comparing each attribute.
+    # @param o [Object] Object to be compared
+    # @!visibility private
+    def ==(o)
+      return true if self.equal?(o)
+      self.class == o.class &&
+          software_catalog_trigger == o.software_catalog_trigger &&
+          start_step_names == o.start_step_names &&
+          additional_properties == o.additional_properties
+    end
+
+    # Calculates hash code according to all attributes.
+    # @return [Integer] Hash code
+    # @!visibility private
+    def hash
+      [software_catalog_trigger, start_step_names, additional_properties].hash
+    end
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/trigger.rb b/lib/datadog_api_client/v2/models/trigger.rb
index ffa8d74e807..01a0e0a88de 100644
--- a/lib/datadog_api_client/v2/models/trigger.rb
+++ b/lib/datadog_api_client/v2/models/trigger.rb
@@ -30,13 +30,17 @@ def openapi_one_of
           :'AppTriggerWrapper',
           :'CaseTriggerWrapper',
           :'ChangeEventTriggerWrapper',
+          :'DatabaseMonitoringTriggerWrapper',
           :'DashboardTriggerWrapper',
           :'GithubWebhookTriggerWrapper',
           :'IncidentTriggerWrapper',
           :'MonitorTriggerWrapper',
+          :'NotebookTriggerWrapper',
           :'ScheduleTriggerWrapper',
           :'SecurityTriggerWrapper',
+          :'SelfServiceTriggerWrapper',
           :'SlackTriggerWrapper',
+          :'SoftwareCatalogTriggerWrapper',
           :'WorkflowTriggerWrapper'
         ]
       end
diff --git a/lib/datadog_api_client/v2/models/workflow_trigger_wrapper.rb b/lib/datadog_api_client/v2/models/workflow_trigger_wrapper.rb
index ff9203fba10..986f09d8a3f 100644
--- a/lib/datadog_api_client/v2/models/workflow_trigger_wrapper.rb
+++ b/lib/datadog_api_client/v2/models/workflow_trigger_wrapper.rb
@@ -24,7 +24,7 @@ class WorkflowTriggerWrapper
     # A list of steps that run first after a trigger fires.
     attr_accessor :start_step_names
 
-    # Trigger a workflow VIA the Datadog UI. Only required if no other trigger exists.
+    # Trigger a workflow from the Datadog UI. Only required if no other trigger exists.
     attr_reader :workflow_trigger
 
     attr_accessor :additional_properties

From 2ade69914da595e45b82d350f326f5aee246aacb Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Fri, 28 Mar 2025 15:25:17 +0000
Subject: [PATCH 11/17] [codeowners] Replace deprecated processes team (#2303)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                    | 8 ++++----
 features/v2/container_images.feature | 8 ++++----
 features/v2/containers.feature       | 8 ++++----
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index 210542fd275..d821461d63b 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-25 18:26:19.730337",
-            "spec_repo_commit": "b25d7c85"
+            "regenerated": "2025-03-28 15:07:48.185211",
+            "spec_repo_commit": "3f3e8eaf"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-25 18:26:19.746346",
-            "spec_repo_commit": "b25d7c85"
+            "regenerated": "2025-03-28 15:07:48.208726",
+            "spec_repo_commit": "3f3e8eaf"
         }
     }
 }
\ No newline at end of file
diff --git a/features/v2/container_images.feature b/features/v2/container_images.feature
index ad6e1559bec..8e9162526cf 100644
--- a/features/v2/container_images.feature
+++ b/features/v2/container_images.feature
@@ -10,25 +10,25 @@ Feature: Container Images
     And an instance of "ContainerImages" API
     And new "ListContainerImages" request
 
-  @replay-only @team:DataDog/processes
+  @replay-only @team:DataDog/container-experiences
   Scenario: Get all Container Image groups returns "OK" response
     Given request contains "group_by" parameter with value "short_image"
     When the request is sent
     Then the response status is 200 OK
     And the response "data[0].attributes.name" is equal to "test_name"
 
-  @generated @skip @team:DataDog/processes
+  @generated @skip @team:DataDog/container-experiences
   Scenario: Get all Container Images returns "Bad Request" response
     When the request is sent
     Then the response status is 400 Bad Request
 
-  @replay-only @team:DataDog/processes
+  @replay-only @team:DataDog/container-experiences
   Scenario: Get all Container Images returns "OK" response
     When the request is sent
     Then the response status is 200 OK
     And the response "data[0].attributes.name" is equal to "test_name"
 
-  @replay-only @skip-validation @team:DataDog/processes @with-pagination
+  @replay-only @skip-validation @team:DataDog/container-experiences @with-pagination
   Scenario: Get all Container Images returns "OK" response with pagination
     Given request contains "page[size]" parameter with value 2
     When the request with pagination is sent
diff --git a/features/v2/containers.feature b/features/v2/containers.feature
index 8149319237f..1e1e842371a 100644
--- a/features/v2/containers.feature
+++ b/features/v2/containers.feature
@@ -10,25 +10,25 @@ Feature: Containers
     And an instance of "Containers" API
     And new "ListContainers" request
 
-  @replay-only @team:DataDog/processes
+  @replay-only @team:DataDog/container-experiences
   Scenario: Get All Container groups returns "OK" response
     Given request contains "group_by" parameter with value "short_image"
     When the request is sent
     Then the response status is 200 OK
     And the response "data[0].attributes.count" is equal to 123
 
-  @generated @skip @team:DataDog/processes
+  @generated @skip @team:DataDog/container-experiences
   Scenario: Get All Containers returns "Bad Request" response
     When the request is sent
     Then the response status is 400 Bad Request
 
-  @replay-only @team:DataDog/processes
+  @replay-only @team:DataDog/container-experiences
   Scenario: Get All Containers returns "OK" response
     When the request is sent
     Then the response status is 200 OK
     And the response "data[0].attributes.name" is equal to "test_name"
 
-  @replay-only @skip-validation @team:DataDog/processes @with-pagination
+  @replay-only @skip-validation @team:DataDog/container-experiences @with-pagination
   Scenario: Get All Containers returns "OK" response with pagination
     Given request contains "page[size]" parameter with value 2
     When the request with pagination is sent

From f7c825cac6098d4026435f9949ffb500a3e7548d Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Fri, 28 Mar 2025 20:42:02 +0000
Subject: [PATCH 12/17] Deprecate options from logs aggregate API public spec
 (#2306)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                                         | 8 ++++----
 .generator/schemas/v2/openapi.yaml                        | 4 ++--
 .../v2/models/logs_aggregate_request.rb                   | 2 +-
 lib/datadog_api_client/v2/models/logs_list_request.rb     | 2 +-
 lib/datadog_api_client/v2/models/logs_query_options.rb    | 5 ++++-
 5 files changed, 12 insertions(+), 9 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index d821461d63b..1e7063a23b9 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-28 15:07:48.185211",
-            "spec_repo_commit": "3f3e8eaf"
+            "regenerated": "2025-03-28 19:43:11.098502",
+            "spec_repo_commit": "1d2132af"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-28 15:07:48.208726",
-            "spec_repo_commit": "3f3e8eaf"
+            "regenerated": "2025-03-28 19:43:11.121309",
+            "spec_repo_commit": "1d2132af"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index 664a9f7ecae..4aacf7eab58 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -19109,10 +19109,10 @@ components:
           type: string
       type: object
     LogsQueryOptions:
+      deprecated: true
       description: 'Global query options that are used during the query.
 
-        Note: you should supply either timezone or time offset, but not both. Otherwise,
-        the query will fail.'
+        Note: These fields are currently deprecated and do not affect the query results.'
       properties:
         timeOffset:
           description: The time offset (in seconds) to apply to the query.
diff --git a/lib/datadog_api_client/v2/models/logs_aggregate_request.rb b/lib/datadog_api_client/v2/models/logs_aggregate_request.rb
index 9861e98250a..e3933775525 100644
--- a/lib/datadog_api_client/v2/models/logs_aggregate_request.rb
+++ b/lib/datadog_api_client/v2/models/logs_aggregate_request.rb
@@ -31,7 +31,7 @@ class LogsAggregateRequest
     attr_accessor :group_by
 
     # Global query options that are used during the query.
-    # Note: you should supply either timezone or time offset, but not both. Otherwise, the query will fail.
+    # Note: These fields are currently deprecated and do not affect the query results.
     attr_accessor :options
 
     # Paging settings
diff --git a/lib/datadog_api_client/v2/models/logs_list_request.rb b/lib/datadog_api_client/v2/models/logs_list_request.rb
index e68ca9eda97..38ced026f55 100644
--- a/lib/datadog_api_client/v2/models/logs_list_request.rb
+++ b/lib/datadog_api_client/v2/models/logs_list_request.rb
@@ -25,7 +25,7 @@ class LogsListRequest
     attr_accessor :filter
 
     # Global query options that are used during the query.
-    # Note: you should supply either timezone or time offset, but not both. Otherwise, the query will fail.
+    # Note: These fields are currently deprecated and do not affect the query results.
     attr_accessor :options
 
     # Paging attributes for listing logs.
diff --git a/lib/datadog_api_client/v2/models/logs_query_options.rb b/lib/datadog_api_client/v2/models/logs_query_options.rb
index c0e91b9df5a..3dbb2a61e79 100644
--- a/lib/datadog_api_client/v2/models/logs_query_options.rb
+++ b/lib/datadog_api_client/v2/models/logs_query_options.rb
@@ -18,7 +18,9 @@
 
 module DatadogAPIClient::V2
   # Global query options that are used during the query.
-  # Note: you should supply either timezone or time offset, but not both. Otherwise, the query will fail.
+  # Note: These fields are currently deprecated and do not affect the query results.
+  #
+  # @deprecated This model is deprecated.
   class LogsQueryOptions
     include BaseGenericModel
 
@@ -52,6 +54,7 @@ def self.openapi_types
     # @param attributes [Hash] Model attributes in the form of hash
     # @!visibility private
     def initialize(attributes = {})
+      warn "[DEPRECATION] `LogsQueryOptions` is deprecated."
       if (!attributes.is_a?(Hash))
         fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::LogsQueryOptions` initialize method"
       end

From f0dec974f151c9c1b61ca09bb4b6c54f9a2ce72b Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Mon, 31 Mar 2025 17:51:49 +0000
Subject: [PATCH 13/17] Skip synthetics test to avoid conflict (#2307)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                | 8 ++++----
 features/v2/ip_allowlist.feature | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index 1e7063a23b9..53711ff9c03 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-28 19:43:11.098502",
-            "spec_repo_commit": "1d2132af"
+            "regenerated": "2025-03-31 17:39:58.222884",
+            "spec_repo_commit": "3826157e"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-28 19:43:11.121309",
-            "spec_repo_commit": "1d2132af"
+            "regenerated": "2025-03-31 17:39:58.238226",
+            "spec_repo_commit": "3826157e"
         }
     }
 }
\ No newline at end of file
diff --git a/features/v2/ip_allowlist.feature b/features/v2/ip_allowlist.feature
index 571c8b8ef8f..dbd899a6851 100644
--- a/features/v2/ip_allowlist.feature
+++ b/features/v2/ip_allowlist.feature
@@ -46,7 +46,7 @@ Feature: IP Allowlist
     When the request is sent
     Then the response status is 404 Not Found
 
-  @team:DataDog/aaa-core-access
+  @replay-only @skip-terraform-config @team:DataDog/aaa-core-access
   Scenario: Update IP Allowlist returns "OK" response
     Given the "ip_allowlist_empty_disabled" has no entries and is disabled
     And new "UpdateIPAllowlist" request

From d2f398113fc6893bcab96c4e6c8e6c187086dabc Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Tue, 1 Apr 2025 21:45:39 +0000
Subject: [PATCH 14/17] Add specs for Cloud Network Monitoring API (#2310)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                             |   8 +-
 .generator/schemas/v2/openapi.yaml            | 185 +++++++++++++++
 ...ted-connections-returns-OK-response.frozen |   1 +
 ...egated-connections-returns-OK-response.yml |  20 ++
 ...ctions-returns-Bad-Request-response.frozen |   1 +
 ...nnections-returns-Bad-Request-response.yml |  20 ++
 .../GetAggregatedConnections.rb               |   8 +
 features/scenarios_model_mapping.rb           |   7 +
 features/v2/cloud_network_monitoring.feature  |  29 +++
 features/v2/undo.json                         |   6 +
 lib/datadog_api_client/configuration.rb       |   1 +
 lib/datadog_api_client/inflector.rb           |   5 +
 .../v2/api/cloud_network_monitoring_api.rb    | 108 +++++++++
 ...le_aggregated_connection_response_array.rb | 107 +++++++++
 ...gle_aggregated_connection_response_data.rb | 126 ++++++++++
 ...ted_connection_response_data_attributes.rb | 215 ++++++++++++++++++
 ...ggregated_connection_response_data_type.rb |  27 +++
 17 files changed, 870 insertions(+), 4 deletions(-)
 create mode 100644 cassettes/features/v2/cloud_network_monitoring/Get-aggregated-connections-returns-OK-response.frozen
 create mode 100644 cassettes/features/v2/cloud_network_monitoring/Get-aggregated-connections-returns-OK-response.yml
 create mode 100644 cassettes/features/v2/cloud_network_monitoring/Get-all-aggregated-connections-returns-Bad-Request-response.frozen
 create mode 100644 cassettes/features/v2/cloud_network_monitoring/Get-all-aggregated-connections-returns-Bad-Request-response.yml
 create mode 100644 examples/v2/cloud-network-monitoring/GetAggregatedConnections.rb
 create mode 100644 features/v2/cloud_network_monitoring.feature
 create mode 100644 lib/datadog_api_client/v2/api/cloud_network_monitoring_api.rb
 create mode 100644 lib/datadog_api_client/v2/models/single_aggregated_connection_response_array.rb
 create mode 100644 lib/datadog_api_client/v2/models/single_aggregated_connection_response_data.rb
 create mode 100644 lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb
 create mode 100644 lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_type.rb

diff --git a/.apigentools-info b/.apigentools-info
index 53711ff9c03..ddcc17bb1fd 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-31 17:39:58.222884",
-            "spec_repo_commit": "3826157e"
+            "regenerated": "2025-04-01 20:55:53.888631",
+            "spec_repo_commit": "f629f10b"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-03-31 17:39:58.238226",
-            "spec_repo_commit": "3826157e"
+            "regenerated": "2025-04-01 20:55:53.904596",
+            "spec_repo_commit": "f629f10b"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index 4aacf7eab58..d99088e0a32 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -30188,6 +30188,125 @@ components:
           description: Link to the Incident created on ServiceNow
           type: string
       type: object
+    SingleAggregatedConnectionResponseArray:
+      description: The definition of `SingleAggregatedConnectionResponseArray` object.
+      example:
+        data:
+        - attributes:
+            bytes_sent_by_client: 100
+            bytes_sent_by_server: 200
+            group_bys:
+              client_team:
+              - networks
+              server_service:
+              - hucklebuck
+            packets_sent_by_client: 10
+            packets_sent_by_server: 20
+            rtt_micro_seconds: 800
+            tcp_closed_connections: 30
+            tcp_established_connections: 40
+            tcp_refusals: 7
+            tcp_resets: 5
+            tcp_retransmits: 30
+            tcp_timeouts: 6
+          id: client_team:networks, server_service:hucklebuck
+          type: aggregated_connection
+      properties:
+        data:
+          description: The `SingleAggregatedConnectionResponseArray` `data`.
+          items:
+            $ref: '#/components/schemas/SingleAggregatedConnectionResponseData'
+          type: array
+      type: object
+    SingleAggregatedConnectionResponseData:
+      description: The definition of `SingleAggregatedConnectionResponseData` object.
+      properties:
+        attributes:
+          $ref: '#/components/schemas/SingleAggregatedConnectionResponseDataAttributes'
+        id:
+          description: The `SingleAggregatedConnectionResponseData` `id`.
+          type: string
+        type:
+          $ref: '#/components/schemas/SingleAggregatedConnectionResponseDataType'
+      type: object
+    SingleAggregatedConnectionResponseDataAttributes:
+      description: The definition of `SingleAggregatedConnectionResponseDataAttributes`
+        object.
+      properties:
+        bytes_sent_by_client:
+          description: The total number of bytes sent by the client over the given
+            period.
+          format: int64
+          type: integer
+        bytes_sent_by_server:
+          description: The total number of bytes sent by the server over the given
+            period.
+          format: int64
+          type: integer
+        group_bys:
+          additionalProperties:
+            items:
+              type: string
+            type: array
+          description: The `attributes` `group_bys`.
+          type: object
+        packets_sent_by_client:
+          description: The total number of packets sent by the client over the given
+            period.
+          format: int64
+          type: integer
+        packets_sent_by_server:
+          description: The total number of packets sent by the server over the given
+            period.
+          format: int64
+          type: integer
+        rtt_micro_seconds:
+          description: Measured as TCP smoothed roundtrip time in microseconds (the
+            time between a TCP frame being sent and acknowledged).
+          format: int64
+          type: integer
+        tcp_closed_connections:
+          description: The number of TCP connections in a closed state. Measured in
+            connections per second from the client.
+          format: int64
+          type: integer
+        tcp_established_connections:
+          description: The number of TCP connections in an established state. Measured
+            in connections per second from the client.
+          format: int64
+          type: integer
+        tcp_refusals:
+          description: The number of TCP connections that were refused by the server.
+            Typically this indicates an attempt to connect to an IP/port that is not
+            receiving connections, or a firewall/security misconfiguration.
+          format: int64
+          type: integer
+        tcp_resets:
+          description: The number of TCP connections that were reset by the server.
+          format: int64
+          type: integer
+        tcp_retransmits:
+          description: TCP Retransmits represent detected failures that are retransmitted
+            to ensure delivery. Measured in count of retransmits from the client.
+          format: int64
+          type: integer
+        tcp_timeouts:
+          description: The number of TCP connections that timed out from the perspective
+            of the operating system. This can indicate general connectivity and latency
+            issues.
+          format: int64
+          type: integer
+      type: object
+    SingleAggregatedConnectionResponseDataType:
+      default: aggregated_connection
+      description: 'Aggregated connection resource type. Allowed enum values: `aggregated_connection`.
+
+        default: `aggregated_connection`'
+      enum:
+      - aggregated_connection
+      type: string
+      x-enum-varnames:
+      - AGGREGATED_CONNECTION
     SlackIntegrationMetadata:
       description: Incident integration metadata for the Slack integration.
       properties:
@@ -44282,6 +44401,68 @@ paths:
       summary: Update the tags for a device
       tags:
       - Network Device Monitoring
+  /api/v2/network/connections/aggregate:
+    get:
+      description: Get aggregated connections
+      operationId: GetAggregatedConnections
+      parameters:
+      - description: Unix timestamp (number of seconds since epoch) of the start of
+          the query window. If not provided, the start of the query window is 15 minutes
+          before the "to" timestamp. If neither "from" nor "to" are provided, the
+          query window is [now - 15m, now].
+        in: query
+        name: from
+        schema:
+          format: int64
+          type: integer
+      - description: Unix timestamp (number of seconds since epoch) of the end of
+          the query window. If not provided, the end of the query window is the current
+          time. If neither "from" nor "to" are provided, the query window is [now
+          - 15m, now].
+        in: query
+        name: to
+        schema:
+          format: int64
+          type: integer
+      - description: Comma-separated list of fields to group connections by.
+        in: query
+        name: group_by
+        schema:
+          type: string
+      - description: Comma-separated list of tags to filter connections by.
+        in: query
+        name: tags
+        schema:
+          type: string
+      - description: The number of connections to be returned. The maximum value is
+          5000.
+        in: query
+        name: limit
+        schema:
+          default: 100
+          format: int32
+          maximum: 5000
+          minimum: 1
+          type: integer
+      responses:
+        '200':
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/SingleAggregatedConnectionResponseArray'
+          description: OK
+        '400':
+          $ref: '#/components/responses/BadRequestResponse'
+        '429':
+          $ref: '#/components/responses/TooManyRequestsResponse'
+      summary: Get aggregated connections
+      tags:
+      - Cloud Network Monitoring
+      x-unstable: '**Note**: This endpoint is in Preview. If you have any feedback,
+
+        contact [Datadog support](https://docs.datadoghq.com/help/).
+
+        type: safe'
   /api/v2/org_configs:
     get:
       description: Returns all Org Configs (name, description, and value).
@@ -53624,6 +53805,10 @@ tags:
     and the `cloud_cost` data source. For more information, see the [Cloud Cost Management
     documentation](https://docs.datadoghq.com/cloud_cost_management/).
   name: Cloud Cost Management
+- description: The Cloud Network Monitoring API allows you to fetch aggregated connections
+    and their attributes. See the [Cloud Network Monitoring page](https://docs.datadoghq.com/network_monitoring/cloud_network_monitoring/)
+    for more information.
+  name: Cloud Network Monitoring
 - description: Manage your Datadog Cloudflare integration directly through the Datadog
     API. See the [Cloudflare integration page](https://docs.datadoghq.com/integrations/cloudflare/)
     for more information.
diff --git a/cassettes/features/v2/cloud_network_monitoring/Get-aggregated-connections-returns-OK-response.frozen b/cassettes/features/v2/cloud_network_monitoring/Get-aggregated-connections-returns-OK-response.frozen
new file mode 100644
index 00000000000..ec3ccb6dc70
--- /dev/null
+++ b/cassettes/features/v2/cloud_network_monitoring/Get-aggregated-connections-returns-OK-response.frozen
@@ -0,0 +1 @@
+2025-03-31T18:18:50.338Z
\ No newline at end of file
diff --git a/cassettes/features/v2/cloud_network_monitoring/Get-aggregated-connections-returns-OK-response.yml b/cassettes/features/v2/cloud_network_monitoring/Get-aggregated-connections-returns-OK-response.yml
new file mode 100644
index 00000000000..c9c4d65b870
--- /dev/null
+++ b/cassettes/features/v2/cloud_network_monitoring/Get-aggregated-connections-returns-OK-response.yml
@@ -0,0 +1,20 @@
+http_interactions:
+- recorded_at: Mon, 31 Mar 2025 18:18:50 GMT
+  request:
+    body: null
+    headers:
+      Accept:
+      - application/json
+    method: GET
+    uri: https://api.datadoghq.com/api/v2/network/connections/aggregate
+  response:
+    body:
+      encoding: UTF-8
+      string: '{"data":[]}'
+    headers:
+      Content-Type:
+      - application/vnd.api+json
+    status:
+      code: 200
+      message: OK
+recorded_with: VCR 6.0.0
diff --git a/cassettes/features/v2/cloud_network_monitoring/Get-all-aggregated-connections-returns-Bad-Request-response.frozen b/cassettes/features/v2/cloud_network_monitoring/Get-all-aggregated-connections-returns-Bad-Request-response.frozen
new file mode 100644
index 00000000000..ca4c2f607f7
--- /dev/null
+++ b/cassettes/features/v2/cloud_network_monitoring/Get-all-aggregated-connections-returns-Bad-Request-response.frozen
@@ -0,0 +1 @@
+2025-03-31T18:18:50.770Z
\ No newline at end of file
diff --git a/cassettes/features/v2/cloud_network_monitoring/Get-all-aggregated-connections-returns-Bad-Request-response.yml b/cassettes/features/v2/cloud_network_monitoring/Get-all-aggregated-connections-returns-Bad-Request-response.yml
new file mode 100644
index 00000000000..364bf8be363
--- /dev/null
+++ b/cassettes/features/v2/cloud_network_monitoring/Get-all-aggregated-connections-returns-Bad-Request-response.yml
@@ -0,0 +1,20 @@
+http_interactions:
+- recorded_at: Mon, 31 Mar 2025 18:18:50 GMT
+  request:
+    body: null
+    headers:
+      Accept:
+      - application/json
+    method: GET
+    uri: https://api.datadoghq.com/api/v2/network/connections/aggregate?limit=6000
+  response:
+    body:
+      encoding: UTF-8
+      string: '{"errors":[{"status":"400","title":"Invalid limit"}]}'
+    headers:
+      Content-Type:
+      - application/vnd.api+json
+    status:
+      code: 400
+      message: Bad Request
+recorded_with: VCR 6.0.0
diff --git a/examples/v2/cloud-network-monitoring/GetAggregatedConnections.rb b/examples/v2/cloud-network-monitoring/GetAggregatedConnections.rb
new file mode 100644
index 00000000000..3157360f131
--- /dev/null
+++ b/examples/v2/cloud-network-monitoring/GetAggregatedConnections.rb
@@ -0,0 +1,8 @@
+# Get aggregated connections returns "OK" response
+
+require "datadog_api_client"
+DatadogAPIClient.configure do |config|
+  config.unstable_operations["v2.get_aggregated_connections".to_sym] = true
+end
+api_instance = DatadogAPIClient::V2::CloudNetworkMonitoringAPI.new
+p api_instance.get_aggregated_connections()
diff --git a/features/scenarios_model_mapping.rb b/features/scenarios_model_mapping.rb
index 42ce2276341..d275591633b 100644
--- a/features/scenarios_model_mapping.rb
+++ b/features/scenarios_model_mapping.rb
@@ -1765,6 +1765,13 @@
             "device_id" => "String",
             "body" => "ListTagsResponse",
     },
+    "v2.GetAggregatedConnections" => {
+            "from" => "Integer",
+            "to" => "Integer",
+            "group_by" => "String",
+            "tags" => "String",
+            "limit" => "Integer",
+    },
     "v2.GetOrgConfig" => {
             "org_config_name" => "String",
     },
diff --git a/features/v2/cloud_network_monitoring.feature b/features/v2/cloud_network_monitoring.feature
new file mode 100644
index 00000000000..2ae8e7cf2d0
--- /dev/null
+++ b/features/v2/cloud_network_monitoring.feature
@@ -0,0 +1,29 @@
+@endpoint(cloud-network-monitoring) @endpoint(cloud-network-monitoring-v2)
+Feature: Cloud Network Monitoring
+  The Cloud Network Monitoring API allows you to fetch aggregated
+  connections and their attributes. See the [Cloud Network Monitoring page](
+  https://docs.datadoghq.com/network_monitoring/cloud_network_monitoring/)
+  for more information.
+
+  Background:
+    Given a valid "apiKeyAuth" key in the system
+    And a valid "appKeyAuth" key in the system
+    And an instance of "CloudNetworkMonitoring" API
+    And operation "GetAggregatedConnections" enabled
+    And new "GetAggregatedConnections" request
+
+  @generated @skip @team:Datadog/networks
+  Scenario: Get aggregated connections returns "Bad Request" response
+    When the request is sent
+    Then the response status is 400 Bad Request
+
+  @team:Datadog/networks
+  Scenario: Get aggregated connections returns "OK" response
+    When the request is sent
+    Then the response status is 200 OK
+
+  @skip-python @skip-ruby @team:Datadog/networks
+  Scenario: Get all aggregated connections returns "Bad Request" response
+    Given request contains "limit" parameter with value 6000
+    When the request is sent
+    Then the response status is 400 Bad Request
diff --git a/features/v2/undo.json b/features/v2/undo.json
index 13df2998019..f8e2c4ef1bd 100644
--- a/features/v2/undo.json
+++ b/features/v2/undo.json
@@ -1744,6 +1744,12 @@
       "type": "idempotent"
     }
   },
+  "GetAggregatedConnections": {
+    "tag": "Cloud Network Monitoring",
+    "undo": {
+      "type": "safe"
+    }
+  },
   "ListOrgConfigs": {
     "tag": "Organizations",
     "undo": {
diff --git a/lib/datadog_api_client/configuration.rb b/lib/datadog_api_client/configuration.rb
index 921de0897dd..b2f1493cb28 100644
--- a/lib/datadog_api_client/configuration.rb
+++ b/lib/datadog_api_client/configuration.rb
@@ -230,6 +230,7 @@ def initialize
             "v2.list_aws_namespaces": false,
             "v2.update_aws_account": false,
             "v2.list_aws_logs_services": false,
+            "v2.get_aggregated_connections": false,
             "v2.cancel_historical_job": false,
             "v2.convert_job_result_to_signal": false,
             "v2.delete_historical_job": false,
diff --git a/lib/datadog_api_client/inflector.rb b/lib/datadog_api_client/inflector.rb
index 7d3c4ff9d7d..08246f62706 100644
--- a/lib/datadog_api_client/inflector.rb
+++ b/lib/datadog_api_client/inflector.rb
@@ -2793,6 +2793,10 @@ def overrides
           "v2.service_definition_v2_version" => "ServiceDefinitionV2Version",
           "v2.service_now_ticket" => "ServiceNowTicket",
           "v2.service_now_ticket_result" => "ServiceNowTicketResult",
+          "v2.single_aggregated_connection_response_array" => "SingleAggregatedConnectionResponseArray",
+          "v2.single_aggregated_connection_response_data" => "SingleAggregatedConnectionResponseData",
+          "v2.single_aggregated_connection_response_data_attributes" => "SingleAggregatedConnectionResponseDataAttributes",
+          "v2.single_aggregated_connection_response_data_type" => "SingleAggregatedConnectionResponseDataType",
           "v2.slack_integration_metadata" => "SlackIntegrationMetadata",
           "v2.slack_integration_metadata_channel_item" => "SlackIntegrationMetadataChannelItem",
           "v2.slack_trigger_wrapper" => "SlackTriggerWrapper",
@@ -3087,6 +3091,7 @@ def overrides
         "v2.ci_visibility_pipelines_api" => "CIVisibilityPipelinesAPI",
         "v2.ci_visibility_tests_api" => "CIVisibilityTestsAPI",
         "v2.cloud_cost_management_api" => "CloudCostManagementAPI",
+        "v2.cloud_network_monitoring_api" => "CloudNetworkMonitoringAPI",
         "v2.cloudflare_integration_api" => "CloudflareIntegrationAPI",
         "v2.confluent_cloud_api" => "ConfluentCloudAPI",
         "v2.container_images_api" => "ContainerImagesAPI",
diff --git a/lib/datadog_api_client/v2/api/cloud_network_monitoring_api.rb b/lib/datadog_api_client/v2/api/cloud_network_monitoring_api.rb
new file mode 100644
index 00000000000..e7daf39cfc8
--- /dev/null
+++ b/lib/datadog_api_client/v2/api/cloud_network_monitoring_api.rb
@@ -0,0 +1,108 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'cgi'
+
+module DatadogAPIClient::V2
+  class CloudNetworkMonitoringAPI
+    attr_accessor :api_client
+
+    def initialize(api_client = DatadogAPIClient::APIClient.default)
+      @api_client = api_client
+    end
+
+    # Get aggregated connections.
+    #
+    # @see #get_aggregated_connections_with_http_info
+    def get_aggregated_connections(opts = {})
+      data, _status_code, _headers = get_aggregated_connections_with_http_info(opts)
+      data
+    end
+
+    # Get aggregated connections.
+    #
+    # Get aggregated connections
+    #
+    # @param opts [Hash] the optional parameters
+    # @option opts [Integer] :from Unix timestamp (number of seconds since epoch) of the start of the query window. If not provided, the start of the query window is 15 minutes before the "to" timestamp. If neither "from" nor "to" are provided, the query window is [now - 15m, now].
+    # @option opts [Integer] :to Unix timestamp (number of seconds since epoch) of the end of the query window. If not provided, the end of the query window is the current time. If neither "from" nor "to" are provided, the query window is [now - 15m, now].
+    # @option opts [String] :group_by Comma-separated list of fields to group connections by.
+    # @option opts [String] :tags Comma-separated list of tags to filter connections by.
+    # @option opts [Integer] :limit The number of connections to be returned. The maximum value is 5000.
+    # @return [Array<(SingleAggregatedConnectionResponseArray, Integer, Hash)>] SingleAggregatedConnectionResponseArray data, response status code and response headers
+    def get_aggregated_connections_with_http_info(opts = {})
+      unstable_enabled = @api_client.config.unstable_operations["v2.get_aggregated_connections".to_sym]
+      if unstable_enabled
+        @api_client.config.logger.warn format("Using unstable operation '%s'", "v2.get_aggregated_connections")
+      else
+        raise DatadogAPIClient::APIError.new(message: format("Unstable operation '%s' is disabled", "v2.get_aggregated_connections"))
+      end
+
+      if @api_client.config.debugging
+        @api_client.config.logger.debug 'Calling API: CloudNetworkMonitoringAPI.get_aggregated_connections ...'
+      end
+      if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 5000
+        fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling CloudNetworkMonitoringAPI.get_aggregated_connections, must be smaller than or equal to 5000.'
+      end
+      if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1
+        fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling CloudNetworkMonitoringAPI.get_aggregated_connections, must be greater than or equal to 1.'
+      end
+      # resource path
+      local_var_path = '/api/v2/network/connections/aggregate'
+
+      # query parameters
+      query_params = opts[:query_params] || {}
+      query_params[:'from'] = opts[:'from'] if !opts[:'from'].nil?
+      query_params[:'to'] = opts[:'to'] if !opts[:'to'].nil?
+      query_params[:'group_by'] = opts[:'group_by'] if !opts[:'group_by'].nil?
+      query_params[:'tags'] = opts[:'tags'] if !opts[:'tags'].nil?
+      query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
+
+      # header parameters
+      header_params = opts[:header_params] || {}
+      # HTTP header 'Accept' (if needed)
+      header_params['Accept'] = @api_client.select_header_accept(['application/json'])
+
+      # form parameters
+      form_params = opts[:form_params] || {}
+
+      # http body (model)
+      post_body = opts[:debug_body]
+
+      # return_type
+      return_type = opts[:debug_return_type] || 'SingleAggregatedConnectionResponseArray'
+
+      # auth_names
+      auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth]
+
+      new_options = opts.merge(
+        :operation => :get_aggregated_connections,
+        :header_params => header_params,
+        :query_params => query_params,
+        :form_params => form_params,
+        :body => post_body,
+        :auth_names => auth_names,
+        :return_type => return_type,
+        :api_version => "V2"
+      )
+
+      data, status_code, headers = @api_client.call_api(Net::HTTP::Get, local_var_path, new_options)
+      if @api_client.config.debugging
+        @api_client.config.logger.debug "API called: CloudNetworkMonitoringAPI#get_aggregated_connections\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
+      end
+      return data, status_code, headers
+    end
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/single_aggregated_connection_response_array.rb b/lib/datadog_api_client/v2/models/single_aggregated_connection_response_array.rb
new file mode 100644
index 00000000000..075e01da430
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/single_aggregated_connection_response_array.rb
@@ -0,0 +1,107 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # The definition of `SingleAggregatedConnectionResponseArray` object.
+  class SingleAggregatedConnectionResponseArray
+    include BaseGenericModel
+
+    # The `SingleAggregatedConnectionResponseArray` `data`.
+    attr_accessor :data
+
+    attr_accessor :additional_properties
+
+    # Attribute mapping from ruby-style variable name to JSON key.
+    # @!visibility private
+    def self.attribute_map
+      {
+        :'data' => :'data'
+      }
+    end
+
+    # Attribute type mapping.
+    # @!visibility private
+    def self.openapi_types
+      {
+        :'data' => :'Array<SingleAggregatedConnectionResponseData>'
+      }
+    end
+
+    # Initializes the object
+    # @param attributes [Hash] Model attributes in the form of hash
+    # @!visibility private
+    def initialize(attributes = {})
+      if (!attributes.is_a?(Hash))
+        fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SingleAggregatedConnectionResponseArray` initialize method"
+      end
+
+      self.additional_properties = {}
+      # check to see if the attribute exists and convert string to symbol for hash key
+      attributes = attributes.each_with_object({}) { |(k, v), h|
+        if (!self.class.attribute_map.key?(k.to_sym))
+          self.additional_properties[k.to_sym] = v
+        else
+          h[k.to_sym] = v
+        end
+      }
+
+      if attributes.key?(:'data')
+        if (value = attributes[:'data']).is_a?(Array)
+          self.data = value
+        end
+      end
+    end
+
+    # Returns the object in the form of hash, with additionalProperties support.
+    # @return [Hash] Returns the object in the form of hash
+    # @!visibility private
+    def to_hash
+      hash = {}
+      self.class.attribute_map.each_pair do |attr, param|
+        value = self.send(attr)
+        if value.nil?
+          is_nullable = self.class.openapi_nullable.include?(attr)
+          next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
+        end
+
+        hash[param] = _to_hash(value)
+      end
+      self.additional_properties.each_pair do |attr, value|
+        hash[attr] = value
+      end
+      hash
+    end
+
+    # Checks equality by comparing each attribute.
+    # @param o [Object] Object to be compared
+    # @!visibility private
+    def ==(o)
+      return true if self.equal?(o)
+      self.class == o.class &&
+          data == o.data &&
+          additional_properties == o.additional_properties
+    end
+
+    # Calculates hash code according to all attributes.
+    # @return [Integer] Hash code
+    # @!visibility private
+    def hash
+      [data, additional_properties].hash
+    end
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data.rb b/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data.rb
new file mode 100644
index 00000000000..0eab57aca79
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data.rb
@@ -0,0 +1,126 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # The definition of `SingleAggregatedConnectionResponseData` object.
+  class SingleAggregatedConnectionResponseData
+    include BaseGenericModel
+
+    # The definition of `SingleAggregatedConnectionResponseDataAttributes` object.
+    attr_accessor :attributes
+
+    # The `SingleAggregatedConnectionResponseData` `id`.
+    attr_accessor :id
+
+    # Aggregated connection resource type. Allowed enum values: `aggregated_connection`.
+    # default: `aggregated_connection`
+    attr_accessor :type
+
+    attr_accessor :additional_properties
+
+    # Attribute mapping from ruby-style variable name to JSON key.
+    # @!visibility private
+    def self.attribute_map
+      {
+        :'attributes' => :'attributes',
+        :'id' => :'id',
+        :'type' => :'type'
+      }
+    end
+
+    # Attribute type mapping.
+    # @!visibility private
+    def self.openapi_types
+      {
+        :'attributes' => :'SingleAggregatedConnectionResponseDataAttributes',
+        :'id' => :'String',
+        :'type' => :'SingleAggregatedConnectionResponseDataType'
+      }
+    end
+
+    # Initializes the object
+    # @param attributes [Hash] Model attributes in the form of hash
+    # @!visibility private
+    def initialize(attributes = {})
+      if (!attributes.is_a?(Hash))
+        fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SingleAggregatedConnectionResponseData` initialize method"
+      end
+
+      self.additional_properties = {}
+      # check to see if the attribute exists and convert string to symbol for hash key
+      attributes = attributes.each_with_object({}) { |(k, v), h|
+        if (!self.class.attribute_map.key?(k.to_sym))
+          self.additional_properties[k.to_sym] = v
+        else
+          h[k.to_sym] = v
+        end
+      }
+
+      if attributes.key?(:'attributes')
+        self.attributes = attributes[:'attributes']
+      end
+
+      if attributes.key?(:'id')
+        self.id = attributes[:'id']
+      end
+
+      if attributes.key?(:'type')
+        self.type = attributes[:'type']
+      end
+    end
+
+    # Returns the object in the form of hash, with additionalProperties support.
+    # @return [Hash] Returns the object in the form of hash
+    # @!visibility private
+    def to_hash
+      hash = {}
+      self.class.attribute_map.each_pair do |attr, param|
+        value = self.send(attr)
+        if value.nil?
+          is_nullable = self.class.openapi_nullable.include?(attr)
+          next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
+        end
+
+        hash[param] = _to_hash(value)
+      end
+      self.additional_properties.each_pair do |attr, value|
+        hash[attr] = value
+      end
+      hash
+    end
+
+    # Checks equality by comparing each attribute.
+    # @param o [Object] Object to be compared
+    # @!visibility private
+    def ==(o)
+      return true if self.equal?(o)
+      self.class == o.class &&
+          attributes == o.attributes &&
+          id == o.id &&
+          type == o.type &&
+          additional_properties == o.additional_properties
+    end
+
+    # Calculates hash code according to all attributes.
+    # @return [Integer] Hash code
+    # @!visibility private
+    def hash
+      [attributes, id, type, additional_properties].hash
+    end
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb b/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb
new file mode 100644
index 00000000000..a9c79f6b943
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb
@@ -0,0 +1,215 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # The definition of `SingleAggregatedConnectionResponseDataAttributes` object.
+  class SingleAggregatedConnectionResponseDataAttributes
+    include BaseGenericModel
+
+    # The total number of bytes sent by the client over the given period.
+    attr_accessor :bytes_sent_by_client
+
+    # The total number of bytes sent by the server over the given period.
+    attr_accessor :bytes_sent_by_server
+
+    # The `attributes` `group_bys`.
+    attr_accessor :group_bys
+
+    # The total number of packets sent by the client over the given period.
+    attr_accessor :packets_sent_by_client
+
+    # The total number of packets sent by the server over the given period.
+    attr_accessor :packets_sent_by_server
+
+    # Measured as TCP smoothed roundtrip time in microseconds (the time between a TCP frame being sent and acknowledged).
+    attr_accessor :rtt_micro_seconds
+
+    # The number of TCP connections in a closed state. Measured in connections per second from the client.
+    attr_accessor :tcp_closed_connections
+
+    # The number of TCP connections in an established state. Measured in connections per second from the client.
+    attr_accessor :tcp_established_connections
+
+    # The number of TCP connections that were refused by the server. Typically this indicates an attempt to connect to an IP/port that is not receiving connections, or a firewall/security misconfiguration.
+    attr_accessor :tcp_refusals
+
+    # The number of TCP connections that were reset by the server.
+    attr_accessor :tcp_resets
+
+    # TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
+    attr_accessor :tcp_retransmits
+
+    # The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.
+    attr_accessor :tcp_timeouts
+
+    attr_accessor :additional_properties
+
+    # Attribute mapping from ruby-style variable name to JSON key.
+    # @!visibility private
+    def self.attribute_map
+      {
+        :'bytes_sent_by_client' => :'bytes_sent_by_client',
+        :'bytes_sent_by_server' => :'bytes_sent_by_server',
+        :'group_bys' => :'group_bys',
+        :'packets_sent_by_client' => :'packets_sent_by_client',
+        :'packets_sent_by_server' => :'packets_sent_by_server',
+        :'rtt_micro_seconds' => :'rtt_micro_seconds',
+        :'tcp_closed_connections' => :'tcp_closed_connections',
+        :'tcp_established_connections' => :'tcp_established_connections',
+        :'tcp_refusals' => :'tcp_refusals',
+        :'tcp_resets' => :'tcp_resets',
+        :'tcp_retransmits' => :'tcp_retransmits',
+        :'tcp_timeouts' => :'tcp_timeouts'
+      }
+    end
+
+    # Attribute type mapping.
+    # @!visibility private
+    def self.openapi_types
+      {
+        :'bytes_sent_by_client' => :'Integer',
+        :'bytes_sent_by_server' => :'Integer',
+        :'group_bys' => :'Hash<String, Array<String>>',
+        :'packets_sent_by_client' => :'Integer',
+        :'packets_sent_by_server' => :'Integer',
+        :'rtt_micro_seconds' => :'Integer',
+        :'tcp_closed_connections' => :'Integer',
+        :'tcp_established_connections' => :'Integer',
+        :'tcp_refusals' => :'Integer',
+        :'tcp_resets' => :'Integer',
+        :'tcp_retransmits' => :'Integer',
+        :'tcp_timeouts' => :'Integer'
+      }
+    end
+
+    # Initializes the object
+    # @param attributes [Hash] Model attributes in the form of hash
+    # @!visibility private
+    def initialize(attributes = {})
+      if (!attributes.is_a?(Hash))
+        fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SingleAggregatedConnectionResponseDataAttributes` initialize method"
+      end
+
+      self.additional_properties = {}
+      # check to see if the attribute exists and convert string to symbol for hash key
+      attributes = attributes.each_with_object({}) { |(k, v), h|
+        if (!self.class.attribute_map.key?(k.to_sym))
+          self.additional_properties[k.to_sym] = v
+        else
+          h[k.to_sym] = v
+        end
+      }
+
+      if attributes.key?(:'bytes_sent_by_client')
+        self.bytes_sent_by_client = attributes[:'bytes_sent_by_client']
+      end
+
+      if attributes.key?(:'bytes_sent_by_server')
+        self.bytes_sent_by_server = attributes[:'bytes_sent_by_server']
+      end
+
+      if attributes.key?(:'group_bys')
+        self.group_bys = attributes[:'group_bys']
+      end
+
+      if attributes.key?(:'packets_sent_by_client')
+        self.packets_sent_by_client = attributes[:'packets_sent_by_client']
+      end
+
+      if attributes.key?(:'packets_sent_by_server')
+        self.packets_sent_by_server = attributes[:'packets_sent_by_server']
+      end
+
+      if attributes.key?(:'rtt_micro_seconds')
+        self.rtt_micro_seconds = attributes[:'rtt_micro_seconds']
+      end
+
+      if attributes.key?(:'tcp_closed_connections')
+        self.tcp_closed_connections = attributes[:'tcp_closed_connections']
+      end
+
+      if attributes.key?(:'tcp_established_connections')
+        self.tcp_established_connections = attributes[:'tcp_established_connections']
+      end
+
+      if attributes.key?(:'tcp_refusals')
+        self.tcp_refusals = attributes[:'tcp_refusals']
+      end
+
+      if attributes.key?(:'tcp_resets')
+        self.tcp_resets = attributes[:'tcp_resets']
+      end
+
+      if attributes.key?(:'tcp_retransmits')
+        self.tcp_retransmits = attributes[:'tcp_retransmits']
+      end
+
+      if attributes.key?(:'tcp_timeouts')
+        self.tcp_timeouts = attributes[:'tcp_timeouts']
+      end
+    end
+
+    # Returns the object in the form of hash, with additionalProperties support.
+    # @return [Hash] Returns the object in the form of hash
+    # @!visibility private
+    def to_hash
+      hash = {}
+      self.class.attribute_map.each_pair do |attr, param|
+        value = self.send(attr)
+        if value.nil?
+          is_nullable = self.class.openapi_nullable.include?(attr)
+          next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
+        end
+
+        hash[param] = _to_hash(value)
+      end
+      self.additional_properties.each_pair do |attr, value|
+        hash[attr] = value
+      end
+      hash
+    end
+
+    # Checks equality by comparing each attribute.
+    # @param o [Object] Object to be compared
+    # @!visibility private
+    def ==(o)
+      return true if self.equal?(o)
+      self.class == o.class &&
+          bytes_sent_by_client == o.bytes_sent_by_client &&
+          bytes_sent_by_server == o.bytes_sent_by_server &&
+          group_bys == o.group_bys &&
+          packets_sent_by_client == o.packets_sent_by_client &&
+          packets_sent_by_server == o.packets_sent_by_server &&
+          rtt_micro_seconds == o.rtt_micro_seconds &&
+          tcp_closed_connections == o.tcp_closed_connections &&
+          tcp_established_connections == o.tcp_established_connections &&
+          tcp_refusals == o.tcp_refusals &&
+          tcp_resets == o.tcp_resets &&
+          tcp_retransmits == o.tcp_retransmits &&
+          tcp_timeouts == o.tcp_timeouts &&
+          additional_properties == o.additional_properties
+    end
+
+    # Calculates hash code according to all attributes.
+    # @return [Integer] Hash code
+    # @!visibility private
+    def hash
+      [bytes_sent_by_client, bytes_sent_by_server, group_bys, packets_sent_by_client, packets_sent_by_server, rtt_micro_seconds, tcp_closed_connections, tcp_established_connections, tcp_refusals, tcp_resets, tcp_retransmits, tcp_timeouts, additional_properties].hash
+    end
+  end
+end
diff --git a/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_type.rb b/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_type.rb
new file mode 100644
index 00000000000..85e7f64abdb
--- /dev/null
+++ b/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_type.rb
@@ -0,0 +1,27 @@
+=begin
+#Datadog API V2 Collection
+
+#Collection of all Datadog Public endpoints.
+
+The version of the OpenAPI document: 1.0
+Contact: support@datadoghq.com
+Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
+
+ Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ This product includes software developed at Datadog (https://www.datadoghq.com/).
+ Copyright 2020-Present Datadog, Inc.
+
+=end
+
+require 'date'
+require 'time'
+
+module DatadogAPIClient::V2
+  # Aggregated connection resource type. Allowed enum values: `aggregated_connection`.
+  # default: `aggregated_connection`
+  class SingleAggregatedConnectionResponseDataType
+    include BaseEnumModel
+
+    AGGREGATED_CONNECTION = "aggregated_connection".freeze
+  end
+end

From 20563f8fda7cfd53c4476b4f843a5e102b4781e4 Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Wed, 2 Apr 2025 15:13:44 +0000
Subject: [PATCH 15/17] [Cloud Network Monitoring API] Fix typo (#2315)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                                         | 8 ++++----
 .generator/schemas/v2/openapi.yaml                        | 6 ++----
 ...ngle_aggregated_connection_response_data_attributes.rb | 2 +-
 3 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index ddcc17bb1fd..5a308c3b995 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-04-01 20:55:53.888631",
-            "spec_repo_commit": "f629f10b"
+            "regenerated": "2025-04-01 23:26:29.537619",
+            "spec_repo_commit": "2000c9c8"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-04-01 20:55:53.904596",
-            "spec_repo_commit": "f629f10b"
+            "regenerated": "2025-04-01 23:26:29.553596",
+            "spec_repo_commit": "2000c9c8"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index d99088e0a32..0c7c32e0f8e 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -30261,7 +30261,7 @@ components:
           format: int64
           type: integer
         rtt_micro_seconds:
-          description: Measured as TCP smoothed roundtrip time in microseconds (the
+          description: Measured as TCP smoothed round trip time in microseconds (the
             time between a TCP frame being sent and acknowledged).
           format: int64
           type: integer
@@ -44460,9 +44460,7 @@ paths:
       - Cloud Network Monitoring
       x-unstable: '**Note**: This endpoint is in Preview. If you have any feedback,
 
-        contact [Datadog support](https://docs.datadoghq.com/help/).
-
-        type: safe'
+        contact [Datadog support](https://docs.datadoghq.com/help/).'
   /api/v2/org_configs:
     get:
       description: Returns all Org Configs (name, description, and value).
diff --git a/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb b/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb
index a9c79f6b943..d79c7c1a0d8 100644
--- a/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb
+++ b/lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb
@@ -36,7 +36,7 @@ class SingleAggregatedConnectionResponseDataAttributes
     # The total number of packets sent by the server over the given period.
     attr_accessor :packets_sent_by_server
 
-    # Measured as TCP smoothed roundtrip time in microseconds (the time between a TCP frame being sent and acknowledged).
+    # Measured as TCP smoothed round trip time in microseconds (the time between a TCP frame being sent and acknowledged).
     attr_accessor :rtt_micro_seconds
 
     # The number of TCP connections in a closed state. Measured in connections per second from the client.

From 67d695dda0dab22853923fcd3941dd737f6ff18d Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Wed, 2 Apr 2025 20:46:41 +0000
Subject: [PATCH 16/17] Add more Security Monitoring Data Source enum values
 (#2305)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                                         | 8 ++++----
 .generator/schemas/v2/openapi.yaml                        | 8 ++++++++
 .../v2/models/security_monitoring_standard_data_source.rb | 4 ++++
 3 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index 5a308c3b995..7fd1d12b9f9 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-04-01 23:26:29.537619",
-            "spec_repo_commit": "2000c9c8"
+            "regenerated": "2025-04-02 19:55:38.978560",
+            "spec_repo_commit": "1cc45c45"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-04-01 23:26:29.553596",
-            "spec_repo_commit": "2000c9c8"
+            "regenerated": "2025-04-02 19:55:38.997117",
+            "spec_repo_commit": "1cc45c45"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index 0c7c32e0f8e..1072d1213ef 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -27702,11 +27702,19 @@ components:
       enum:
       - logs
       - audit
+      - app_sec_spans
+      - spans
+      - security_runtime
+      - network
       example: logs
       type: string
       x-enum-varnames:
       - LOGS
       - AUDIT
+      - APP_SEC_SPANS
+      - SPANS
+      - SECURITY_RUNTIME
+      - NETWORK
     SecurityMonitoringStandardRuleCreatePayload:
       description: Create a new rule.
       properties:
diff --git a/lib/datadog_api_client/v2/models/security_monitoring_standard_data_source.rb b/lib/datadog_api_client/v2/models/security_monitoring_standard_data_source.rb
index f2ee764b6ac..4a9db40e441 100644
--- a/lib/datadog_api_client/v2/models/security_monitoring_standard_data_source.rb
+++ b/lib/datadog_api_client/v2/models/security_monitoring_standard_data_source.rb
@@ -23,5 +23,9 @@ class SecurityMonitoringStandardDataSource
 
     LOGS = "logs".freeze
     AUDIT = "audit".freeze
+    APP_SEC_SPANS = "app_sec_spans".freeze
+    SPANS = "spans".freeze
+    SECURITY_RUNTIME = "security_runtime".freeze
+    NETWORK = "network".freeze
   end
 end

From 5597763cc7086cb90f41492d54fa5f402a9637d6 Mon Sep 17 00:00:00 2001
From: "api-clients-generation-pipeline[bot]"
 <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
Date: Wed, 2 Apr 2025 21:45:14 +0000
Subject: [PATCH 17/17] Add componentOf field to Service, Queue, and Datastore
 V3 Software Catalog definitions (#2308)

Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
---
 .apigentools-info                                 |  8 ++++----
 .generator/schemas/v2/openapi.yaml                | 15 +++++++++++++++
 .../v2/software-catalog/UpsertCatalogEntity.rb    |  1 +
 features/v2/software_catalog.feature              |  4 ++--
 .../v2/models/entity_v3_datastore_spec.rb         | 14 +++++++++++++-
 .../v2/models/entity_v3_queue_spec.rb             | 14 +++++++++++++-
 .../v2/models/entity_v3_service_spec.rb           | 14 +++++++++++++-
 7 files changed, 61 insertions(+), 9 deletions(-)

diff --git a/.apigentools-info b/.apigentools-info
index 7fd1d12b9f9..a97406ac69f 100644
--- a/.apigentools-info
+++ b/.apigentools-info
@@ -4,13 +4,13 @@
     "spec_versions": {
         "v1": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-04-02 19:55:38.978560",
-            "spec_repo_commit": "1cc45c45"
+            "regenerated": "2025-04-02 20:49:26.546832",
+            "spec_repo_commit": "9ea284b5"
         },
         "v2": {
             "apigentools_version": "1.6.6",
-            "regenerated": "2025-04-02 19:55:38.997117",
-            "spec_repo_commit": "1cc45c45"
+            "regenerated": "2025-04-02 20:49:26.563500",
+            "spec_repo_commit": "9ea284b5"
         }
     }
 }
\ No newline at end of file
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index 1072d1213ef..b5a66e5d975 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -12431,6 +12431,11 @@ components:
       additionalProperties: false
       description: The definition of Entity V3 Datastore Spec object.
       properties:
+        componentOf:
+          description: A list of components the datastore is a part of
+          items:
+            type: string
+          type: array
         lifecycle:
           description: The lifecycle state of the datastore.
           minLength: 1
@@ -12629,6 +12634,11 @@ components:
       additionalProperties: false
       description: The definition of Entity V3 Queue Spec object.
       properties:
+        componentOf:
+          description: A list of components the queue is a part of
+          items:
+            type: string
+          type: array
         lifecycle:
           description: The lifecycle state of the queue.
           minLength: 1
@@ -12694,6 +12704,11 @@ components:
       additionalProperties: false
       description: The definition of Entity V3 Service Spec object.
       properties:
+        componentOf:
+          description: A list of components the service is a part of
+          items:
+            type: string
+          type: array
         dependsOn:
           description: A list of components the service depends on.
           items:
diff --git a/examples/v2/software-catalog/UpsertCatalogEntity.rb b/examples/v2/software-catalog/UpsertCatalogEntity.rb
index b80578c3f69..3cc6c910fff 100644
--- a/examples/v2/software-catalog/UpsertCatalogEntity.rb
+++ b/examples/v2/software-catalog/UpsertCatalogEntity.rb
@@ -62,6 +62,7 @@
     ],
   }),
   spec: DatadogAPIClient::V2::EntityV3ServiceSpec.new({
+    component_of: [],
     depends_on: [],
     languages: [],
   }),
diff --git a/features/v2/software_catalog.feature b/features/v2/software_catalog.feature
index 282607a3834..fd8e62bad35 100644
--- a/features/v2/software_catalog.feature
+++ b/features/v2/software_catalog.feature
@@ -10,14 +10,14 @@ Feature: Software Catalog
   @generated @skip @team:DataDog/service-catalog
   Scenario: Create or update entities returns "ACCEPTED" response
     Given new "UpsertCatalogEntity" request
-    And body with value {"apiVersion": "v3", "datadog": {"codeLocations": [{"paths": []}], "events": [{}], "logs": [{}], "performanceData": {"tags": []}, "pipelines": {"fingerprints": []}}, "integrations": {"opsgenie": {"serviceURL": "https://www.opsgenie.com/service/shopping-cart"}, "pagerduty": {"serviceURL": "https://www.pagerduty.com/service-directory/Pshopping-cart"}}, "kind": "service", "metadata": {"additionalOwners": [{"name": ""}], "contacts": [{"contact": "https://slack/", "type": "slack"}], "id": "4b163705-23c0-4573-b2fb-f6cea2163fcb", "inheritFrom": "application:default/myapp", "links": [{"name": "mylink", "type": "link", "url": "https://mylink"}], "name": "myService", "namespace": "default", "tags": ["this:tag", "that:tag"]}, "spec": {"dependsOn": [], "languages": []}}
+    And body with value {"apiVersion": "v3", "datadog": {"codeLocations": [{"paths": []}], "events": [{}], "logs": [{}], "performanceData": {"tags": []}, "pipelines": {"fingerprints": []}}, "integrations": {"opsgenie": {"serviceURL": "https://www.opsgenie.com/service/shopping-cart"}, "pagerduty": {"serviceURL": "https://www.pagerduty.com/service-directory/Pshopping-cart"}}, "kind": "service", "metadata": {"additionalOwners": [{"name": ""}], "contacts": [{"contact": "https://slack/", "type": "slack"}], "id": "4b163705-23c0-4573-b2fb-f6cea2163fcb", "inheritFrom": "application:default/myapp", "links": [{"name": "mylink", "type": "link", "url": "https://mylink"}], "name": "myService", "namespace": "default", "tags": ["this:tag", "that:tag"]}, "spec": {"componentOf": [], "dependsOn": [], "languages": []}}
     When the request is sent
     Then the response status is 202 ACCEPTED
 
   @generated @skip @team:DataDog/service-catalog
   Scenario: Create or update entities returns "Bad Request" response
     Given new "UpsertCatalogEntity" request
-    And body with value {"apiVersion": "v3", "datadog": {"codeLocations": [{"paths": []}], "events": [{}], "logs": [{}], "performanceData": {"tags": []}, "pipelines": {"fingerprints": []}}, "integrations": {"opsgenie": {"serviceURL": "https://www.opsgenie.com/service/shopping-cart"}, "pagerduty": {"serviceURL": "https://www.pagerduty.com/service-directory/Pshopping-cart"}}, "kind": "service", "metadata": {"additionalOwners": [{"name": ""}], "contacts": [{"contact": "https://slack/", "type": "slack"}], "id": "4b163705-23c0-4573-b2fb-f6cea2163fcb", "inheritFrom": "application:default/myapp", "links": [{"name": "mylink", "type": "link", "url": "https://mylink"}], "name": "myService", "namespace": "default", "tags": ["this:tag", "that:tag"]}, "spec": {"dependsOn": [], "languages": []}}
+    And body with value {"apiVersion": "v3", "datadog": {"codeLocations": [{"paths": []}], "events": [{}], "logs": [{}], "performanceData": {"tags": []}, "pipelines": {"fingerprints": []}}, "integrations": {"opsgenie": {"serviceURL": "https://www.opsgenie.com/service/shopping-cart"}, "pagerduty": {"serviceURL": "https://www.pagerduty.com/service-directory/Pshopping-cart"}}, "kind": "service", "metadata": {"additionalOwners": [{"name": ""}], "contacts": [{"contact": "https://slack/", "type": "slack"}], "id": "4b163705-23c0-4573-b2fb-f6cea2163fcb", "inheritFrom": "application:default/myapp", "links": [{"name": "mylink", "type": "link", "url": "https://mylink"}], "name": "myService", "namespace": "default", "tags": ["this:tag", "that:tag"]}, "spec": {"componentOf": [], "dependsOn": [], "languages": []}}
     When the request is sent
     Then the response status is 400 Bad Request
 
diff --git a/lib/datadog_api_client/v2/models/entity_v3_datastore_spec.rb b/lib/datadog_api_client/v2/models/entity_v3_datastore_spec.rb
index 9c8bc69b59e..0ca8010f57f 100644
--- a/lib/datadog_api_client/v2/models/entity_v3_datastore_spec.rb
+++ b/lib/datadog_api_client/v2/models/entity_v3_datastore_spec.rb
@@ -21,6 +21,9 @@ module DatadogAPIClient::V2
   class EntityV3DatastoreSpec
     include BaseGenericModel
 
+    # A list of components the datastore is a part of
+    attr_accessor :component_of
+
     # The lifecycle state of the datastore.
     attr_reader :lifecycle
 
@@ -34,6 +37,7 @@ class EntityV3DatastoreSpec
     # @!visibility private
     def self.attribute_map
       {
+        :'component_of' => :'componentOf',
         :'lifecycle' => :'lifecycle',
         :'tier' => :'tier',
         :'type' => :'type'
@@ -44,6 +48,7 @@ def self.attribute_map
     # @!visibility private
     def self.openapi_types
       {
+        :'component_of' => :'Array<String>',
         :'lifecycle' => :'String',
         :'tier' => :'String',
         :'type' => :'String'
@@ -66,6 +71,12 @@ def initialize(attributes = {})
         h[k.to_sym] = v
       }
 
+      if attributes.key?(:'component_of')
+        if (value = attributes[:'component_of']).is_a?(Array)
+          self.component_of = value
+        end
+      end
+
       if attributes.key?(:'lifecycle')
         self.lifecycle = attributes[:'lifecycle']
       end
@@ -114,6 +125,7 @@ def tier=(tier)
     def ==(o)
       return true if self.equal?(o)
       self.class == o.class &&
+          component_of == o.component_of &&
           lifecycle == o.lifecycle &&
           tier == o.tier &&
           type == o.type
@@ -123,7 +135,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [lifecycle, tier, type].hash
+      [component_of, lifecycle, tier, type].hash
     end
   end
 end
diff --git a/lib/datadog_api_client/v2/models/entity_v3_queue_spec.rb b/lib/datadog_api_client/v2/models/entity_v3_queue_spec.rb
index dc009bafc18..14f972c12b7 100644
--- a/lib/datadog_api_client/v2/models/entity_v3_queue_spec.rb
+++ b/lib/datadog_api_client/v2/models/entity_v3_queue_spec.rb
@@ -21,6 +21,9 @@ module DatadogAPIClient::V2
   class EntityV3QueueSpec
     include BaseGenericModel
 
+    # A list of components the queue is a part of
+    attr_accessor :component_of
+
     # The lifecycle state of the queue.
     attr_reader :lifecycle
 
@@ -34,6 +37,7 @@ class EntityV3QueueSpec
     # @!visibility private
     def self.attribute_map
       {
+        :'component_of' => :'componentOf',
         :'lifecycle' => :'lifecycle',
         :'tier' => :'tier',
         :'type' => :'type'
@@ -44,6 +48,7 @@ def self.attribute_map
     # @!visibility private
     def self.openapi_types
       {
+        :'component_of' => :'Array<String>',
         :'lifecycle' => :'String',
         :'tier' => :'String',
         :'type' => :'String'
@@ -66,6 +71,12 @@ def initialize(attributes = {})
         h[k.to_sym] = v
       }
 
+      if attributes.key?(:'component_of')
+        if (value = attributes[:'component_of']).is_a?(Array)
+          self.component_of = value
+        end
+      end
+
       if attributes.key?(:'lifecycle')
         self.lifecycle = attributes[:'lifecycle']
       end
@@ -114,6 +125,7 @@ def tier=(tier)
     def ==(o)
       return true if self.equal?(o)
       self.class == o.class &&
+          component_of == o.component_of &&
           lifecycle == o.lifecycle &&
           tier == o.tier &&
           type == o.type
@@ -123,7 +135,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [lifecycle, tier, type].hash
+      [component_of, lifecycle, tier, type].hash
     end
   end
 end
diff --git a/lib/datadog_api_client/v2/models/entity_v3_service_spec.rb b/lib/datadog_api_client/v2/models/entity_v3_service_spec.rb
index 9b88daaf2e1..4602e1a5fbf 100644
--- a/lib/datadog_api_client/v2/models/entity_v3_service_spec.rb
+++ b/lib/datadog_api_client/v2/models/entity_v3_service_spec.rb
@@ -21,6 +21,9 @@ module DatadogAPIClient::V2
   class EntityV3ServiceSpec
     include BaseGenericModel
 
+    # A list of components the service is a part of
+    attr_accessor :component_of
+
     # A list of components the service depends on.
     attr_accessor :depends_on
 
@@ -40,6 +43,7 @@ class EntityV3ServiceSpec
     # @!visibility private
     def self.attribute_map
       {
+        :'component_of' => :'componentOf',
         :'depends_on' => :'dependsOn',
         :'languages' => :'languages',
         :'lifecycle' => :'lifecycle',
@@ -52,6 +56,7 @@ def self.attribute_map
     # @!visibility private
     def self.openapi_types
       {
+        :'component_of' => :'Array<String>',
         :'depends_on' => :'Array<String>',
         :'languages' => :'Array<String>',
         :'lifecycle' => :'String',
@@ -76,6 +81,12 @@ def initialize(attributes = {})
         h[k.to_sym] = v
       }
 
+      if attributes.key?(:'component_of')
+        if (value = attributes[:'component_of']).is_a?(Array)
+          self.component_of = value
+        end
+      end
+
       if attributes.key?(:'depends_on')
         if (value = attributes[:'depends_on']).is_a?(Array)
           self.depends_on = value
@@ -136,6 +147,7 @@ def tier=(tier)
     def ==(o)
       return true if self.equal?(o)
       self.class == o.class &&
+          component_of == o.component_of &&
           depends_on == o.depends_on &&
           languages == o.languages &&
           lifecycle == o.lifecycle &&
@@ -147,7 +159,7 @@ def ==(o)
     # @return [Integer] Hash code
     # @!visibility private
     def hash
-      [depends_on, languages, lifecycle, tier, type].hash
+      [component_of, depends_on, languages, lifecycle, tier, type].hash
     end
   end
 end