diff --git a/.generated-info b/.generated-info index 3e1317cb94c7..54f289296114 100644 --- a/.generated-info +++ b/.generated-info @@ -1,4 +1,4 @@ { - "spec_repo_commit": "335aa67", - "generated": "2025-08-27 07:13:36.779" + "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/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