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
6 changes: 5 additions & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20357,7 +20357,7 @@ components:
type: boolean
ignore_certificate_validation:
description: |-
For SSL tests, whether or not the test should ignore certificate validation.
For SSL tests, whether the test should ignore certificate validation.
type: boolean
initialNavigationTimeout:
description: Timeout before declaring the initial step as failed (in seconds) for browser tests.
Expand Down Expand Up @@ -20600,6 +20600,10 @@ components:
type: string
httpVersion:
$ref: "#/components/schemas/SyntheticsTestOptionsHTTPVersion"
ignore_certificate_validation:
description: |-
For SSL tests, whether the test should ignore certificate validation.
type: boolean
isMessageBase64Encoded:
description: Whether the message is base64 encoded.
type: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def __init__(
:param ignore_server_certificate_error: Ignore server certificate error for browser tests.
:type ignore_server_certificate_error: bool, optional

:param ignore_certificate_validation: For SSL tests, whether or not the test should ignore certificate validation.
:param ignore_certificate_validation: For SSL tests, whether the test should ignore certificate validation.
:type ignore_certificate_validation: bool, optional

:param initial_navigation_timeout: Timeout before declaring the initial step as failed (in seconds) for browser tests.
Expand Down
8 changes: 8 additions & 0 deletions src/datadog_api_client/v1/model/synthetics_test_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ def openapi_types(_):
"headers": (SyntheticsTestHeaders,),
"host": (str,),
"http_version": (SyntheticsTestOptionsHTTPVersion,),
"ignore_certificate_validation": (bool,),
"is_message_base64_encoded": (bool,),
"mcp_protocol_version": (SyntheticsMCPProtocolVersion,),
"message": (str,),
Expand Down Expand Up @@ -139,6 +140,7 @@ def openapi_types(_):
"headers": "headers",
"host": "host",
"http_version": "httpVersion",
"ignore_certificate_validation": "ignore_certificate_validation",
"is_message_base64_encoded": "isMessageBase64Encoded",
"mcp_protocol_version": "mcpProtocolVersion",
"message": "message",
Expand Down Expand Up @@ -190,6 +192,7 @@ def __init__(
headers: Union[SyntheticsTestHeaders, UnsetType] = unset,
host: Union[str, UnsetType] = unset,
http_version: Union[SyntheticsTestOptionsHTTPVersion, UnsetType] = unset,
ignore_certificate_validation: Union[bool, UnsetType] = unset,
is_message_base64_encoded: Union[bool, UnsetType] = unset,
mcp_protocol_version: Union[SyntheticsMCPProtocolVersion, UnsetType] = unset,
message: Union[str, UnsetType] = unset,
Expand Down Expand Up @@ -272,6 +275,9 @@ def __init__(
:param http_version: HTTP version to use for a Synthetic test.
:type http_version: SyntheticsTestOptionsHTTPVersion, optional

:param ignore_certificate_validation: For SSL tests, whether the test should ignore certificate validation.
:type ignore_certificate_validation: bool, optional

:param is_message_base64_encoded: Whether the message is base64 encoded.
:type is_message_base64_encoded: bool, optional

Expand Down Expand Up @@ -366,6 +372,8 @@ def __init__(
kwargs["host"] = host
if http_version is not unset:
kwargs["http_version"] = http_version
if ignore_certificate_validation is not unset:
kwargs["ignore_certificate_validation"] = ignore_certificate_validation
if is_message_base64_encoded is not unset:
kwargs["is_message_base64_encoded"] = is_message_base64_encoded
if mcp_protocol_version is not unset:
Expand Down
Loading