Skip to content

Commit 9da9d6a

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

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

services/synthetics/src/v1/models/SyntheticsTestOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class SyntheticsTestOptions {
7373
*/
7474
"ignoreServerCertificateError"?: boolean;
7575
/**
76-
* For SSL tests, whether or not the test should ignore certificate validation.
76+
* For SSL tests, whether the test should ignore certificate validation.
7777
*/
7878
"ignoreCertificateValidation"?: boolean;
7979
/**

services/synthetics/src/v1/models/SyntheticsTestRequest.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ export class SyntheticsTestRequest {
9393
* HTTP version to use for a Synthetic test.
9494
*/
9595
"httpVersion"?: SyntheticsTestOptionsHTTPVersion;
96+
/**
97+
* For SSL tests, whether the test should ignore certificate validation.
98+
*/
99+
"ignoreCertificateValidation"?: boolean;
96100
/**
97101
* Whether the message is base64 encoded.
98102
*/
@@ -258,6 +262,10 @@ export class SyntheticsTestRequest {
258262
baseName: "httpVersion",
259263
type: "SyntheticsTestOptionsHTTPVersion",
260264
},
265+
ignoreCertificateValidation: {
266+
baseName: "ignore_certificate_validation",
267+
type: "boolean",
268+
},
261269
isMessageBase64Encoded: {
262270
baseName: "isMessageBase64Encoded",
263271
type: "boolean",

0 commit comments

Comments
 (0)