File tree Expand file tree Collapse file tree
services/synthetics/src/v1/models Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 /**
Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments