Skip to content

Commit 9db15bc

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 6b226d3 of spec repo (#3579)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent ce45982 commit 9db15bc

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20357,7 +20357,7 @@ components:
2035720357
type: boolean
2035820358
ignore_certificate_validation:
2035920359
description: |-
20360-
For SSL tests, whether or not the test should ignore certificate validation.
20360+
For SSL tests, whether the test should ignore certificate validation.
2036120361
type: boolean
2036220362
initialNavigationTimeout:
2036320363
description: Timeout before declaring the initial step as failed (in seconds) for browser tests.
@@ -20600,6 +20600,10 @@ components:
2060020600
type: string
2060120601
httpVersion:
2060220602
$ref: "#/components/schemas/SyntheticsTestOptionsHTTPVersion"
20603+
ignore_certificate_validation:
20604+
description: |-
20605+
For SSL tests, whether the test should ignore certificate validation.
20606+
type: boolean
2060320607
isMessageBase64Encoded:
2060420608
description: Whether the message is base64 encoded.
2060520609
type: boolean

lib/datadog_api_client/v1/models/synthetics_test_options.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class SyntheticsTestOptions
6767
# Ignore server certificate error for browser tests.
6868
attr_accessor :ignore_server_certificate_error
6969

70-
# For SSL tests, whether or not the test should ignore certificate validation.
70+
# For SSL tests, whether the test should ignore certificate validation.
7171
attr_accessor :ignore_certificate_validation
7272

7373
# Timeout before declaring the initial step as failed (in seconds) for browser tests.

lib/datadog_api_client/v1/models/synthetics_test_request.rb

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ class SyntheticsTestRequest
8080
# HTTP version to use for a Synthetic test.
8181
attr_accessor :http_version
8282

83+
# For SSL tests, whether the test should ignore certificate validation.
84+
attr_accessor :ignore_certificate_validation
85+
8386
# Whether the message is base64 encoded.
8487
attr_accessor :is_message_base64_encoded
8588

@@ -161,6 +164,7 @@ def self.attribute_map
161164
:'headers' => :'headers',
162165
:'host' => :'host',
163166
:'http_version' => :'httpVersion',
167+
:'ignore_certificate_validation' => :'ignore_certificate_validation',
164168
:'is_message_base64_encoded' => :'isMessageBase64Encoded',
165169
:'mcp_protocol_version' => :'mcpProtocolVersion',
166170
:'message' => :'message',
@@ -205,6 +209,7 @@ def self.openapi_types
205209
:'headers' => :'Hash<String, String>',
206210
:'host' => :'String',
207211
:'http_version' => :'SyntheticsTestOptionsHTTPVersion',
212+
:'ignore_certificate_validation' => :'Boolean',
208213
:'is_message_base64_encoded' => :'Boolean',
209214
:'mcp_protocol_version' => :'SyntheticsMCPProtocolVersion',
210215
:'message' => :'String',
@@ -324,6 +329,10 @@ def initialize(attributes = {})
324329
self.http_version = attributes[:'http_version']
325330
end
326331

332+
if attributes.key?(:'ignore_certificate_validation')
333+
self.ignore_certificate_validation = attributes[:'ignore_certificate_validation']
334+
end
335+
327336
if attributes.key?(:'is_message_base64_encoded')
328337
self.is_message_base64_encoded = attributes[:'is_message_base64_encoded']
329338
end
@@ -464,6 +473,7 @@ def ==(o)
464473
headers == o.headers &&
465474
host == o.host &&
466475
http_version == o.http_version &&
476+
ignore_certificate_validation == o.ignore_certificate_validation &&
467477
is_message_base64_encoded == o.is_message_base64_encoded &&
468478
mcp_protocol_version == o.mcp_protocol_version &&
469479
message == o.message &&
@@ -489,7 +499,7 @@ def ==(o)
489499
# @return [Integer] Hash code
490500
# @!visibility private
491501
def hash
492-
[allow_insecure, basic_auth, body, body_type, call_type, certificate, certificate_domains, check_certificate_revocation, compressed_json_descriptor, compressed_proto_file, disable_aia_intermediate_fetching, dns_server, dns_server_port, files, follow_redirects, form, headers, host, http_version, is_message_base64_encoded, mcp_protocol_version, message, metadata, method, no_saving_response_body, number_of_packets, persist_cookies, port, proxy, query, servername, service, should_track_hops, timeout, tool_args, tool_name, url, additional_properties].hash
502+
[allow_insecure, basic_auth, body, body_type, call_type, certificate, certificate_domains, check_certificate_revocation, compressed_json_descriptor, compressed_proto_file, disable_aia_intermediate_fetching, dns_server, dns_server_port, files, follow_redirects, form, headers, host, http_version, ignore_certificate_validation, is_message_base64_encoded, mcp_protocol_version, message, metadata, method, no_saving_response_body, number_of_packets, persist_cookies, port, proxy, query, servername, service, should_track_hops, timeout, tool_args, tool_name, url, additional_properties].hash
493503
end
494504
end
495505
end

0 commit comments

Comments
 (0)