@aws-sdk/client-iotdeviceadvisor 3.131.0 → 3.141.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.
- package/CHANGELOG.md +33 -0
- package/README.md +10 -10
- package/dist-cjs/commands/CreateSuiteDefinitionCommand.js +2 -2
- package/dist-cjs/commands/DeleteSuiteDefinitionCommand.js +2 -2
- package/dist-cjs/commands/GetEndpointCommand.js +2 -2
- package/dist-cjs/commands/GetSuiteDefinitionCommand.js +2 -2
- package/dist-cjs/commands/GetSuiteRunCommand.js +2 -2
- package/dist-cjs/commands/GetSuiteRunReportCommand.js +2 -2
- package/dist-cjs/commands/ListSuiteDefinitionsCommand.js +2 -2
- package/dist-cjs/commands/ListSuiteRunsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/StartSuiteRunCommand.js +2 -2
- package/dist-cjs/commands/StopSuiteRunCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateSuiteDefinitionCommand.js +2 -2
- package/dist-cjs/models/models_0.js +171 -217
- package/dist-cjs/protocols/Aws_restJson1.js +29 -0
- package/dist-es/commands/CreateSuiteDefinitionCommand.js +3 -3
- package/dist-es/commands/DeleteSuiteDefinitionCommand.js +3 -3
- package/dist-es/commands/GetEndpointCommand.js +3 -3
- package/dist-es/commands/GetSuiteDefinitionCommand.js +3 -3
- package/dist-es/commands/GetSuiteRunCommand.js +3 -3
- package/dist-es/commands/GetSuiteRunReportCommand.js +3 -3
- package/dist-es/commands/ListSuiteDefinitionsCommand.js +3 -3
- package/dist-es/commands/ListSuiteRunsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/StartSuiteRunCommand.js +3 -3
- package/dist-es/commands/StopSuiteRunCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateSuiteDefinitionCommand.js +3 -3
- package/dist-es/models/models_0.js +59 -144
- package/dist-es/protocols/Aws_restJson1.js +28 -1
- package/dist-types/IotDeviceAdvisor.d.ts +9 -9
- package/dist-types/IotDeviceAdvisorClient.d.ts +9 -9
- package/dist-types/models/models_0.d.ts +272 -224
- package/dist-types/ts3.4/models/models_0.d.ts +113 -141
- package/package.json +6 -6
|
@@ -24,11 +24,9 @@ export interface DeviceUnderTest {
|
|
|
24
24
|
*/
|
|
25
25
|
certificateArn?: string;
|
|
26
26
|
}
|
|
27
|
-
export declare
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*/
|
|
31
|
-
const filterSensitiveLog: (obj: DeviceUnderTest) => any;
|
|
27
|
+
export declare enum Protocol {
|
|
28
|
+
MqttV3_1_1 = "MqttV3_1_1",
|
|
29
|
+
MqttV5 = "MqttV5"
|
|
32
30
|
}
|
|
33
31
|
/**
|
|
34
32
|
* <p>Gets Suite Definition Configuration.</p>
|
|
@@ -46,6 +44,10 @@ export interface SuiteDefinitionConfiguration {
|
|
|
46
44
|
* <p>Gets the tests intended for qualification in a suite.</p>
|
|
47
45
|
*/
|
|
48
46
|
intendedForQualification?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* <p> Verifies if the test suite is a long duration test. </p>
|
|
49
|
+
*/
|
|
50
|
+
isLongDurationTest?: boolean;
|
|
49
51
|
/**
|
|
50
52
|
* <p>Gets test suite root group.</p>
|
|
51
53
|
*/
|
|
@@ -54,12 +56,10 @@ export interface SuiteDefinitionConfiguration {
|
|
|
54
56
|
* <p>Gets the device permission ARN.</p>
|
|
55
57
|
*/
|
|
56
58
|
devicePermissionRoleArn?: string;
|
|
57
|
-
}
|
|
58
|
-
export declare namespace SuiteDefinitionConfiguration {
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* <p> Gets the MQTT protocol that is configured in the suite definition.</p>
|
|
61
61
|
*/
|
|
62
|
-
|
|
62
|
+
protocol?: Protocol | string;
|
|
63
63
|
}
|
|
64
64
|
export interface CreateSuiteDefinitionRequest {
|
|
65
65
|
/**
|
|
@@ -71,12 +71,6 @@ export interface CreateSuiteDefinitionRequest {
|
|
|
71
71
|
*/
|
|
72
72
|
tags?: Record<string, string>;
|
|
73
73
|
}
|
|
74
|
-
export declare namespace CreateSuiteDefinitionRequest {
|
|
75
|
-
/**
|
|
76
|
-
* @internal
|
|
77
|
-
*/
|
|
78
|
-
const filterSensitiveLog: (obj: CreateSuiteDefinitionRequest) => any;
|
|
79
|
-
}
|
|
80
74
|
export interface CreateSuiteDefinitionResponse {
|
|
81
75
|
/**
|
|
82
76
|
* <p>Creates a Device Advisor test suite with suite UUID.</p>
|
|
@@ -95,12 +89,6 @@ export interface CreateSuiteDefinitionResponse {
|
|
|
95
89
|
*/
|
|
96
90
|
createdAt?: Date;
|
|
97
91
|
}
|
|
98
|
-
export declare namespace CreateSuiteDefinitionResponse {
|
|
99
|
-
/**
|
|
100
|
-
* @internal
|
|
101
|
-
*/
|
|
102
|
-
const filterSensitiveLog: (obj: CreateSuiteDefinitionResponse) => any;
|
|
103
|
-
}
|
|
104
92
|
/**
|
|
105
93
|
* <p>Sends an Internal Failure exception.</p>
|
|
106
94
|
*/
|
|
@@ -129,20 +117,8 @@ export interface DeleteSuiteDefinitionRequest {
|
|
|
129
117
|
*/
|
|
130
118
|
suiteDefinitionId: string | undefined;
|
|
131
119
|
}
|
|
132
|
-
export declare namespace DeleteSuiteDefinitionRequest {
|
|
133
|
-
/**
|
|
134
|
-
* @internal
|
|
135
|
-
*/
|
|
136
|
-
const filterSensitiveLog: (obj: DeleteSuiteDefinitionRequest) => any;
|
|
137
|
-
}
|
|
138
120
|
export interface DeleteSuiteDefinitionResponse {
|
|
139
121
|
}
|
|
140
|
-
export declare namespace DeleteSuiteDefinitionResponse {
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
const filterSensitiveLog: (obj: DeleteSuiteDefinitionResponse) => any;
|
|
145
|
-
}
|
|
146
122
|
export interface GetEndpointRequest {
|
|
147
123
|
/**
|
|
148
124
|
* <p>The thing ARN of the device. This is an optional parameter.</p>
|
|
@@ -153,24 +129,12 @@ export interface GetEndpointRequest {
|
|
|
153
129
|
*/
|
|
154
130
|
certificateArn?: string;
|
|
155
131
|
}
|
|
156
|
-
export declare namespace GetEndpointRequest {
|
|
157
|
-
/**
|
|
158
|
-
* @internal
|
|
159
|
-
*/
|
|
160
|
-
const filterSensitiveLog: (obj: GetEndpointRequest) => any;
|
|
161
|
-
}
|
|
162
132
|
export interface GetEndpointResponse {
|
|
163
133
|
/**
|
|
164
134
|
* <p>The response of an Device Advisor endpoint.</p>
|
|
165
135
|
*/
|
|
166
136
|
endpoint?: string;
|
|
167
137
|
}
|
|
168
|
-
export declare namespace GetEndpointResponse {
|
|
169
|
-
/**
|
|
170
|
-
* @internal
|
|
171
|
-
*/
|
|
172
|
-
const filterSensitiveLog: (obj: GetEndpointResponse) => any;
|
|
173
|
-
}
|
|
174
138
|
/**
|
|
175
139
|
* <p>Sends a Resource Not Found exception.</p>
|
|
176
140
|
*/
|
|
@@ -192,12 +156,6 @@ export interface GetSuiteDefinitionRequest {
|
|
|
192
156
|
*/
|
|
193
157
|
suiteDefinitionVersion?: string;
|
|
194
158
|
}
|
|
195
|
-
export declare namespace GetSuiteDefinitionRequest {
|
|
196
|
-
/**
|
|
197
|
-
* @internal
|
|
198
|
-
*/
|
|
199
|
-
const filterSensitiveLog: (obj: GetSuiteDefinitionRequest) => any;
|
|
200
|
-
}
|
|
201
159
|
export interface GetSuiteDefinitionResponse {
|
|
202
160
|
/**
|
|
203
161
|
* <p>Suite definition ID of the suite definition.</p>
|
|
@@ -232,12 +190,6 @@ export interface GetSuiteDefinitionResponse {
|
|
|
232
190
|
*/
|
|
233
191
|
tags?: Record<string, string>;
|
|
234
192
|
}
|
|
235
|
-
export declare namespace GetSuiteDefinitionResponse {
|
|
236
|
-
/**
|
|
237
|
-
* @internal
|
|
238
|
-
*/
|
|
239
|
-
const filterSensitiveLog: (obj: GetSuiteDefinitionResponse) => any;
|
|
240
|
-
}
|
|
241
193
|
export interface GetSuiteRunRequest {
|
|
242
194
|
/**
|
|
243
195
|
* <p>Suite definition ID for the test suite run.</p>
|
|
@@ -248,12 +200,6 @@ export interface GetSuiteRunRequest {
|
|
|
248
200
|
*/
|
|
249
201
|
suiteRunId: string | undefined;
|
|
250
202
|
}
|
|
251
|
-
export declare namespace GetSuiteRunRequest {
|
|
252
|
-
/**
|
|
253
|
-
* @internal
|
|
254
|
-
*/
|
|
255
|
-
const filterSensitiveLog: (obj: GetSuiteRunRequest) => any;
|
|
256
|
-
}
|
|
257
203
|
export declare enum SuiteRunStatus {
|
|
258
204
|
CANCELED = "CANCELED",
|
|
259
205
|
ERROR = "ERROR",
|
|
@@ -282,12 +228,6 @@ export interface SuiteRunConfiguration {
|
|
|
282
228
|
*/
|
|
283
229
|
parallelRun?: boolean;
|
|
284
230
|
}
|
|
285
|
-
export declare namespace SuiteRunConfiguration {
|
|
286
|
-
/**
|
|
287
|
-
* @internal
|
|
288
|
-
*/
|
|
289
|
-
const filterSensitiveLog: (obj: SuiteRunConfiguration) => any;
|
|
290
|
-
}
|
|
291
231
|
export declare enum Status {
|
|
292
232
|
CANCELED = "CANCELED",
|
|
293
233
|
ERROR = "ERROR",
|
|
@@ -299,6 +239,93 @@ export declare enum Status {
|
|
|
299
239
|
STOPPED = "STOPPED",
|
|
300
240
|
STOPPING = "STOPPING"
|
|
301
241
|
}
|
|
242
|
+
export declare enum TestCaseScenarioStatus {
|
|
243
|
+
CANCELED = "CANCELED",
|
|
244
|
+
ERROR = "ERROR",
|
|
245
|
+
FAIL = "FAIL",
|
|
246
|
+
PASS = "PASS",
|
|
247
|
+
PASS_WITH_WARNINGS = "PASS_WITH_WARNINGS",
|
|
248
|
+
PENDING = "PENDING",
|
|
249
|
+
RUNNING = "RUNNING",
|
|
250
|
+
STOPPED = "STOPPED",
|
|
251
|
+
STOPPING = "STOPPING"
|
|
252
|
+
}
|
|
253
|
+
export declare enum TestCaseScenarioType {
|
|
254
|
+
Advanced = "Advanced",
|
|
255
|
+
Basic = "Basic"
|
|
256
|
+
}
|
|
257
|
+
/**
|
|
258
|
+
* <p>Provides test case scenario.</p>
|
|
259
|
+
*/
|
|
260
|
+
export interface TestCaseScenario {
|
|
261
|
+
/**
|
|
262
|
+
* <p>Provides test case scenario ID.</p>
|
|
263
|
+
*/
|
|
264
|
+
testCaseScenarioId?: string;
|
|
265
|
+
/**
|
|
266
|
+
* <p>Provides test case scenario type. Type is one of the following:</p>
|
|
267
|
+
* <ul>
|
|
268
|
+
* <li>
|
|
269
|
+
* <p>Advanced</p>
|
|
270
|
+
* </li>
|
|
271
|
+
* <li>
|
|
272
|
+
* <p>Basic</p>
|
|
273
|
+
* </li>
|
|
274
|
+
* </ul>
|
|
275
|
+
*/
|
|
276
|
+
testCaseScenarioType?: TestCaseScenarioType | string;
|
|
277
|
+
/**
|
|
278
|
+
* <p>Provides the test case scenario status. Status is one of the following:</p>
|
|
279
|
+
* <ul>
|
|
280
|
+
* <li>
|
|
281
|
+
* <p>
|
|
282
|
+
* <code>PASS</code>: Test passed.</p>
|
|
283
|
+
* </li>
|
|
284
|
+
* <li>
|
|
285
|
+
* <p>
|
|
286
|
+
* <code>FAIL</code>: Test failed.</p>
|
|
287
|
+
* </li>
|
|
288
|
+
* <li>
|
|
289
|
+
* <p>
|
|
290
|
+
* <code>PENDING</code>: Test has not started running but is scheduled.</p>
|
|
291
|
+
* </li>
|
|
292
|
+
* <li>
|
|
293
|
+
* <p>
|
|
294
|
+
* <code>RUNNING</code>: Test is running.</p>
|
|
295
|
+
* </li>
|
|
296
|
+
* <li>
|
|
297
|
+
* <p>
|
|
298
|
+
* <code>STOPPING</code>: Test is performing cleanup steps. You will see this
|
|
299
|
+
* status only if you stop a suite run.</p>
|
|
300
|
+
* </li>
|
|
301
|
+
* <li>
|
|
302
|
+
* <p>
|
|
303
|
+
* <code>STOPPED</code> Test is stopped. You will see this status only if you
|
|
304
|
+
* stop a suite run.</p>
|
|
305
|
+
* </li>
|
|
306
|
+
* <li>
|
|
307
|
+
* <p>
|
|
308
|
+
* <code>PASS_WITH_WARNINGS</code>: Test passed with warnings.</p>
|
|
309
|
+
* </li>
|
|
310
|
+
* <li>
|
|
311
|
+
* <p>
|
|
312
|
+
* <code>ERORR</code>: Test faced an error when running due to an internal
|
|
313
|
+
* issue.</p>
|
|
314
|
+
* </li>
|
|
315
|
+
* </ul>
|
|
316
|
+
*/
|
|
317
|
+
status?: TestCaseScenarioStatus | string;
|
|
318
|
+
/**
|
|
319
|
+
* <p>Provides test case scenario failure result.</p>
|
|
320
|
+
*/
|
|
321
|
+
failure?: string;
|
|
322
|
+
/**
|
|
323
|
+
* <p>
|
|
324
|
+
*
|
|
325
|
+
* </p>
|
|
326
|
+
*/
|
|
327
|
+
systemMessage?: string;
|
|
328
|
+
}
|
|
302
329
|
/**
|
|
303
330
|
* <p>Provides the test case run.</p>
|
|
304
331
|
*/
|
|
@@ -319,36 +346,39 @@ export interface TestCaseRun {
|
|
|
319
346
|
* <p>Provides the test case run status. Status is one of the following:</p>
|
|
320
347
|
* <ul>
|
|
321
348
|
* <li>
|
|
322
|
-
*
|
|
349
|
+
* <p>
|
|
323
350
|
* <code>PASS</code>: Test passed.</p>
|
|
324
351
|
* </li>
|
|
325
352
|
* <li>
|
|
326
|
-
*
|
|
353
|
+
* <p>
|
|
327
354
|
* <code>FAIL</code>: Test failed.</p>
|
|
328
355
|
* </li>
|
|
329
356
|
* <li>
|
|
330
|
-
*
|
|
357
|
+
* <p>
|
|
331
358
|
* <code>PENDING</code>: Test has not started running but is scheduled.</p>
|
|
332
359
|
* </li>
|
|
333
360
|
* <li>
|
|
334
|
-
*
|
|
361
|
+
* <p>
|
|
335
362
|
* <code>RUNNING</code>: Test is running.</p>
|
|
336
363
|
* </li>
|
|
337
364
|
* <li>
|
|
338
|
-
*
|
|
339
|
-
* <code>STOPPING</code>: Test is performing cleanup steps. You will see this
|
|
365
|
+
* <p>
|
|
366
|
+
* <code>STOPPING</code>: Test is performing cleanup steps. You will see this
|
|
367
|
+
* status only if you stop a suite run.</p>
|
|
340
368
|
* </li>
|
|
341
369
|
* <li>
|
|
342
|
-
*
|
|
343
|
-
* <code>STOPPED</code> Test is stopped. You will see this status only if you
|
|
370
|
+
* <p>
|
|
371
|
+
* <code>STOPPED</code> Test is stopped. You will see this status only if you
|
|
372
|
+
* stop a suite run.</p>
|
|
344
373
|
* </li>
|
|
345
374
|
* <li>
|
|
346
|
-
*
|
|
375
|
+
* <p>
|
|
347
376
|
* <code>PASS_WITH_WARNINGS</code>: Test passed with warnings.</p>
|
|
348
377
|
* </li>
|
|
349
378
|
* <li>
|
|
350
|
-
*
|
|
351
|
-
* <code>ERORR</code>: Test faced an error when running due to an internal
|
|
379
|
+
* <p>
|
|
380
|
+
* <code>ERORR</code>: Test faced an error when running due to an internal
|
|
381
|
+
* issue.</p>
|
|
352
382
|
* </li>
|
|
353
383
|
* </ul>
|
|
354
384
|
*/
|
|
@@ -373,12 +403,10 @@ export interface TestCaseRun {
|
|
|
373
403
|
* <p>Provides test case run failure result.</p>
|
|
374
404
|
*/
|
|
375
405
|
failure?: string;
|
|
376
|
-
}
|
|
377
|
-
export declare namespace TestCaseRun {
|
|
378
406
|
/**
|
|
379
|
-
*
|
|
407
|
+
* <p> Provides the test scenarios for the test case run. </p>
|
|
380
408
|
*/
|
|
381
|
-
|
|
409
|
+
testScenarios?: TestCaseScenario[];
|
|
382
410
|
}
|
|
383
411
|
/**
|
|
384
412
|
* <p>Show Group Result.</p>
|
|
@@ -397,12 +425,6 @@ export interface GroupResult {
|
|
|
397
425
|
*/
|
|
398
426
|
tests?: TestCaseRun[];
|
|
399
427
|
}
|
|
400
|
-
export declare namespace GroupResult {
|
|
401
|
-
/**
|
|
402
|
-
* @internal
|
|
403
|
-
*/
|
|
404
|
-
const filterSensitiveLog: (obj: GroupResult) => any;
|
|
405
|
-
}
|
|
406
428
|
/**
|
|
407
429
|
* <p>Show each group result.</p>
|
|
408
430
|
*/
|
|
@@ -412,12 +434,6 @@ export interface TestResult {
|
|
|
412
434
|
*/
|
|
413
435
|
groups?: GroupResult[];
|
|
414
436
|
}
|
|
415
|
-
export declare namespace TestResult {
|
|
416
|
-
/**
|
|
417
|
-
* @internal
|
|
418
|
-
*/
|
|
419
|
-
const filterSensitiveLog: (obj: TestResult) => any;
|
|
420
|
-
}
|
|
421
437
|
export interface GetSuiteRunResponse {
|
|
422
438
|
/**
|
|
423
439
|
* <p>Suite definition ID for the test suite run.</p>
|
|
@@ -464,12 +480,6 @@ export interface GetSuiteRunResponse {
|
|
|
464
480
|
*/
|
|
465
481
|
tags?: Record<string, string>;
|
|
466
482
|
}
|
|
467
|
-
export declare namespace GetSuiteRunResponse {
|
|
468
|
-
/**
|
|
469
|
-
* @internal
|
|
470
|
-
*/
|
|
471
|
-
const filterSensitiveLog: (obj: GetSuiteRunResponse) => any;
|
|
472
|
-
}
|
|
473
483
|
export interface GetSuiteRunReportRequest {
|
|
474
484
|
/**
|
|
475
485
|
* <p>Suite definition ID of the test suite.</p>
|
|
@@ -480,24 +490,12 @@ export interface GetSuiteRunReportRequest {
|
|
|
480
490
|
*/
|
|
481
491
|
suiteRunId: string | undefined;
|
|
482
492
|
}
|
|
483
|
-
export declare namespace GetSuiteRunReportRequest {
|
|
484
|
-
/**
|
|
485
|
-
* @internal
|
|
486
|
-
*/
|
|
487
|
-
const filterSensitiveLog: (obj: GetSuiteRunReportRequest) => any;
|
|
488
|
-
}
|
|
489
493
|
export interface GetSuiteRunReportResponse {
|
|
490
494
|
/**
|
|
491
495
|
* <p>Download URL of the qualification report.</p>
|
|
492
496
|
*/
|
|
493
497
|
qualificationReportDownloadUrl?: string;
|
|
494
498
|
}
|
|
495
|
-
export declare namespace GetSuiteRunReportResponse {
|
|
496
|
-
/**
|
|
497
|
-
* @internal
|
|
498
|
-
*/
|
|
499
|
-
const filterSensitiveLog: (obj: GetSuiteRunReportResponse) => any;
|
|
500
|
-
}
|
|
501
499
|
export interface ListSuiteDefinitionsRequest {
|
|
502
500
|
/**
|
|
503
501
|
* <p>The maximum number of results to return at once.</p>
|
|
@@ -508,12 +506,6 @@ export interface ListSuiteDefinitionsRequest {
|
|
|
508
506
|
*/
|
|
509
507
|
nextToken?: string;
|
|
510
508
|
}
|
|
511
|
-
export declare namespace ListSuiteDefinitionsRequest {
|
|
512
|
-
/**
|
|
513
|
-
* @internal
|
|
514
|
-
*/
|
|
515
|
-
const filterSensitiveLog: (obj: ListSuiteDefinitionsRequest) => any;
|
|
516
|
-
}
|
|
517
509
|
/**
|
|
518
510
|
* <p>Information about the suite definition.</p>
|
|
519
511
|
*/
|
|
@@ -535,19 +527,22 @@ export interface SuiteDefinitionInformation {
|
|
|
535
527
|
*/
|
|
536
528
|
intendedForQualification?: boolean;
|
|
537
529
|
/**
|
|
538
|
-
* <p>
|
|
530
|
+
* <p> Verifies if the test suite is a long duration test. </p>
|
|
539
531
|
*/
|
|
540
|
-
|
|
541
|
-
}
|
|
542
|
-
export declare namespace SuiteDefinitionInformation {
|
|
532
|
+
isLongDurationTest?: boolean;
|
|
543
533
|
/**
|
|
544
|
-
*
|
|
534
|
+
* <p> Gets the MQTT protocol that is configured in the suite definition.</p>
|
|
535
|
+
*/
|
|
536
|
+
protocol?: Protocol | string;
|
|
537
|
+
/**
|
|
538
|
+
* <p>Date (in Unix epoch time) when the test suite was created.</p>
|
|
545
539
|
*/
|
|
546
|
-
|
|
540
|
+
createdAt?: Date;
|
|
547
541
|
}
|
|
548
542
|
export interface ListSuiteDefinitionsResponse {
|
|
549
543
|
/**
|
|
550
|
-
* <p>An array of objects that provide summaries of information about the suite definitions
|
|
544
|
+
* <p>An array of objects that provide summaries of information about the suite definitions
|
|
545
|
+
* in the list.</p>
|
|
551
546
|
*/
|
|
552
547
|
suiteDefinitionInformationList?: SuiteDefinitionInformation[];
|
|
553
548
|
/**
|
|
@@ -555,12 +550,6 @@ export interface ListSuiteDefinitionsResponse {
|
|
|
555
550
|
*/
|
|
556
551
|
nextToken?: string;
|
|
557
552
|
}
|
|
558
|
-
export declare namespace ListSuiteDefinitionsResponse {
|
|
559
|
-
/**
|
|
560
|
-
* @internal
|
|
561
|
-
*/
|
|
562
|
-
const filterSensitiveLog: (obj: ListSuiteDefinitionsResponse) => any;
|
|
563
|
-
}
|
|
564
553
|
export interface ListSuiteRunsRequest {
|
|
565
554
|
/**
|
|
566
555
|
* <p>Lists the test suite runs of the specified test suite based on suite definition
|
|
@@ -581,12 +570,6 @@ export interface ListSuiteRunsRequest {
|
|
|
581
570
|
*/
|
|
582
571
|
nextToken?: string;
|
|
583
572
|
}
|
|
584
|
-
export declare namespace ListSuiteRunsRequest {
|
|
585
|
-
/**
|
|
586
|
-
* @internal
|
|
587
|
-
*/
|
|
588
|
-
const filterSensitiveLog: (obj: ListSuiteRunsRequest) => any;
|
|
589
|
-
}
|
|
590
573
|
/**
|
|
591
574
|
* <p>Information about the suite run.</p>
|
|
592
575
|
* <p>Requires permission to access the <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions">SuiteRunInformation</a> action.</p>
|
|
@@ -633,15 +616,10 @@ export interface SuiteRunInformation {
|
|
|
633
616
|
*/
|
|
634
617
|
failed?: number;
|
|
635
618
|
}
|
|
636
|
-
export declare namespace SuiteRunInformation {
|
|
637
|
-
/**
|
|
638
|
-
* @internal
|
|
639
|
-
*/
|
|
640
|
-
const filterSensitiveLog: (obj: SuiteRunInformation) => any;
|
|
641
|
-
}
|
|
642
619
|
export interface ListSuiteRunsResponse {
|
|
643
620
|
/**
|
|
644
|
-
* <p>An array of objects that provide summaries of information about the suite runs in the
|
|
621
|
+
* <p>An array of objects that provide summaries of information about the suite runs in the
|
|
622
|
+
* list.</p>
|
|
645
623
|
*/
|
|
646
624
|
suiteRunsList?: SuiteRunInformation[];
|
|
647
625
|
/**
|
|
@@ -649,36 +627,18 @@ export interface ListSuiteRunsResponse {
|
|
|
649
627
|
*/
|
|
650
628
|
nextToken?: string;
|
|
651
629
|
}
|
|
652
|
-
export declare namespace ListSuiteRunsResponse {
|
|
653
|
-
/**
|
|
654
|
-
* @internal
|
|
655
|
-
*/
|
|
656
|
-
const filterSensitiveLog: (obj: ListSuiteRunsResponse) => any;
|
|
657
|
-
}
|
|
658
630
|
export interface ListTagsForResourceRequest {
|
|
659
631
|
/**
|
|
660
632
|
* <p>The ARN of the IoT Device Advisor resource.</p>
|
|
661
633
|
*/
|
|
662
634
|
resourceArn: string | undefined;
|
|
663
635
|
}
|
|
664
|
-
export declare namespace ListTagsForResourceRequest {
|
|
665
|
-
/**
|
|
666
|
-
* @internal
|
|
667
|
-
*/
|
|
668
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
669
|
-
}
|
|
670
636
|
export interface ListTagsForResourceResponse {
|
|
671
637
|
/**
|
|
672
638
|
* <p>The tags attached to the IoT Device Advisor resource.</p>
|
|
673
639
|
*/
|
|
674
640
|
tags?: Record<string, string>;
|
|
675
641
|
}
|
|
676
|
-
export declare namespace ListTagsForResourceResponse {
|
|
677
|
-
/**
|
|
678
|
-
* @internal
|
|
679
|
-
*/
|
|
680
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
681
|
-
}
|
|
682
642
|
export interface StartSuiteRunRequest {
|
|
683
643
|
/**
|
|
684
644
|
* <p>Suite definition ID of the test suite.</p>
|
|
@@ -697,12 +657,6 @@ export interface StartSuiteRunRequest {
|
|
|
697
657
|
*/
|
|
698
658
|
tags?: Record<string, string>;
|
|
699
659
|
}
|
|
700
|
-
export declare namespace StartSuiteRunRequest {
|
|
701
|
-
/**
|
|
702
|
-
* @internal
|
|
703
|
-
*/
|
|
704
|
-
const filterSensitiveLog: (obj: StartSuiteRunRequest) => any;
|
|
705
|
-
}
|
|
706
660
|
export interface StartSuiteRunResponse {
|
|
707
661
|
/**
|
|
708
662
|
* <p>Suite Run ID of the started suite run.</p>
|
|
@@ -717,12 +671,6 @@ export interface StartSuiteRunResponse {
|
|
|
717
671
|
*/
|
|
718
672
|
createdAt?: Date;
|
|
719
673
|
}
|
|
720
|
-
export declare namespace StartSuiteRunResponse {
|
|
721
|
-
/**
|
|
722
|
-
* @internal
|
|
723
|
-
*/
|
|
724
|
-
const filterSensitiveLog: (obj: StartSuiteRunResponse) => any;
|
|
725
|
-
}
|
|
726
674
|
export interface StopSuiteRunRequest {
|
|
727
675
|
/**
|
|
728
676
|
* <p>Suite definition ID of the test suite run to be stopped.</p>
|
|
@@ -733,20 +681,8 @@ export interface StopSuiteRunRequest {
|
|
|
733
681
|
*/
|
|
734
682
|
suiteRunId: string | undefined;
|
|
735
683
|
}
|
|
736
|
-
export declare namespace StopSuiteRunRequest {
|
|
737
|
-
/**
|
|
738
|
-
* @internal
|
|
739
|
-
*/
|
|
740
|
-
const filterSensitiveLog: (obj: StopSuiteRunRequest) => any;
|
|
741
|
-
}
|
|
742
684
|
export interface StopSuiteRunResponse {
|
|
743
685
|
}
|
|
744
|
-
export declare namespace StopSuiteRunResponse {
|
|
745
|
-
/**
|
|
746
|
-
* @internal
|
|
747
|
-
*/
|
|
748
|
-
const filterSensitiveLog: (obj: StopSuiteRunResponse) => any;
|
|
749
|
-
}
|
|
750
686
|
export interface TagResourceRequest {
|
|
751
687
|
/**
|
|
752
688
|
* <p>The resource ARN of an IoT Device Advisor resource.</p>
|
|
@@ -757,20 +693,8 @@ export interface TagResourceRequest {
|
|
|
757
693
|
*/
|
|
758
694
|
tags: Record<string, string> | undefined;
|
|
759
695
|
}
|
|
760
|
-
export declare namespace TagResourceRequest {
|
|
761
|
-
/**
|
|
762
|
-
* @internal
|
|
763
|
-
*/
|
|
764
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
765
|
-
}
|
|
766
696
|
export interface TagResourceResponse {
|
|
767
697
|
}
|
|
768
|
-
export declare namespace TagResourceResponse {
|
|
769
|
-
/**
|
|
770
|
-
* @internal
|
|
771
|
-
*/
|
|
772
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
773
|
-
}
|
|
774
698
|
export interface UntagResourceRequest {
|
|
775
699
|
/**
|
|
776
700
|
* <p>The resource ARN of an IoT Device Advisor resource.</p>
|
|
@@ -781,20 +705,8 @@ export interface UntagResourceRequest {
|
|
|
781
705
|
*/
|
|
782
706
|
tagKeys: string[] | undefined;
|
|
783
707
|
}
|
|
784
|
-
export declare namespace UntagResourceRequest {
|
|
785
|
-
/**
|
|
786
|
-
* @internal
|
|
787
|
-
*/
|
|
788
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
789
|
-
}
|
|
790
708
|
export interface UntagResourceResponse {
|
|
791
709
|
}
|
|
792
|
-
export declare namespace UntagResourceResponse {
|
|
793
|
-
/**
|
|
794
|
-
* @internal
|
|
795
|
-
*/
|
|
796
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
797
|
-
}
|
|
798
710
|
export interface UpdateSuiteDefinitionRequest {
|
|
799
711
|
/**
|
|
800
712
|
* <p>Suite definition ID of the test suite to be updated.</p>
|
|
@@ -805,12 +717,6 @@ export interface UpdateSuiteDefinitionRequest {
|
|
|
805
717
|
*/
|
|
806
718
|
suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
|
|
807
719
|
}
|
|
808
|
-
export declare namespace UpdateSuiteDefinitionRequest {
|
|
809
|
-
/**
|
|
810
|
-
* @internal
|
|
811
|
-
*/
|
|
812
|
-
const filterSensitiveLog: (obj: UpdateSuiteDefinitionRequest) => any;
|
|
813
|
-
}
|
|
814
720
|
export interface UpdateSuiteDefinitionResponse {
|
|
815
721
|
/**
|
|
816
722
|
* <p>Suite definition ID of the updated test suite.</p>
|
|
@@ -837,9 +743,151 @@ export interface UpdateSuiteDefinitionResponse {
|
|
|
837
743
|
*/
|
|
838
744
|
lastUpdatedAt?: Date;
|
|
839
745
|
}
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
746
|
+
/**
|
|
747
|
+
* @internal
|
|
748
|
+
*/
|
|
749
|
+
export declare const DeviceUnderTestFilterSensitiveLog: (obj: DeviceUnderTest) => any;
|
|
750
|
+
/**
|
|
751
|
+
* @internal
|
|
752
|
+
*/
|
|
753
|
+
export declare const SuiteDefinitionConfigurationFilterSensitiveLog: (obj: SuiteDefinitionConfiguration) => any;
|
|
754
|
+
/**
|
|
755
|
+
* @internal
|
|
756
|
+
*/
|
|
757
|
+
export declare const CreateSuiteDefinitionRequestFilterSensitiveLog: (obj: CreateSuiteDefinitionRequest) => any;
|
|
758
|
+
/**
|
|
759
|
+
* @internal
|
|
760
|
+
*/
|
|
761
|
+
export declare const CreateSuiteDefinitionResponseFilterSensitiveLog: (obj: CreateSuiteDefinitionResponse) => any;
|
|
762
|
+
/**
|
|
763
|
+
* @internal
|
|
764
|
+
*/
|
|
765
|
+
export declare const DeleteSuiteDefinitionRequestFilterSensitiveLog: (obj: DeleteSuiteDefinitionRequest) => any;
|
|
766
|
+
/**
|
|
767
|
+
* @internal
|
|
768
|
+
*/
|
|
769
|
+
export declare const DeleteSuiteDefinitionResponseFilterSensitiveLog: (obj: DeleteSuiteDefinitionResponse) => any;
|
|
770
|
+
/**
|
|
771
|
+
* @internal
|
|
772
|
+
*/
|
|
773
|
+
export declare const GetEndpointRequestFilterSensitiveLog: (obj: GetEndpointRequest) => any;
|
|
774
|
+
/**
|
|
775
|
+
* @internal
|
|
776
|
+
*/
|
|
777
|
+
export declare const GetEndpointResponseFilterSensitiveLog: (obj: GetEndpointResponse) => any;
|
|
778
|
+
/**
|
|
779
|
+
* @internal
|
|
780
|
+
*/
|
|
781
|
+
export declare const GetSuiteDefinitionRequestFilterSensitiveLog: (obj: GetSuiteDefinitionRequest) => any;
|
|
782
|
+
/**
|
|
783
|
+
* @internal
|
|
784
|
+
*/
|
|
785
|
+
export declare const GetSuiteDefinitionResponseFilterSensitiveLog: (obj: GetSuiteDefinitionResponse) => any;
|
|
786
|
+
/**
|
|
787
|
+
* @internal
|
|
788
|
+
*/
|
|
789
|
+
export declare const GetSuiteRunRequestFilterSensitiveLog: (obj: GetSuiteRunRequest) => any;
|
|
790
|
+
/**
|
|
791
|
+
* @internal
|
|
792
|
+
*/
|
|
793
|
+
export declare const SuiteRunConfigurationFilterSensitiveLog: (obj: SuiteRunConfiguration) => any;
|
|
794
|
+
/**
|
|
795
|
+
* @internal
|
|
796
|
+
*/
|
|
797
|
+
export declare const TestCaseScenarioFilterSensitiveLog: (obj: TestCaseScenario) => any;
|
|
798
|
+
/**
|
|
799
|
+
* @internal
|
|
800
|
+
*/
|
|
801
|
+
export declare const TestCaseRunFilterSensitiveLog: (obj: TestCaseRun) => any;
|
|
802
|
+
/**
|
|
803
|
+
* @internal
|
|
804
|
+
*/
|
|
805
|
+
export declare const GroupResultFilterSensitiveLog: (obj: GroupResult) => any;
|
|
806
|
+
/**
|
|
807
|
+
* @internal
|
|
808
|
+
*/
|
|
809
|
+
export declare const TestResultFilterSensitiveLog: (obj: TestResult) => any;
|
|
810
|
+
/**
|
|
811
|
+
* @internal
|
|
812
|
+
*/
|
|
813
|
+
export declare const GetSuiteRunResponseFilterSensitiveLog: (obj: GetSuiteRunResponse) => any;
|
|
814
|
+
/**
|
|
815
|
+
* @internal
|
|
816
|
+
*/
|
|
817
|
+
export declare const GetSuiteRunReportRequestFilterSensitiveLog: (obj: GetSuiteRunReportRequest) => any;
|
|
818
|
+
/**
|
|
819
|
+
* @internal
|
|
820
|
+
*/
|
|
821
|
+
export declare const GetSuiteRunReportResponseFilterSensitiveLog: (obj: GetSuiteRunReportResponse) => any;
|
|
822
|
+
/**
|
|
823
|
+
* @internal
|
|
824
|
+
*/
|
|
825
|
+
export declare const ListSuiteDefinitionsRequestFilterSensitiveLog: (obj: ListSuiteDefinitionsRequest) => any;
|
|
826
|
+
/**
|
|
827
|
+
* @internal
|
|
828
|
+
*/
|
|
829
|
+
export declare const SuiteDefinitionInformationFilterSensitiveLog: (obj: SuiteDefinitionInformation) => any;
|
|
830
|
+
/**
|
|
831
|
+
* @internal
|
|
832
|
+
*/
|
|
833
|
+
export declare const ListSuiteDefinitionsResponseFilterSensitiveLog: (obj: ListSuiteDefinitionsResponse) => any;
|
|
834
|
+
/**
|
|
835
|
+
* @internal
|
|
836
|
+
*/
|
|
837
|
+
export declare const ListSuiteRunsRequestFilterSensitiveLog: (obj: ListSuiteRunsRequest) => any;
|
|
838
|
+
/**
|
|
839
|
+
* @internal
|
|
840
|
+
*/
|
|
841
|
+
export declare const SuiteRunInformationFilterSensitiveLog: (obj: SuiteRunInformation) => any;
|
|
842
|
+
/**
|
|
843
|
+
* @internal
|
|
844
|
+
*/
|
|
845
|
+
export declare const ListSuiteRunsResponseFilterSensitiveLog: (obj: ListSuiteRunsResponse) => any;
|
|
846
|
+
/**
|
|
847
|
+
* @internal
|
|
848
|
+
*/
|
|
849
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
850
|
+
/**
|
|
851
|
+
* @internal
|
|
852
|
+
*/
|
|
853
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
854
|
+
/**
|
|
855
|
+
* @internal
|
|
856
|
+
*/
|
|
857
|
+
export declare const StartSuiteRunRequestFilterSensitiveLog: (obj: StartSuiteRunRequest) => any;
|
|
858
|
+
/**
|
|
859
|
+
* @internal
|
|
860
|
+
*/
|
|
861
|
+
export declare const StartSuiteRunResponseFilterSensitiveLog: (obj: StartSuiteRunResponse) => any;
|
|
862
|
+
/**
|
|
863
|
+
* @internal
|
|
864
|
+
*/
|
|
865
|
+
export declare const StopSuiteRunRequestFilterSensitiveLog: (obj: StopSuiteRunRequest) => any;
|
|
866
|
+
/**
|
|
867
|
+
* @internal
|
|
868
|
+
*/
|
|
869
|
+
export declare const StopSuiteRunResponseFilterSensitiveLog: (obj: StopSuiteRunResponse) => any;
|
|
870
|
+
/**
|
|
871
|
+
* @internal
|
|
872
|
+
*/
|
|
873
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
874
|
+
/**
|
|
875
|
+
* @internal
|
|
876
|
+
*/
|
|
877
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
878
|
+
/**
|
|
879
|
+
* @internal
|
|
880
|
+
*/
|
|
881
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
882
|
+
/**
|
|
883
|
+
* @internal
|
|
884
|
+
*/
|
|
885
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
886
|
+
/**
|
|
887
|
+
* @internal
|
|
888
|
+
*/
|
|
889
|
+
export declare const UpdateSuiteDefinitionRequestFilterSensitiveLog: (obj: UpdateSuiteDefinitionRequest) => any;
|
|
890
|
+
/**
|
|
891
|
+
* @internal
|
|
892
|
+
*/
|
|
893
|
+
export declare const UpdateSuiteDefinitionResponseFilterSensitiveLog: (obj: UpdateSuiteDefinitionResponse) => any;
|