Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"spec_repo_commit": "335aa67",
"generated": "2025-08-27 07:13:36.779"
"spec_repo_commit": "98e3371",
"generated": "2025-08-27 08:45:02.412"
}
4 changes: 4 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 13 additions & 3 deletions lib/datadog_api_client/v1/models/synthetics_ci_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -82,7 +85,8 @@ def self.attribute_map
:'public_id' => :'public_id',
:'_retry' => :'retry',
:'start_url' => :'startUrl',
:'variables' => :'variables'
:'variables' => :'variables',
:'version' => :'version'
}
end

Expand All @@ -103,7 +107,8 @@ def self.openapi_types
:'public_id' => :'String',
:'_retry' => :'SyntheticsTestOptionsRetry',
:'start_url' => :'String',
:'variables' => :'Hash<String, String>'
:'variables' => :'Hash<String, String>',
:'version' => :'Integer'
}
end

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -244,14 +253,15 @@ def ==(o)
_retry == o._retry &&
start_url == o.start_url &&
variables == o.variables &&
version == o.version &&
additional_properties == o.additional_properties
end

# Calculates hash code according to all attributes.
# @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
Loading