-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathSyntheticsTestOptions.ts
More file actions
292 lines (285 loc) · 8.14 KB
/
Copy pathSyntheticsTestOptions.ts
File metadata and controls
292 lines (285 loc) · 8.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { SyntheticsBrowserTestRumSettings } from "./SyntheticsBrowserTestRumSettings";
import { SyntheticsTestCiOptions } from "./SyntheticsTestCiOptions";
import { SyntheticsTestOptionsHTTPVersion } from "./SyntheticsTestOptionsHTTPVersion";
import { SyntheticsTestOptionsMonitorOptions } from "./SyntheticsTestOptionsMonitorOptions";
import { SyntheticsTestOptionsRetry } from "./SyntheticsTestOptionsRetry";
import { SyntheticsTestOptionsScheduling } from "./SyntheticsTestOptionsScheduling";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Object describing the extra options for a Synthetic test.
*/
export class SyntheticsTestOptions {
/**
* For SSL tests, whether or not the test should allow self signed
* certificates.
*/
"acceptSelfSigned"?: boolean;
/**
* Allows loading insecure content for an HTTP request in an API test.
*/
"allowInsecure"?: boolean;
/**
* Array of URL patterns to block.
*/
"blockedRequestPatterns"?: Array<string>;
/**
* Capture HTTP request/response headers and bodies for Fetch/XHR calls made during browser tests.
*/
"captureNetworkPayloads"?: boolean;
/**
* For SSL tests, whether or not the test should fail on revoked certificate in stapled OCSP.
*/
"checkCertificateRevocation"?: boolean;
/**
* CI/CD options for a Synthetic test.
*/
"ci"?: SyntheticsTestCiOptions;
/**
* For browser test, array with the different device IDs used to run the test.
*/
"deviceIds"?: Array<string>;
/**
* For SSL tests, whether or not the test should disable fetching intermediate certificates from AIA.
*/
"disableAiaIntermediateFetching"?: boolean;
/**
* Whether or not to disable CORS mechanism.
*/
"disableCors"?: boolean;
/**
* Disable Content Security Policy for browser tests.
*/
"disableCsp"?: boolean;
/**
* Enable profiling for browser tests.
*/
"enableProfiling"?: boolean;
/**
* Enable security testing for browser tests. Security testing is not available anymore. This field is deprecated and won't be used.
*/
"enableSecurityTesting"?: boolean;
/**
* For API HTTP test, whether or not the test should follow redirects.
*/
"followRedirects"?: boolean;
/**
* HTTP version to use for a Synthetic test.
*/
"httpVersion"?: SyntheticsTestOptionsHTTPVersion;
/**
* Ignore server certificate error for browser tests.
*/
"ignoreServerCertificateError"?: boolean;
/**
* For SSL tests, whether or not the test should ignore certificate validation.
*/
"ignoreCertificateValidation"?: boolean;
/**
* Timeout before declaring the initial step as failed (in seconds) for browser tests.
*/
"initialNavigationTimeout"?: number;
/**
* Minimum amount of time in failure required to trigger an alert.
*/
"minFailureDuration"?: number;
/**
* Minimum number of locations in failure required to trigger
* an alert.
*/
"minLocationFailed"?: number;
/**
* The monitor name is used for the alert title as well as for all monitor dashboard widgets and SLOs.
*/
"monitorName"?: string;
/**
* Object containing the options for a Synthetic test as a monitor
* (for example, renotification).
*/
"monitorOptions"?: SyntheticsTestOptionsMonitorOptions;
/**
* Integer from 1 (high) to 5 (low) indicating alert severity.
*/
"monitorPriority"?: number;
/**
* Prevents saving screenshots of the steps.
*/
"noScreenshot"?: boolean;
/**
* A list of role identifiers that can be pulled from the Roles API, for restricting read and write access. This field is deprecated. Use the restriction policies API to manage permissions.
*/
"restrictedRoles"?: Array<string>;
/**
* Object describing the retry strategy to apply to a Synthetic test.
*/
"retry"?: SyntheticsTestOptionsRetry;
/**
* The RUM data collection settings for the Synthetic browser test.
* **Note:** There are 3 ways to format RUM settings:
*
* `{ isEnabled: false }`
* RUM data is not collected.
*
* `{ isEnabled: true }`
* RUM data is collected from the Synthetic test's default application.
*
* `{ isEnabled: true, applicationId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", clientTokenId: 12345 }`
* RUM data is collected using the specified application.
*/
"rumSettings"?: SyntheticsBrowserTestRumSettings;
/**
* Object containing timeframes and timezone used for advanced scheduling.
*/
"scheduling"?: SyntheticsTestOptionsScheduling;
/**
* The frequency at which to run the Synthetic test (in seconds).
*/
"tickEvery"?: number;
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: { [key: string]: any };
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap = {
acceptSelfSigned: {
baseName: "accept_self_signed",
type: "boolean",
},
allowInsecure: {
baseName: "allow_insecure",
type: "boolean",
},
blockedRequestPatterns: {
baseName: "blockedRequestPatterns",
type: "Array<string>",
},
captureNetworkPayloads: {
baseName: "captureNetworkPayloads",
type: "boolean",
},
checkCertificateRevocation: {
baseName: "checkCertificateRevocation",
type: "boolean",
},
ci: {
baseName: "ci",
type: "SyntheticsTestCiOptions",
},
deviceIds: {
baseName: "device_ids",
type: "Array<string>",
},
disableAiaIntermediateFetching: {
baseName: "disableAiaIntermediateFetching",
type: "boolean",
},
disableCors: {
baseName: "disableCors",
type: "boolean",
},
disableCsp: {
baseName: "disableCsp",
type: "boolean",
},
enableProfiling: {
baseName: "enableProfiling",
type: "boolean",
},
enableSecurityTesting: {
baseName: "enableSecurityTesting",
type: "boolean",
},
followRedirects: {
baseName: "follow_redirects",
type: "boolean",
},
httpVersion: {
baseName: "httpVersion",
type: "SyntheticsTestOptionsHTTPVersion",
},
ignoreServerCertificateError: {
baseName: "ignoreServerCertificateError",
type: "boolean",
},
ignoreCertificateValidation: {
baseName: "ignore_certificate_validation",
type: "boolean",
},
initialNavigationTimeout: {
baseName: "initialNavigationTimeout",
type: "number",
format: "int64",
},
minFailureDuration: {
baseName: "min_failure_duration",
type: "number",
format: "int64",
},
minLocationFailed: {
baseName: "min_location_failed",
type: "number",
format: "int64",
},
monitorName: {
baseName: "monitor_name",
type: "string",
},
monitorOptions: {
baseName: "monitor_options",
type: "SyntheticsTestOptionsMonitorOptions",
},
monitorPriority: {
baseName: "monitor_priority",
type: "number",
format: "int32",
},
noScreenshot: {
baseName: "noScreenshot",
type: "boolean",
},
restrictedRoles: {
baseName: "restricted_roles",
type: "Array<string>",
},
retry: {
baseName: "retry",
type: "SyntheticsTestOptionsRetry",
},
rumSettings: {
baseName: "rumSettings",
type: "SyntheticsBrowserTestRumSettings",
},
scheduling: {
baseName: "scheduling",
type: "SyntheticsTestOptionsScheduling",
},
tickEvery: {
baseName: "tick_every",
type: "number",
format: "int64",
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
},
};
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap {
return SyntheticsTestOptions.attributeTypeMap;
}
public constructor() {}
}