Skip to content

Commit 859f207

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 98e3371 of spec repo (DataDog#2613)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 499f4a5 commit 859f207

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "335aa67",
3-
"generated": "2025-08-27 07:13:36.779"
2+
"spec_repo_commit": "98e3371",
3+
"generated": "2025-08-27 08:45:02.412"
44
}

.generator/schemas/v1/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15696,6 +15696,10 @@ components:
1569615696
type: string
1569715697
description: Variables to replace in the test.
1569815698
type: object
15699+
version:
15700+
description: The version number of the Synthetic test version to trigger.
15701+
format: int64
15702+
type: integer
1569915703
required:
1570015704
- public_id
1570115705
type: object

lib/datadog_api_client/v1/models/synthetics_ci_test.rb

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ class SyntheticsCITest
6363
# Variables to replace in the test.
6464
attr_accessor :variables
6565

66+
# The version number of the Synthetic test version to trigger.
67+
attr_accessor :version
68+
6669
attr_accessor :additional_properties
6770

6871
# Attribute mapping from ruby-style variable name to JSON key.
@@ -82,7 +85,8 @@ def self.attribute_map
8285
:'public_id' => :'public_id',
8386
:'_retry' => :'retry',
8487
:'start_url' => :'startUrl',
85-
:'variables' => :'variables'
88+
:'variables' => :'variables',
89+
:'version' => :'version'
8690
}
8791
end
8892

@@ -103,7 +107,8 @@ def self.openapi_types
103107
:'public_id' => :'String',
104108
:'_retry' => :'SyntheticsTestOptionsRetry',
105109
:'start_url' => :'String',
106-
:'variables' => :'Hash<String, String>'
110+
:'variables' => :'Hash<String, String>',
111+
:'version' => :'Integer'
107112
}
108113
end
109114

@@ -184,6 +189,10 @@ def initialize(attributes = {})
184189
if attributes.key?(:'variables')
185190
self.variables = attributes[:'variables']
186191
end
192+
193+
if attributes.key?(:'version')
194+
self.version = attributes[:'version']
195+
end
187196
end
188197

189198
# Check to see if the all the properties in the model are valid
@@ -244,14 +253,15 @@ def ==(o)
244253
_retry == o._retry &&
245254
start_url == o.start_url &&
246255
variables == o.variables &&
256+
version == o.version &&
247257
additional_properties == o.additional_properties
248258
end
249259

250260
# Calculates hash code according to all attributes.
251261
# @return [Integer] Hash code
252262
# @!visibility private
253263
def hash
254-
[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
264+
[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
255265
end
256266
end
257267
end

0 commit comments

Comments
 (0)