@aws-sdk/client-iotdeviceadvisor 3.169.0 → 3.171.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 +242 -75
  3. package/dist-types/ts3.4/IotDeviceAdvisorClient.d.ts +189 -87
  4. package/dist-types/ts3.4/commands/CreateSuiteDefinitionCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/DeleteSuiteDefinitionCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/GetEndpointCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/GetSuiteDefinitionCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/GetSuiteRunCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/GetSuiteRunReportCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/ListSuiteDefinitionsCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/ListSuiteRunsCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/StartSuiteRunCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/StopSuiteRunCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/UpdateSuiteDefinitionCommand.d.ts +39 -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 +7 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +361 -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 +67 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  33. package/package.json +34 -34
@@ -1,462 +1,361 @@
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
+ export declare class ConflictException extends __BaseException {
4
+ readonly name: "ConflictException";
5
+ readonly $fault: "client";
6
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
7
+ }
8
+ export interface DeviceUnderTest {
9
+ thingArn?: string;
10
+ certificateArn?: string;
11
+ }
12
+ export declare enum Protocol {
13
+ MqttV3_1_1 = "MqttV3_1_1",
14
+ MqttV5 = "MqttV5",
15
+ }
16
+ export interface SuiteDefinitionConfiguration {
17
+ suiteDefinitionName?: string;
18
+ devices?: DeviceUnderTest[];
19
+ intendedForQualification?: boolean;
20
+ isLongDurationTest?: boolean;
21
+ rootGroup?: string;
22
+ devicePermissionRoleArn?: string;
23
+ protocol?: Protocol | string;
24
+ }
25
+ export interface CreateSuiteDefinitionRequest {
26
+ suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
27
+ tags?: Record<string, string>;
28
+ }
29
+ export interface CreateSuiteDefinitionResponse {
30
+ suiteDefinitionId?: string;
31
+ suiteDefinitionArn?: string;
32
+ suiteDefinitionName?: string;
33
+ createdAt?: Date;
34
+ }
35
+ export declare class InternalServerException extends __BaseException {
36
+ readonly name: "InternalServerException";
37
+ readonly $fault: "server";
38
+ constructor(
39
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
40
+ );
41
+ }
42
+ export declare class ValidationException extends __BaseException {
43
+ readonly name: "ValidationException";
44
+ readonly $fault: "client";
45
+ constructor(
46
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
47
+ );
48
+ }
49
+ export interface DeleteSuiteDefinitionRequest {
50
+ suiteDefinitionId: string | undefined;
51
+ }
52
+ export interface DeleteSuiteDefinitionResponse {}
53
+ export interface GetEndpointRequest {
54
+ thingArn?: string;
55
+ certificateArn?: string;
56
+ }
57
+ export interface GetEndpointResponse {
58
+ endpoint?: string;
59
+ }
60
+ export declare class ResourceNotFoundException extends __BaseException {
61
+ readonly name: "ResourceNotFoundException";
62
+ readonly $fault: "client";
63
+ constructor(
64
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
65
+ );
66
+ }
67
+ export interface GetSuiteDefinitionRequest {
68
+ suiteDefinitionId: string | undefined;
69
+ suiteDefinitionVersion?: string;
70
+ }
71
+ export interface GetSuiteDefinitionResponse {
72
+ suiteDefinitionId?: string;
73
+ suiteDefinitionArn?: string;
74
+ suiteDefinitionVersion?: string;
75
+ latestVersion?: string;
76
+ suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
77
+ createdAt?: Date;
78
+ lastModifiedAt?: Date;
79
+ tags?: Record<string, string>;
80
+ }
81
+ export interface GetSuiteRunRequest {
82
+ suiteDefinitionId: string | undefined;
83
+ suiteRunId: string | undefined;
84
+ }
85
+ export declare enum SuiteRunStatus {
86
+ CANCELED = "CANCELED",
87
+ ERROR = "ERROR",
88
+ FAIL = "FAIL",
89
+ PASS = "PASS",
90
+ PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
91
+ PENDING = "PENDING",
92
+ RUNNING = "RUNNING",
93
+ STOPPED = "STOPPED",
94
+ STOPPING = "STOPPING",
95
+ }
96
+ export interface SuiteRunConfiguration {
97
+ primaryDevice?: DeviceUnderTest;
98
+ selectedTestList?: string[];
99
+ parallelRun?: boolean;
100
+ }
101
+ export declare enum Status {
102
+ CANCELED = "CANCELED",
103
+ ERROR = "ERROR",
104
+ FAIL = "FAIL",
105
+ PASS = "PASS",
106
+ PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
107
+ PENDING = "PENDING",
108
+ RUNNING = "RUNNING",
109
+ STOPPED = "STOPPED",
110
+ STOPPING = "STOPPING",
111
+ }
112
+ export declare enum TestCaseScenarioStatus {
113
+ CANCELED = "CANCELED",
114
+ ERROR = "ERROR",
115
+ FAIL = "FAIL",
116
+ PASS = "PASS",
117
+ PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
118
+ PENDING = "PENDING",
119
+ RUNNING = "RUNNING",
120
+ STOPPED = "STOPPED",
121
+ STOPPING = "STOPPING",
122
+ }
123
+ export declare enum TestCaseScenarioType {
124
+ Advanced = "Advanced",
125
+ Basic = "Basic",
126
+ }
127
+ export interface TestCaseScenario {
128
+ testCaseScenarioId?: string;
129
+ testCaseScenarioType?: TestCaseScenarioType | string;
130
+ status?: TestCaseScenarioStatus | string;
131
+ failure?: string;
132
+ systemMessage?: string;
133
+ }
134
+ export interface TestCaseRun {
135
+ testCaseRunId?: string;
136
+ testCaseDefinitionId?: string;
137
+ testCaseDefinitionName?: string;
138
+ status?: Status | string;
139
+ startTime?: Date;
140
+ endTime?: Date;
141
+ logUrl?: string;
142
+ warnings?: string;
143
+ failure?: string;
144
+ testScenarios?: TestCaseScenario[];
145
+ }
146
+ export interface GroupResult {
147
+ groupId?: string;
148
+ groupName?: string;
149
+ tests?: TestCaseRun[];
150
+ }
151
+ export interface TestResult {
152
+ groups?: GroupResult[];
153
+ }
154
+ export interface GetSuiteRunResponse {
155
+ suiteDefinitionId?: string;
156
+ suiteDefinitionVersion?: string;
157
+ suiteRunId?: string;
158
+ suiteRunArn?: string;
159
+ suiteRunConfiguration?: SuiteRunConfiguration;
160
+ testResult?: TestResult;
161
+ startTime?: Date;
162
+ endTime?: Date;
163
+ status?: SuiteRunStatus | string;
164
+ errorReason?: string;
165
+ tags?: Record<string, string>;
166
+ }
167
+ export interface GetSuiteRunReportRequest {
168
+ suiteDefinitionId: string | undefined;
169
+ suiteRunId: string | undefined;
170
+ }
171
+ export interface GetSuiteRunReportResponse {
172
+ qualificationReportDownloadUrl?: string;
173
+ }
174
+ export interface ListSuiteDefinitionsRequest {
175
+ maxResults?: number;
176
+ nextToken?: string;
177
+ }
178
+ export interface SuiteDefinitionInformation {
179
+ suiteDefinitionId?: string;
180
+ suiteDefinitionName?: string;
181
+ defaultDevices?: DeviceUnderTest[];
182
+ intendedForQualification?: boolean;
183
+ isLongDurationTest?: boolean;
184
+ protocol?: Protocol | string;
185
+ createdAt?: Date;
186
+ }
187
+ export interface ListSuiteDefinitionsResponse {
188
+ suiteDefinitionInformationList?: SuiteDefinitionInformation[];
189
+ nextToken?: string;
190
+ }
191
+ export interface ListSuiteRunsRequest {
192
+ suiteDefinitionId?: string;
193
+ suiteDefinitionVersion?: string;
194
+ maxResults?: number;
195
+ nextToken?: string;
196
+ }
197
+ export interface SuiteRunInformation {
198
+ suiteDefinitionId?: string;
199
+ suiteDefinitionVersion?: string;
200
+ suiteDefinitionName?: string;
201
+ suiteRunId?: string;
202
+ createdAt?: Date;
203
+ startedAt?: Date;
204
+ endAt?: Date;
205
+ status?: SuiteRunStatus | string;
206
+ passed?: number;
207
+ failed?: number;
208
+ }
209
+ export interface ListSuiteRunsResponse {
210
+ suiteRunsList?: SuiteRunInformation[];
211
+ nextToken?: string;
212
+ }
213
+ export interface ListTagsForResourceRequest {
214
+ resourceArn: string | undefined;
215
+ }
216
+ export interface ListTagsForResourceResponse {
217
+ tags?: Record<string, string>;
218
+ }
219
+ export interface StartSuiteRunRequest {
220
+ suiteDefinitionId: string | undefined;
221
+ suiteDefinitionVersion?: string;
222
+ suiteRunConfiguration?: SuiteRunConfiguration;
223
+ tags?: Record<string, string>;
224
+ }
225
+ export interface StartSuiteRunResponse {
226
+ suiteRunId?: string;
227
+ suiteRunArn?: string;
228
+ createdAt?: Date;
229
+ }
230
+ export interface StopSuiteRunRequest {
231
+ suiteDefinitionId: string | undefined;
232
+ suiteRunId: string | undefined;
233
+ }
234
+ export interface StopSuiteRunResponse {}
235
+ export interface TagResourceRequest {
236
+ resourceArn: string | undefined;
237
+ tags: Record<string, string> | undefined;
238
+ }
239
+ export interface TagResourceResponse {}
240
+ export interface UntagResourceRequest {
241
+ resourceArn: string | undefined;
242
+ tagKeys: string[] | undefined;
243
+ }
244
+ export interface UntagResourceResponse {}
245
+ export interface UpdateSuiteDefinitionRequest {
246
+ suiteDefinitionId: string | undefined;
247
+ suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
248
+ }
249
+ export interface UpdateSuiteDefinitionResponse {
250
+ suiteDefinitionId?: string;
251
+ suiteDefinitionArn?: string;
252
+ suiteDefinitionName?: string;
253
+ suiteDefinitionVersion?: string;
254
+ createdAt?: Date;
255
+ lastUpdatedAt?: Date;
256
+ }
257
+ export declare const DeviceUnderTestFilterSensitiveLog: (
258
+ obj: DeviceUnderTest
259
+ ) => any;
260
+ export declare const SuiteDefinitionConfigurationFilterSensitiveLog: (
261
+ obj: SuiteDefinitionConfiguration
262
+ ) => any;
263
+ export declare const CreateSuiteDefinitionRequestFilterSensitiveLog: (
264
+ obj: CreateSuiteDefinitionRequest
265
+ ) => any;
266
+ export declare const CreateSuiteDefinitionResponseFilterSensitiveLog: (
267
+ obj: CreateSuiteDefinitionResponse
268
+ ) => any;
269
+ export declare const DeleteSuiteDefinitionRequestFilterSensitiveLog: (
270
+ obj: DeleteSuiteDefinitionRequest
271
+ ) => any;
272
+ export declare const DeleteSuiteDefinitionResponseFilterSensitiveLog: (
273
+ obj: DeleteSuiteDefinitionResponse
274
+ ) => any;
275
+ export declare const GetEndpointRequestFilterSensitiveLog: (
276
+ obj: GetEndpointRequest
277
+ ) => any;
278
+ export declare const GetEndpointResponseFilterSensitiveLog: (
279
+ obj: GetEndpointResponse
280
+ ) => any;
281
+ export declare const GetSuiteDefinitionRequestFilterSensitiveLog: (
282
+ obj: GetSuiteDefinitionRequest
283
+ ) => any;
284
+ export declare const GetSuiteDefinitionResponseFilterSensitiveLog: (
285
+ obj: GetSuiteDefinitionResponse
286
+ ) => any;
287
+ export declare const GetSuiteRunRequestFilterSensitiveLog: (
288
+ obj: GetSuiteRunRequest
289
+ ) => any;
290
+ export declare const SuiteRunConfigurationFilterSensitiveLog: (
291
+ obj: SuiteRunConfiguration
292
+ ) => any;
293
+ export declare const TestCaseScenarioFilterSensitiveLog: (
294
+ obj: TestCaseScenario
295
+ ) => any;
296
+ export declare const TestCaseRunFilterSensitiveLog: (obj: TestCaseRun) => any;
297
+ export declare const GroupResultFilterSensitiveLog: (obj: GroupResult) => any;
298
+ export declare const TestResultFilterSensitiveLog: (obj: TestResult) => any;
299
+ export declare const GetSuiteRunResponseFilterSensitiveLog: (
300
+ obj: GetSuiteRunResponse
301
+ ) => any;
302
+ export declare const GetSuiteRunReportRequestFilterSensitiveLog: (
303
+ obj: GetSuiteRunReportRequest
304
+ ) => any;
305
+ export declare const GetSuiteRunReportResponseFilterSensitiveLog: (
306
+ obj: GetSuiteRunReportResponse
307
+ ) => any;
308
+ export declare const ListSuiteDefinitionsRequestFilterSensitiveLog: (
309
+ obj: ListSuiteDefinitionsRequest
310
+ ) => any;
311
+ export declare const SuiteDefinitionInformationFilterSensitiveLog: (
312
+ obj: SuiteDefinitionInformation
313
+ ) => any;
314
+ export declare const ListSuiteDefinitionsResponseFilterSensitiveLog: (
315
+ obj: ListSuiteDefinitionsResponse
316
+ ) => any;
317
+ export declare const ListSuiteRunsRequestFilterSensitiveLog: (
318
+ obj: ListSuiteRunsRequest
319
+ ) => any;
320
+ export declare const SuiteRunInformationFilterSensitiveLog: (
321
+ obj: SuiteRunInformation
322
+ ) => any;
323
+ export declare const ListSuiteRunsResponseFilterSensitiveLog: (
324
+ obj: ListSuiteRunsResponse
325
+ ) => any;
326
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
327
+ obj: ListTagsForResourceRequest
328
+ ) => any;
329
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
330
+ obj: ListTagsForResourceResponse
331
+ ) => any;
332
+ export declare const StartSuiteRunRequestFilterSensitiveLog: (
333
+ obj: StartSuiteRunRequest
334
+ ) => any;
335
+ export declare const StartSuiteRunResponseFilterSensitiveLog: (
336
+ obj: StartSuiteRunResponse
337
+ ) => any;
338
+ export declare const StopSuiteRunRequestFilterSensitiveLog: (
339
+ obj: StopSuiteRunRequest
340
+ ) => any;
341
+ export declare const StopSuiteRunResponseFilterSensitiveLog: (
342
+ obj: StopSuiteRunResponse
343
+ ) => any;
344
+ export declare const TagResourceRequestFilterSensitiveLog: (
345
+ obj: TagResourceRequest
346
+ ) => any;
347
+ export declare const TagResourceResponseFilterSensitiveLog: (
348
+ obj: TagResourceResponse
349
+ ) => any;
350
+ export declare const UntagResourceRequestFilterSensitiveLog: (
351
+ obj: UntagResourceRequest
352
+ ) => any;
353
+ export declare const UntagResourceResponseFilterSensitiveLog: (
354
+ obj: UntagResourceResponse
355
+ ) => any;
356
+ export declare const UpdateSuiteDefinitionRequestFilterSensitiveLog: (
357
+ obj: UpdateSuiteDefinitionRequest
358
+ ) => any;
359
+ export declare const UpdateSuiteDefinitionResponseFilterSensitiveLog: (
360
+ obj: UpdateSuiteDefinitionResponse
361
+ ) => any;