@aws-sdk/client-iotdeviceadvisor 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/IotDeviceAdvisor.d.ts +256 -75
  3. package/dist-types/ts3.4/IotDeviceAdvisorClient.d.ts +214 -87
  4. package/dist-types/ts3.4/commands/CreateSuiteDefinitionCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/DeleteSuiteDefinitionCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/GetEndpointCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/GetSuiteDefinitionCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/GetSuiteRunCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/GetSuiteRunReportCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/ListSuiteDefinitionsCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/ListSuiteRunsCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/StartSuiteRunCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/StopSuiteRunCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/UpdateSuiteDefinitionCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +14 -14
  19. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  20. package/dist-types/ts3.4/index.d.ts +6 -6
  21. package/dist-types/ts3.4/models/IotDeviceAdvisorServiceException.d.ts +8 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +499 -462
  24. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  25. package/dist-types/ts3.4/pagination/ListSuiteDefinitionsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/ListSuiteRunsPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  28. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  33. package/package.json +34 -34
@@ -1,462 +1,499 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { IotDeviceAdvisorServiceException as __BaseException } from "./IotDeviceAdvisorServiceException";
3
-
4
- export declare class ConflictException extends __BaseException {
5
- readonly name: "ConflictException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
9
- }
10
-
11
- export interface DeviceUnderTest {
12
-
13
- thingArn?: string;
14
-
15
- certificateArn?: string;
16
- }
17
- export declare enum Protocol {
18
- MqttV3_1_1 = "MqttV3_1_1",
19
- MqttV5 = "MqttV5"
20
- }
21
-
22
- export interface SuiteDefinitionConfiguration {
23
-
24
- suiteDefinitionName?: string;
25
-
26
- devices?: DeviceUnderTest[];
27
-
28
- intendedForQualification?: boolean;
29
-
30
- isLongDurationTest?: boolean;
31
-
32
- rootGroup?: string;
33
-
34
- devicePermissionRoleArn?: string;
35
-
36
- protocol?: Protocol | string;
37
- }
38
- export interface CreateSuiteDefinitionRequest {
39
-
40
- suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
41
-
42
- tags?: Record<string, string>;
43
- }
44
- export interface CreateSuiteDefinitionResponse {
45
-
46
- suiteDefinitionId?: string;
47
-
48
- suiteDefinitionArn?: string;
49
-
50
- suiteDefinitionName?: string;
51
-
52
- createdAt?: Date;
53
- }
54
-
55
- export declare class InternalServerException extends __BaseException {
56
- readonly name: "InternalServerException";
57
- readonly $fault: "server";
58
-
59
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
60
- }
61
-
62
- export declare class ValidationException extends __BaseException {
63
- readonly name: "ValidationException";
64
- readonly $fault: "client";
65
-
66
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
67
- }
68
- export interface DeleteSuiteDefinitionRequest {
69
-
70
- suiteDefinitionId: string | undefined;
71
- }
72
- export interface DeleteSuiteDefinitionResponse {
73
- }
74
- export interface GetEndpointRequest {
75
-
76
- thingArn?: string;
77
-
78
- certificateArn?: string;
79
- }
80
- export interface GetEndpointResponse {
81
-
82
- endpoint?: string;
83
- }
84
-
85
- export declare class ResourceNotFoundException extends __BaseException {
86
- readonly name: "ResourceNotFoundException";
87
- readonly $fault: "client";
88
-
89
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
90
- }
91
- export interface GetSuiteDefinitionRequest {
92
-
93
- suiteDefinitionId: string | undefined;
94
-
95
- suiteDefinitionVersion?: string;
96
- }
97
- export interface GetSuiteDefinitionResponse {
98
-
99
- suiteDefinitionId?: string;
100
-
101
- suiteDefinitionArn?: string;
102
-
103
- suiteDefinitionVersion?: string;
104
-
105
- latestVersion?: string;
106
-
107
- suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
108
-
109
- createdAt?: Date;
110
-
111
- lastModifiedAt?: Date;
112
-
113
- tags?: Record<string, string>;
114
- }
115
- export interface GetSuiteRunRequest {
116
-
117
- suiteDefinitionId: string | undefined;
118
-
119
- suiteRunId: string | undefined;
120
- }
121
- export declare enum SuiteRunStatus {
122
- CANCELED = "CANCELED",
123
- ERROR = "ERROR",
124
- FAIL = "FAIL",
125
- PASS = "PASS",
126
- PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
127
- PENDING = "PENDING",
128
- RUNNING = "RUNNING",
129
- STOPPED = "STOPPED",
130
- STOPPING = "STOPPING"
131
- }
132
-
133
- export interface SuiteRunConfiguration {
134
-
135
- primaryDevice?: DeviceUnderTest;
136
-
137
- selectedTestList?: string[];
138
-
139
- parallelRun?: boolean;
140
- }
141
- export declare enum Status {
142
- CANCELED = "CANCELED",
143
- ERROR = "ERROR",
144
- FAIL = "FAIL",
145
- PASS = "PASS",
146
- PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
147
- PENDING = "PENDING",
148
- RUNNING = "RUNNING",
149
- STOPPED = "STOPPED",
150
- STOPPING = "STOPPING"
151
- }
152
- export declare enum TestCaseScenarioStatus {
153
- CANCELED = "CANCELED",
154
- ERROR = "ERROR",
155
- FAIL = "FAIL",
156
- PASS = "PASS",
157
- PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
158
- PENDING = "PENDING",
159
- RUNNING = "RUNNING",
160
- STOPPED = "STOPPED",
161
- STOPPING = "STOPPING"
162
- }
163
- export declare enum TestCaseScenarioType {
164
- Advanced = "Advanced",
165
- Basic = "Basic"
166
- }
167
-
168
- export interface TestCaseScenario {
169
-
170
- testCaseScenarioId?: string;
171
-
172
- testCaseScenarioType?: TestCaseScenarioType | string;
173
-
174
- status?: TestCaseScenarioStatus | string;
175
-
176
- failure?: string;
177
-
178
- systemMessage?: string;
179
- }
180
-
181
- export interface TestCaseRun {
182
-
183
- testCaseRunId?: string;
184
-
185
- testCaseDefinitionId?: string;
186
-
187
- testCaseDefinitionName?: string;
188
-
189
- status?: Status | string;
190
-
191
- startTime?: Date;
192
-
193
- endTime?: Date;
194
-
195
- logUrl?: string;
196
-
197
- warnings?: string;
198
-
199
- failure?: string;
200
-
201
- testScenarios?: TestCaseScenario[];
202
- }
203
-
204
- export interface GroupResult {
205
-
206
- groupId?: string;
207
-
208
- groupName?: string;
209
-
210
- tests?: TestCaseRun[];
211
- }
212
-
213
- export interface TestResult {
214
-
215
- groups?: GroupResult[];
216
- }
217
- export interface GetSuiteRunResponse {
218
-
219
- suiteDefinitionId?: string;
220
-
221
- suiteDefinitionVersion?: string;
222
-
223
- suiteRunId?: string;
224
-
225
- suiteRunArn?: string;
226
-
227
- suiteRunConfiguration?: SuiteRunConfiguration;
228
-
229
- testResult?: TestResult;
230
-
231
- startTime?: Date;
232
-
233
- endTime?: Date;
234
-
235
- status?: SuiteRunStatus | string;
236
-
237
- errorReason?: string;
238
-
239
- tags?: Record<string, string>;
240
- }
241
- export interface GetSuiteRunReportRequest {
242
-
243
- suiteDefinitionId: string | undefined;
244
-
245
- suiteRunId: string | undefined;
246
- }
247
- export interface GetSuiteRunReportResponse {
248
-
249
- qualificationReportDownloadUrl?: string;
250
- }
251
- export interface ListSuiteDefinitionsRequest {
252
-
253
- maxResults?: number;
254
-
255
- nextToken?: string;
256
- }
257
-
258
- export interface SuiteDefinitionInformation {
259
-
260
- suiteDefinitionId?: string;
261
-
262
- suiteDefinitionName?: string;
263
-
264
- defaultDevices?: DeviceUnderTest[];
265
-
266
- intendedForQualification?: boolean;
267
-
268
- isLongDurationTest?: boolean;
269
-
270
- protocol?: Protocol | string;
271
-
272
- createdAt?: Date;
273
- }
274
- export interface ListSuiteDefinitionsResponse {
275
-
276
- suiteDefinitionInformationList?: SuiteDefinitionInformation[];
277
-
278
- nextToken?: string;
279
- }
280
- export interface ListSuiteRunsRequest {
281
-
282
- suiteDefinitionId?: string;
283
-
284
- suiteDefinitionVersion?: string;
285
-
286
- maxResults?: number;
287
-
288
- nextToken?: string;
289
- }
290
-
291
- export interface SuiteRunInformation {
292
-
293
- suiteDefinitionId?: string;
294
-
295
- suiteDefinitionVersion?: string;
296
-
297
- suiteDefinitionName?: string;
298
-
299
- suiteRunId?: string;
300
-
301
- createdAt?: Date;
302
-
303
- startedAt?: Date;
304
-
305
- endAt?: Date;
306
-
307
- status?: SuiteRunStatus | string;
308
-
309
- passed?: number;
310
-
311
- failed?: number;
312
- }
313
- export interface ListSuiteRunsResponse {
314
-
315
- suiteRunsList?: SuiteRunInformation[];
316
-
317
- nextToken?: string;
318
- }
319
- export interface ListTagsForResourceRequest {
320
-
321
- resourceArn: string | undefined;
322
- }
323
- export interface ListTagsForResourceResponse {
324
-
325
- tags?: Record<string, string>;
326
- }
327
- export interface StartSuiteRunRequest {
328
-
329
- suiteDefinitionId: string | undefined;
330
-
331
- suiteDefinitionVersion?: string;
332
-
333
- suiteRunConfiguration?: SuiteRunConfiguration;
334
-
335
- tags?: Record<string, string>;
336
- }
337
- export interface StartSuiteRunResponse {
338
-
339
- suiteRunId?: string;
340
-
341
- suiteRunArn?: string;
342
-
343
- createdAt?: Date;
344
- }
345
- export interface StopSuiteRunRequest {
346
-
347
- suiteDefinitionId: string | undefined;
348
-
349
- suiteRunId: string | undefined;
350
- }
351
- export interface StopSuiteRunResponse {
352
- }
353
- export interface TagResourceRequest {
354
-
355
- resourceArn: string | undefined;
356
-
357
- tags: Record<string, string> | undefined;
358
- }
359
- export interface TagResourceResponse {
360
- }
361
- export interface UntagResourceRequest {
362
-
363
- resourceArn: string | undefined;
364
-
365
- tagKeys: string[] | undefined;
366
- }
367
- export interface UntagResourceResponse {
368
- }
369
- export interface UpdateSuiteDefinitionRequest {
370
-
371
- suiteDefinitionId: string | undefined;
372
-
373
- suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
374
- }
375
- export interface UpdateSuiteDefinitionResponse {
376
-
377
- suiteDefinitionId?: string;
378
-
379
- suiteDefinitionArn?: string;
380
-
381
- suiteDefinitionName?: string;
382
-
383
- suiteDefinitionVersion?: string;
384
-
385
- createdAt?: Date;
386
-
387
- lastUpdatedAt?: Date;
388
- }
389
-
390
- export declare const DeviceUnderTestFilterSensitiveLog: (obj: DeviceUnderTest) => any;
391
-
392
- export declare const SuiteDefinitionConfigurationFilterSensitiveLog: (obj: SuiteDefinitionConfiguration) => any;
393
-
394
- export declare const CreateSuiteDefinitionRequestFilterSensitiveLog: (obj: CreateSuiteDefinitionRequest) => any;
395
-
396
- export declare const CreateSuiteDefinitionResponseFilterSensitiveLog: (obj: CreateSuiteDefinitionResponse) => any;
397
-
398
- export declare const DeleteSuiteDefinitionRequestFilterSensitiveLog: (obj: DeleteSuiteDefinitionRequest) => any;
399
-
400
- export declare const DeleteSuiteDefinitionResponseFilterSensitiveLog: (obj: DeleteSuiteDefinitionResponse) => any;
401
-
402
- export declare const GetEndpointRequestFilterSensitiveLog: (obj: GetEndpointRequest) => any;
403
-
404
- export declare const GetEndpointResponseFilterSensitiveLog: (obj: GetEndpointResponse) => any;
405
-
406
- export declare const GetSuiteDefinitionRequestFilterSensitiveLog: (obj: GetSuiteDefinitionRequest) => any;
407
-
408
- export declare const GetSuiteDefinitionResponseFilterSensitiveLog: (obj: GetSuiteDefinitionResponse) => any;
409
-
410
- export declare const GetSuiteRunRequestFilterSensitiveLog: (obj: GetSuiteRunRequest) => any;
411
-
412
- export declare const SuiteRunConfigurationFilterSensitiveLog: (obj: SuiteRunConfiguration) => any;
413
-
414
- export declare const TestCaseScenarioFilterSensitiveLog: (obj: TestCaseScenario) => any;
415
-
416
- export declare const TestCaseRunFilterSensitiveLog: (obj: TestCaseRun) => any;
417
-
418
- export declare const GroupResultFilterSensitiveLog: (obj: GroupResult) => any;
419
-
420
- export declare const TestResultFilterSensitiveLog: (obj: TestResult) => any;
421
-
422
- export declare const GetSuiteRunResponseFilterSensitiveLog: (obj: GetSuiteRunResponse) => any;
423
-
424
- export declare const GetSuiteRunReportRequestFilterSensitiveLog: (obj: GetSuiteRunReportRequest) => any;
425
-
426
- export declare const GetSuiteRunReportResponseFilterSensitiveLog: (obj: GetSuiteRunReportResponse) => any;
427
-
428
- export declare const ListSuiteDefinitionsRequestFilterSensitiveLog: (obj: ListSuiteDefinitionsRequest) => any;
429
-
430
- export declare const SuiteDefinitionInformationFilterSensitiveLog: (obj: SuiteDefinitionInformation) => any;
431
-
432
- export declare const ListSuiteDefinitionsResponseFilterSensitiveLog: (obj: ListSuiteDefinitionsResponse) => any;
433
-
434
- export declare const ListSuiteRunsRequestFilterSensitiveLog: (obj: ListSuiteRunsRequest) => any;
435
-
436
- export declare const SuiteRunInformationFilterSensitiveLog: (obj: SuiteRunInformation) => any;
437
-
438
- export declare const ListSuiteRunsResponseFilterSensitiveLog: (obj: ListSuiteRunsResponse) => any;
439
-
440
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
441
-
442
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
443
-
444
- export declare const StartSuiteRunRequestFilterSensitiveLog: (obj: StartSuiteRunRequest) => any;
445
-
446
- export declare const StartSuiteRunResponseFilterSensitiveLog: (obj: StartSuiteRunResponse) => any;
447
-
448
- export declare const StopSuiteRunRequestFilterSensitiveLog: (obj: StopSuiteRunRequest) => any;
449
-
450
- export declare const StopSuiteRunResponseFilterSensitiveLog: (obj: StopSuiteRunResponse) => any;
451
-
452
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
453
-
454
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
455
-
456
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
457
-
458
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
459
-
460
- export declare const UpdateSuiteDefinitionRequestFilterSensitiveLog: (obj: UpdateSuiteDefinitionRequest) => any;
461
-
462
- export declare const UpdateSuiteDefinitionResponseFilterSensitiveLog: (obj: UpdateSuiteDefinitionResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { IotDeviceAdvisorServiceException as __BaseException } from "./IotDeviceAdvisorServiceException";
3
+
4
+ export declare class ConflictException extends __BaseException {
5
+ readonly name: "ConflictException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
9
+ }
10
+
11
+ export interface DeviceUnderTest {
12
+ thingArn?: string;
13
+
14
+ certificateArn?: string;
15
+ }
16
+ export declare enum Protocol {
17
+ MqttV3_1_1 = "MqttV3_1_1",
18
+ MqttV5 = "MqttV5",
19
+ }
20
+
21
+ export interface SuiteDefinitionConfiguration {
22
+ suiteDefinitionName?: string;
23
+
24
+ devices?: DeviceUnderTest[];
25
+
26
+ intendedForQualification?: boolean;
27
+
28
+ isLongDurationTest?: boolean;
29
+
30
+ rootGroup?: string;
31
+
32
+ devicePermissionRoleArn?: string;
33
+
34
+ protocol?: Protocol | string;
35
+ }
36
+ export interface CreateSuiteDefinitionRequest {
37
+ suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
38
+
39
+ tags?: Record<string, string>;
40
+ }
41
+ export interface CreateSuiteDefinitionResponse {
42
+ suiteDefinitionId?: string;
43
+
44
+ suiteDefinitionArn?: string;
45
+
46
+ suiteDefinitionName?: string;
47
+
48
+ createdAt?: Date;
49
+ }
50
+
51
+ export declare class InternalServerException extends __BaseException {
52
+ readonly name: "InternalServerException";
53
+ readonly $fault: "server";
54
+
55
+ constructor(
56
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
57
+ );
58
+ }
59
+
60
+ export declare class ValidationException extends __BaseException {
61
+ readonly name: "ValidationException";
62
+ readonly $fault: "client";
63
+
64
+ constructor(
65
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
66
+ );
67
+ }
68
+ export interface DeleteSuiteDefinitionRequest {
69
+ suiteDefinitionId: string | undefined;
70
+ }
71
+ export interface DeleteSuiteDefinitionResponse {}
72
+ export interface GetEndpointRequest {
73
+ thingArn?: string;
74
+
75
+ certificateArn?: string;
76
+ }
77
+ export interface GetEndpointResponse {
78
+ endpoint?: string;
79
+ }
80
+
81
+ export declare class ResourceNotFoundException extends __BaseException {
82
+ readonly name: "ResourceNotFoundException";
83
+ readonly $fault: "client";
84
+
85
+ constructor(
86
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
87
+ );
88
+ }
89
+ export interface GetSuiteDefinitionRequest {
90
+ suiteDefinitionId: string | undefined;
91
+
92
+ suiteDefinitionVersion?: string;
93
+ }
94
+ export interface GetSuiteDefinitionResponse {
95
+ suiteDefinitionId?: string;
96
+
97
+ suiteDefinitionArn?: string;
98
+
99
+ suiteDefinitionVersion?: string;
100
+
101
+ latestVersion?: string;
102
+
103
+ suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
104
+
105
+ createdAt?: Date;
106
+
107
+ lastModifiedAt?: Date;
108
+
109
+ tags?: Record<string, string>;
110
+ }
111
+ export interface GetSuiteRunRequest {
112
+ suiteDefinitionId: string | undefined;
113
+
114
+ suiteRunId: string | undefined;
115
+ }
116
+ export declare enum SuiteRunStatus {
117
+ CANCELED = "CANCELED",
118
+ ERROR = "ERROR",
119
+ FAIL = "FAIL",
120
+ PASS = "PASS",
121
+ PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
122
+ PENDING = "PENDING",
123
+ RUNNING = "RUNNING",
124
+ STOPPED = "STOPPED",
125
+ STOPPING = "STOPPING",
126
+ }
127
+
128
+ export interface SuiteRunConfiguration {
129
+ primaryDevice?: DeviceUnderTest;
130
+
131
+ selectedTestList?: string[];
132
+
133
+ parallelRun?: boolean;
134
+ }
135
+ export declare enum Status {
136
+ CANCELED = "CANCELED",
137
+ ERROR = "ERROR",
138
+ FAIL = "FAIL",
139
+ PASS = "PASS",
140
+ PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
141
+ PENDING = "PENDING",
142
+ RUNNING = "RUNNING",
143
+ STOPPED = "STOPPED",
144
+ STOPPING = "STOPPING",
145
+ }
146
+ export declare enum TestCaseScenarioStatus {
147
+ CANCELED = "CANCELED",
148
+ ERROR = "ERROR",
149
+ FAIL = "FAIL",
150
+ PASS = "PASS",
151
+ PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
152
+ PENDING = "PENDING",
153
+ RUNNING = "RUNNING",
154
+ STOPPED = "STOPPED",
155
+ STOPPING = "STOPPING",
156
+ }
157
+ export declare enum TestCaseScenarioType {
158
+ Advanced = "Advanced",
159
+ Basic = "Basic",
160
+ }
161
+
162
+ export interface TestCaseScenario {
163
+ testCaseScenarioId?: string;
164
+
165
+ testCaseScenarioType?: TestCaseScenarioType | string;
166
+
167
+ status?: TestCaseScenarioStatus | string;
168
+
169
+ failure?: string;
170
+
171
+ systemMessage?: string;
172
+ }
173
+
174
+ export interface TestCaseRun {
175
+ testCaseRunId?: string;
176
+
177
+ testCaseDefinitionId?: string;
178
+
179
+ testCaseDefinitionName?: string;
180
+
181
+ status?: Status | string;
182
+
183
+ startTime?: Date;
184
+
185
+ endTime?: Date;
186
+
187
+ logUrl?: string;
188
+
189
+ warnings?: string;
190
+
191
+ failure?: string;
192
+
193
+ testScenarios?: TestCaseScenario[];
194
+ }
195
+
196
+ export interface GroupResult {
197
+ groupId?: string;
198
+
199
+ groupName?: string;
200
+
201
+ tests?: TestCaseRun[];
202
+ }
203
+
204
+ export interface TestResult {
205
+ groups?: GroupResult[];
206
+ }
207
+ export interface GetSuiteRunResponse {
208
+ suiteDefinitionId?: string;
209
+
210
+ suiteDefinitionVersion?: string;
211
+
212
+ suiteRunId?: string;
213
+
214
+ suiteRunArn?: string;
215
+
216
+ suiteRunConfiguration?: SuiteRunConfiguration;
217
+
218
+ testResult?: TestResult;
219
+
220
+ startTime?: Date;
221
+
222
+ endTime?: Date;
223
+
224
+ status?: SuiteRunStatus | string;
225
+
226
+ errorReason?: string;
227
+
228
+ tags?: Record<string, string>;
229
+ }
230
+ export interface GetSuiteRunReportRequest {
231
+ suiteDefinitionId: string | undefined;
232
+
233
+ suiteRunId: string | undefined;
234
+ }
235
+ export interface GetSuiteRunReportResponse {
236
+ qualificationReportDownloadUrl?: string;
237
+ }
238
+ export interface ListSuiteDefinitionsRequest {
239
+ maxResults?: number;
240
+
241
+ nextToken?: string;
242
+ }
243
+
244
+ export interface SuiteDefinitionInformation {
245
+ suiteDefinitionId?: string;
246
+
247
+ suiteDefinitionName?: string;
248
+
249
+ defaultDevices?: DeviceUnderTest[];
250
+
251
+ intendedForQualification?: boolean;
252
+
253
+ isLongDurationTest?: boolean;
254
+
255
+ protocol?: Protocol | string;
256
+
257
+ createdAt?: Date;
258
+ }
259
+ export interface ListSuiteDefinitionsResponse {
260
+ suiteDefinitionInformationList?: SuiteDefinitionInformation[];
261
+
262
+ nextToken?: string;
263
+ }
264
+ export interface ListSuiteRunsRequest {
265
+ suiteDefinitionId?: string;
266
+
267
+ suiteDefinitionVersion?: string;
268
+
269
+ maxResults?: number;
270
+
271
+ nextToken?: string;
272
+ }
273
+
274
+ export interface SuiteRunInformation {
275
+ suiteDefinitionId?: string;
276
+
277
+ suiteDefinitionVersion?: string;
278
+
279
+ suiteDefinitionName?: string;
280
+
281
+ suiteRunId?: string;
282
+
283
+ createdAt?: Date;
284
+
285
+ startedAt?: Date;
286
+
287
+ endAt?: Date;
288
+
289
+ status?: SuiteRunStatus | string;
290
+
291
+ passed?: number;
292
+
293
+ failed?: number;
294
+ }
295
+ export interface ListSuiteRunsResponse {
296
+ suiteRunsList?: SuiteRunInformation[];
297
+
298
+ nextToken?: string;
299
+ }
300
+ export interface ListTagsForResourceRequest {
301
+ resourceArn: string | undefined;
302
+ }
303
+ export interface ListTagsForResourceResponse {
304
+ tags?: Record<string, string>;
305
+ }
306
+ export interface StartSuiteRunRequest {
307
+ suiteDefinitionId: string | undefined;
308
+
309
+ suiteDefinitionVersion?: string;
310
+
311
+ suiteRunConfiguration?: SuiteRunConfiguration;
312
+
313
+ tags?: Record<string, string>;
314
+ }
315
+ export interface StartSuiteRunResponse {
316
+ suiteRunId?: string;
317
+
318
+ suiteRunArn?: string;
319
+
320
+ createdAt?: Date;
321
+ }
322
+ export interface StopSuiteRunRequest {
323
+ suiteDefinitionId: string | undefined;
324
+
325
+ suiteRunId: string | undefined;
326
+ }
327
+ export interface StopSuiteRunResponse {}
328
+ export interface TagResourceRequest {
329
+ resourceArn: string | undefined;
330
+
331
+ tags: Record<string, string> | undefined;
332
+ }
333
+ export interface TagResourceResponse {}
334
+ export interface UntagResourceRequest {
335
+ resourceArn: string | undefined;
336
+
337
+ tagKeys: string[] | undefined;
338
+ }
339
+ export interface UntagResourceResponse {}
340
+ export interface UpdateSuiteDefinitionRequest {
341
+ suiteDefinitionId: string | undefined;
342
+
343
+ suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
344
+ }
345
+ export interface UpdateSuiteDefinitionResponse {
346
+ suiteDefinitionId?: string;
347
+
348
+ suiteDefinitionArn?: string;
349
+
350
+ suiteDefinitionName?: string;
351
+
352
+ suiteDefinitionVersion?: string;
353
+
354
+ createdAt?: Date;
355
+
356
+ lastUpdatedAt?: Date;
357
+ }
358
+
359
+ export declare const DeviceUnderTestFilterSensitiveLog: (
360
+ obj: DeviceUnderTest
361
+ ) => any;
362
+
363
+ export declare const SuiteDefinitionConfigurationFilterSensitiveLog: (
364
+ obj: SuiteDefinitionConfiguration
365
+ ) => any;
366
+
367
+ export declare const CreateSuiteDefinitionRequestFilterSensitiveLog: (
368
+ obj: CreateSuiteDefinitionRequest
369
+ ) => any;
370
+
371
+ export declare const CreateSuiteDefinitionResponseFilterSensitiveLog: (
372
+ obj: CreateSuiteDefinitionResponse
373
+ ) => any;
374
+
375
+ export declare const DeleteSuiteDefinitionRequestFilterSensitiveLog: (
376
+ obj: DeleteSuiteDefinitionRequest
377
+ ) => any;
378
+
379
+ export declare const DeleteSuiteDefinitionResponseFilterSensitiveLog: (
380
+ obj: DeleteSuiteDefinitionResponse
381
+ ) => any;
382
+
383
+ export declare const GetEndpointRequestFilterSensitiveLog: (
384
+ obj: GetEndpointRequest
385
+ ) => any;
386
+
387
+ export declare const GetEndpointResponseFilterSensitiveLog: (
388
+ obj: GetEndpointResponse
389
+ ) => any;
390
+
391
+ export declare const GetSuiteDefinitionRequestFilterSensitiveLog: (
392
+ obj: GetSuiteDefinitionRequest
393
+ ) => any;
394
+
395
+ export declare const GetSuiteDefinitionResponseFilterSensitiveLog: (
396
+ obj: GetSuiteDefinitionResponse
397
+ ) => any;
398
+
399
+ export declare const GetSuiteRunRequestFilterSensitiveLog: (
400
+ obj: GetSuiteRunRequest
401
+ ) => any;
402
+
403
+ export declare const SuiteRunConfigurationFilterSensitiveLog: (
404
+ obj: SuiteRunConfiguration
405
+ ) => any;
406
+
407
+ export declare const TestCaseScenarioFilterSensitiveLog: (
408
+ obj: TestCaseScenario
409
+ ) => any;
410
+
411
+ export declare const TestCaseRunFilterSensitiveLog: (obj: TestCaseRun) => any;
412
+
413
+ export declare const GroupResultFilterSensitiveLog: (obj: GroupResult) => any;
414
+
415
+ export declare const TestResultFilterSensitiveLog: (obj: TestResult) => any;
416
+
417
+ export declare const GetSuiteRunResponseFilterSensitiveLog: (
418
+ obj: GetSuiteRunResponse
419
+ ) => any;
420
+
421
+ export declare const GetSuiteRunReportRequestFilterSensitiveLog: (
422
+ obj: GetSuiteRunReportRequest
423
+ ) => any;
424
+
425
+ export declare const GetSuiteRunReportResponseFilterSensitiveLog: (
426
+ obj: GetSuiteRunReportResponse
427
+ ) => any;
428
+
429
+ export declare const ListSuiteDefinitionsRequestFilterSensitiveLog: (
430
+ obj: ListSuiteDefinitionsRequest
431
+ ) => any;
432
+
433
+ export declare const SuiteDefinitionInformationFilterSensitiveLog: (
434
+ obj: SuiteDefinitionInformation
435
+ ) => any;
436
+
437
+ export declare const ListSuiteDefinitionsResponseFilterSensitiveLog: (
438
+ obj: ListSuiteDefinitionsResponse
439
+ ) => any;
440
+
441
+ export declare const ListSuiteRunsRequestFilterSensitiveLog: (
442
+ obj: ListSuiteRunsRequest
443
+ ) => any;
444
+
445
+ export declare const SuiteRunInformationFilterSensitiveLog: (
446
+ obj: SuiteRunInformation
447
+ ) => any;
448
+
449
+ export declare const ListSuiteRunsResponseFilterSensitiveLog: (
450
+ obj: ListSuiteRunsResponse
451
+ ) => any;
452
+
453
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
454
+ obj: ListTagsForResourceRequest
455
+ ) => any;
456
+
457
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
458
+ obj: ListTagsForResourceResponse
459
+ ) => any;
460
+
461
+ export declare const StartSuiteRunRequestFilterSensitiveLog: (
462
+ obj: StartSuiteRunRequest
463
+ ) => any;
464
+
465
+ export declare const StartSuiteRunResponseFilterSensitiveLog: (
466
+ obj: StartSuiteRunResponse
467
+ ) => any;
468
+
469
+ export declare const StopSuiteRunRequestFilterSensitiveLog: (
470
+ obj: StopSuiteRunRequest
471
+ ) => any;
472
+
473
+ export declare const StopSuiteRunResponseFilterSensitiveLog: (
474
+ obj: StopSuiteRunResponse
475
+ ) => any;
476
+
477
+ export declare const TagResourceRequestFilterSensitiveLog: (
478
+ obj: TagResourceRequest
479
+ ) => any;
480
+
481
+ export declare const TagResourceResponseFilterSensitiveLog: (
482
+ obj: TagResourceResponse
483
+ ) => any;
484
+
485
+ export declare const UntagResourceRequestFilterSensitiveLog: (
486
+ obj: UntagResourceRequest
487
+ ) => any;
488
+
489
+ export declare const UntagResourceResponseFilterSensitiveLog: (
490
+ obj: UntagResourceResponse
491
+ ) => any;
492
+
493
+ export declare const UpdateSuiteDefinitionRequestFilterSensitiveLog: (
494
+ obj: UpdateSuiteDefinitionRequest
495
+ ) => any;
496
+
497
+ export declare const UpdateSuiteDefinitionResponseFilterSensitiveLog: (
498
+ obj: UpdateSuiteDefinitionResponse
499
+ ) => any;