File tree Expand file tree Collapse file tree
packages/datadog-api-client-v1/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19795,6 +19795,9 @@ components:
1979519795 description: A URL pattern to block during the Synthetic test.
1979619796 type: string
1979719797 type: array
19798+ captureNetworkPayloads:
19799+ description: Capture HTTP request/response headers and bodies for Fetch/XHR calls made during browser tests.
19800+ type: boolean
1979819801 checkCertificateRevocation:
1979919802 description: |-
1980019803 For SSL tests, whether or not the test should fail on revoked certificate in stapled OCSP.
Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ export class SyntheticsTestOptions {
2929 * Array of URL patterns to block.
3030 */
3131 "blockedRequestPatterns" ?: Array < string > ;
32+ /**
33+ * Capture HTTP request/response headers and bodies for Fetch/XHR calls made during browser tests.
34+ */
35+ "captureNetworkPayloads" ?: boolean ;
3236 /**
3337 * For SSL tests, whether or not the test should fail on revoked certificate in stapled OCSP.
3438 */
@@ -162,6 +166,10 @@ export class SyntheticsTestOptions {
162166 baseName : "blockedRequestPatterns" ,
163167 type : "Array<string>" ,
164168 } ,
169+ captureNetworkPayloads : {
170+ baseName : "captureNetworkPayloads" ,
171+ type : "boolean" ,
172+ } ,
165173 checkCertificateRevocation : {
166174 baseName : "checkCertificateRevocation" ,
167175 type : "boolean" ,
You can’t perform that action at this time.
0 commit comments