Skip to content

Commit cc70fdd

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 6b226d3 of spec repo
1 parent af9e50b commit cc70fdd

3 files changed

Lines changed: 14 additions & 2 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

src/datadog_api_client/v1/model/synthetics_test_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def __init__(
190190
:param ignore_server_certificate_error: Ignore server certificate error for browser tests.
191191
:type ignore_server_certificate_error: bool, optional
192192
193-
:param ignore_certificate_validation: For SSL tests, whether or not the test should ignore certificate validation.
193+
:param ignore_certificate_validation: For SSL tests, whether the test should ignore certificate validation.
194194
:type ignore_certificate_validation: bool, optional
195195
196196
:param initial_navigation_timeout: Timeout before declaring the initial step as failed (in seconds) for browser tests.

src/datadog_api_client/v1/model/synthetics_test_request.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ def openapi_types(_):
8484
"headers": (SyntheticsTestHeaders,),
8585
"host": (str,),
8686
"http_version": (SyntheticsTestOptionsHTTPVersion,),
87+
"ignore_certificate_validation": (bool,),
8788
"is_message_base64_encoded": (bool,),
8889
"mcp_protocol_version": (SyntheticsMCPProtocolVersion,),
8990
"message": (str,),
@@ -139,6 +140,7 @@ def openapi_types(_):
139140
"headers": "headers",
140141
"host": "host",
141142
"http_version": "httpVersion",
143+
"ignore_certificate_validation": "ignore_certificate_validation",
142144
"is_message_base64_encoded": "isMessageBase64Encoded",
143145
"mcp_protocol_version": "mcpProtocolVersion",
144146
"message": "message",
@@ -190,6 +192,7 @@ def __init__(
190192
headers: Union[SyntheticsTestHeaders, UnsetType] = unset,
191193
host: Union[str, UnsetType] = unset,
192194
http_version: Union[SyntheticsTestOptionsHTTPVersion, UnsetType] = unset,
195+
ignore_certificate_validation: Union[bool, UnsetType] = unset,
193196
is_message_base64_encoded: Union[bool, UnsetType] = unset,
194197
mcp_protocol_version: Union[SyntheticsMCPProtocolVersion, UnsetType] = unset,
195198
message: Union[str, UnsetType] = unset,
@@ -272,6 +275,9 @@ def __init__(
272275
:param http_version: HTTP version to use for a Synthetic test.
273276
:type http_version: SyntheticsTestOptionsHTTPVersion, optional
274277
278+
:param ignore_certificate_validation: For SSL tests, whether the test should ignore certificate validation.
279+
:type ignore_certificate_validation: bool, optional
280+
275281
:param is_message_base64_encoded: Whether the message is base64 encoded.
276282
:type is_message_base64_encoded: bool, optional
277283
@@ -366,6 +372,8 @@ def __init__(
366372
kwargs["host"] = host
367373
if http_version is not unset:
368374
kwargs["http_version"] = http_version
375+
if ignore_certificate_validation is not unset:
376+
kwargs["ignore_certificate_validation"] = ignore_certificate_validation
369377
if is_message_base64_encoded is not unset:
370378
kwargs["is_message_base64_encoded"] = is_message_base64_encoded
371379
if mcp_protocol_version is not unset:

0 commit comments

Comments
 (0)