diff --git a/.generated-info b/.generated-info index ecf00039e30e..54f289296114 100644 --- a/.generated-info +++ b/.generated-info @@ -1,4 +1,4 @@ { - "spec_repo_commit": "1e6c346", - "generated": "2025-08-25 18:45:37.801" + "spec_repo_commit": "98e3371", + "generated": "2025-08-27 08:45:02.412" } diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index dacd4a02b1d9..2e3684fae4bf 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -15696,6 +15696,10 @@ components: type: string description: Variables to replace in the test. type: object + version: + description: The version number of the Synthetic test version to trigger. + format: int64 + type: integer required: - public_id type: object diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 3705ce533ddd..7d9ee66a1278 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -50455,13 +50455,15 @@ paths: appKeyAuth: [] - AuthZ: - usage_read + - billing_read summary: Get Monthly Cost Attribution tags: - Usage Metering x-permission: - operator: OR + operator: AND permissions: - usage_read + - billing_read /api/v2/csm/onboarding/agents: get: description: Get the list of all CSM Agents running on your hosts and containers. @@ -67509,13 +67511,15 @@ paths: appKeyAuth: [] - AuthZ: - usage_read + - billing_read summary: Get cost across multi-org account tags: - Usage Metering x-permission: - operator: OR + operator: AND permissions: - usage_read + - billing_read /api/v2/usage/estimated_cost: get: description: 'Get estimated cost across multi-org and single root-org accounts. @@ -67613,13 +67617,15 @@ paths: appKeyAuth: [] - AuthZ: - usage_read + - billing_read summary: Get estimated cost across your account tags: - Usage Metering x-permission: - operator: OR + operator: AND permissions: - usage_read + - billing_read /api/v2/usage/historical_cost: get: description: 'Get historical cost across multi-org and single root-org accounts. @@ -67694,13 +67700,15 @@ paths: appKeyAuth: [] - AuthZ: - usage_read + - billing_read summary: Get historical cost across your account tags: - Usage Metering x-permission: - operator: OR + operator: AND permissions: - usage_read + - billing_read /api/v2/usage/hourly_usage: get: description: Get hourly usage by product family. @@ -68029,13 +68037,15 @@ paths: appKeyAuth: [] - AuthZ: - usage_read + - billing_read summary: Get projected cost across your account tags: - Usage Metering x-permission: - operator: OR + operator: AND permissions: - usage_read + - billing_read /api/v2/user_invitations: post: description: Sends emails to one or more users inviting them to join the organization. diff --git a/lib/datadog_api_client/v1/models/synthetics_ci_test.rb b/lib/datadog_api_client/v1/models/synthetics_ci_test.rb index faaf0c6c26de..36aa77a88315 100644 --- a/lib/datadog_api_client/v1/models/synthetics_ci_test.rb +++ b/lib/datadog_api_client/v1/models/synthetics_ci_test.rb @@ -63,6 +63,9 @@ class SyntheticsCITest # Variables to replace in the test. attr_accessor :variables + # The version number of the Synthetic test version to trigger. + attr_accessor :version + attr_accessor :additional_properties # Attribute mapping from ruby-style variable name to JSON key. @@ -82,7 +85,8 @@ def self.attribute_map :'public_id' => :'public_id', :'_retry' => :'retry', :'start_url' => :'startUrl', - :'variables' => :'variables' + :'variables' => :'variables', + :'version' => :'version' } end @@ -103,7 +107,8 @@ def self.openapi_types :'public_id' => :'String', :'_retry' => :'SyntheticsTestOptionsRetry', :'start_url' => :'String', - :'variables' => :'Hash' + :'variables' => :'Hash', + :'version' => :'Integer' } end @@ -184,6 +189,10 @@ def initialize(attributes = {}) if attributes.key?(:'variables') self.variables = attributes[:'variables'] end + + if attributes.key?(:'version') + self.version = attributes[:'version'] + end end # Check to see if the all the properties in the model are valid @@ -244,6 +253,7 @@ def ==(o) _retry == o._retry && start_url == o.start_url && variables == o.variables && + version == o.version && additional_properties == o.additional_properties end @@ -251,7 +261,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [allow_insecure_certificates, basic_auth, body, body_type, cookies, device_ids, follow_redirects, headers, locations, metadata, public_id, _retry, start_url, variables, additional_properties].hash + [allow_insecure_certificates, basic_auth, body, body_type, cookies, device_ids, follow_redirects, headers, locations, metadata, public_id, _retry, start_url, variables, version, additional_properties].hash end end end