@aws-sdk/client-iotdeviceadvisor 3.378.0 → 3.382.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.
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
2
5
|
export interface ClientInputEndpointParameters {
|
|
3
6
|
region?: string | Provider<string>;
|
|
4
7
|
useDualstackEndpoint?: boolean | Provider<boolean>;
|
package/dist-types/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
export * from "./IotDeviceAdvisorClient";
|
|
15
15
|
export * from "./IotDeviceAdvisor";
|
|
16
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
16
17
|
export * from "./commands";
|
|
17
18
|
export * from "./pagination";
|
|
18
19
|
export * from "./models";
|
|
@@ -31,14 +31,17 @@ export declare class ConflictException extends __BaseException {
|
|
|
31
31
|
*/
|
|
32
32
|
export interface DeviceUnderTest {
|
|
33
33
|
/**
|
|
34
|
+
* @public
|
|
34
35
|
* <p>Lists device's thing ARN.</p>
|
|
35
36
|
*/
|
|
36
37
|
thingArn?: string;
|
|
37
38
|
/**
|
|
39
|
+
* @public
|
|
38
40
|
* <p>Lists device's certificate ARN.</p>
|
|
39
41
|
*/
|
|
40
42
|
certificateArn?: string;
|
|
41
43
|
/**
|
|
44
|
+
* @public
|
|
42
45
|
* <p>Lists device's role ARN.</p>
|
|
43
46
|
*/
|
|
44
47
|
deviceRoleArn?: string;
|
|
@@ -63,22 +66,27 @@ export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
|
63
66
|
*/
|
|
64
67
|
export interface SuiteDefinitionConfiguration {
|
|
65
68
|
/**
|
|
69
|
+
* @public
|
|
66
70
|
* <p>Gets the suite definition name. This is a required parameter.</p>
|
|
67
71
|
*/
|
|
68
72
|
suiteDefinitionName: string | undefined;
|
|
69
73
|
/**
|
|
74
|
+
* @public
|
|
70
75
|
* <p>Gets the devices configured.</p>
|
|
71
76
|
*/
|
|
72
77
|
devices?: DeviceUnderTest[];
|
|
73
78
|
/**
|
|
79
|
+
* @public
|
|
74
80
|
* <p>Gets the tests intended for qualification in a suite.</p>
|
|
75
81
|
*/
|
|
76
82
|
intendedForQualification?: boolean;
|
|
77
83
|
/**
|
|
84
|
+
* @public
|
|
78
85
|
* <p>Verifies if the test suite is a long duration test.</p>
|
|
79
86
|
*/
|
|
80
87
|
isLongDurationTest?: boolean;
|
|
81
88
|
/**
|
|
89
|
+
* @public
|
|
82
90
|
* <p>Gets the test suite root group. This is a required parameter.
|
|
83
91
|
* For updating or creating the latest qualification suite,
|
|
84
92
|
* if <code>intendedForQualification</code> is set to true,
|
|
@@ -94,10 +102,12 @@ export interface SuiteDefinitionConfiguration {
|
|
|
94
102
|
*/
|
|
95
103
|
rootGroup: string | undefined;
|
|
96
104
|
/**
|
|
105
|
+
* @public
|
|
97
106
|
* <p>Gets the device permission ARN. This is a required parameter.</p>
|
|
98
107
|
*/
|
|
99
108
|
devicePermissionRoleArn: string | undefined;
|
|
100
109
|
/**
|
|
110
|
+
* @public
|
|
101
111
|
* <p>Sets the MQTT protocol that is configured in the suite definition.</p>
|
|
102
112
|
*/
|
|
103
113
|
protocol?: Protocol | string;
|
|
@@ -107,10 +117,12 @@ export interface SuiteDefinitionConfiguration {
|
|
|
107
117
|
*/
|
|
108
118
|
export interface CreateSuiteDefinitionRequest {
|
|
109
119
|
/**
|
|
120
|
+
* @public
|
|
110
121
|
* <p>Creates a Device Advisor test suite with suite definition configuration.</p>
|
|
111
122
|
*/
|
|
112
123
|
suiteDefinitionConfiguration: SuiteDefinitionConfiguration | undefined;
|
|
113
124
|
/**
|
|
125
|
+
* @public
|
|
114
126
|
* <p>The tags to be attached to the suite definition.</p>
|
|
115
127
|
*/
|
|
116
128
|
tags?: Record<string, string>;
|
|
@@ -120,18 +132,22 @@ export interface CreateSuiteDefinitionRequest {
|
|
|
120
132
|
*/
|
|
121
133
|
export interface CreateSuiteDefinitionResponse {
|
|
122
134
|
/**
|
|
135
|
+
* @public
|
|
123
136
|
* <p>The UUID of the test suite created.</p>
|
|
124
137
|
*/
|
|
125
138
|
suiteDefinitionId?: string;
|
|
126
139
|
/**
|
|
140
|
+
* @public
|
|
127
141
|
* <p>The Amazon Resource Name (ARN) of the test suite.</p>
|
|
128
142
|
*/
|
|
129
143
|
suiteDefinitionArn?: string;
|
|
130
144
|
/**
|
|
145
|
+
* @public
|
|
131
146
|
* <p>The suite definition name of the test suite. This is a required parameter.</p>
|
|
132
147
|
*/
|
|
133
148
|
suiteDefinitionName?: string;
|
|
134
149
|
/**
|
|
150
|
+
* @public
|
|
135
151
|
* <p>The timestamp of when the test suite was created.</p>
|
|
136
152
|
*/
|
|
137
153
|
createdAt?: Date;
|
|
@@ -165,6 +181,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
165
181
|
*/
|
|
166
182
|
export interface DeleteSuiteDefinitionRequest {
|
|
167
183
|
/**
|
|
184
|
+
* @public
|
|
168
185
|
* <p>Suite definition ID of the test suite to be deleted.</p>
|
|
169
186
|
*/
|
|
170
187
|
suiteDefinitionId: string | undefined;
|
|
@@ -179,18 +196,22 @@ export interface DeleteSuiteDefinitionResponse {
|
|
|
179
196
|
*/
|
|
180
197
|
export interface GetEndpointRequest {
|
|
181
198
|
/**
|
|
199
|
+
* @public
|
|
182
200
|
* <p>The thing ARN of the device. This is an optional parameter.</p>
|
|
183
201
|
*/
|
|
184
202
|
thingArn?: string;
|
|
185
203
|
/**
|
|
204
|
+
* @public
|
|
186
205
|
* <p>The certificate ARN of the device. This is an optional parameter.</p>
|
|
187
206
|
*/
|
|
188
207
|
certificateArn?: string;
|
|
189
208
|
/**
|
|
209
|
+
* @public
|
|
190
210
|
* <p>The device role ARN of the device. This is an optional parameter.</p>
|
|
191
211
|
*/
|
|
192
212
|
deviceRoleArn?: string;
|
|
193
213
|
/**
|
|
214
|
+
* @public
|
|
194
215
|
* <p>The authentication method used during the device connection.</p>
|
|
195
216
|
*/
|
|
196
217
|
authenticationMethod?: AuthenticationMethod | string;
|
|
@@ -200,6 +221,7 @@ export interface GetEndpointRequest {
|
|
|
200
221
|
*/
|
|
201
222
|
export interface GetEndpointResponse {
|
|
202
223
|
/**
|
|
224
|
+
* @public
|
|
203
225
|
* <p>The response of an Device Advisor endpoint.</p>
|
|
204
226
|
*/
|
|
205
227
|
endpoint?: string;
|
|
@@ -221,10 +243,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
221
243
|
*/
|
|
222
244
|
export interface GetSuiteDefinitionRequest {
|
|
223
245
|
/**
|
|
246
|
+
* @public
|
|
224
247
|
* <p>Suite definition ID of the test suite to get.</p>
|
|
225
248
|
*/
|
|
226
249
|
suiteDefinitionId: string | undefined;
|
|
227
250
|
/**
|
|
251
|
+
* @public
|
|
228
252
|
* <p>Suite definition version of the test suite to get.</p>
|
|
229
253
|
*/
|
|
230
254
|
suiteDefinitionVersion?: string;
|
|
@@ -234,34 +258,42 @@ export interface GetSuiteDefinitionRequest {
|
|
|
234
258
|
*/
|
|
235
259
|
export interface GetSuiteDefinitionResponse {
|
|
236
260
|
/**
|
|
261
|
+
* @public
|
|
237
262
|
* <p>Suite definition ID of the suite definition.</p>
|
|
238
263
|
*/
|
|
239
264
|
suiteDefinitionId?: string;
|
|
240
265
|
/**
|
|
266
|
+
* @public
|
|
241
267
|
* <p>The ARN of the suite definition.</p>
|
|
242
268
|
*/
|
|
243
269
|
suiteDefinitionArn?: string;
|
|
244
270
|
/**
|
|
271
|
+
* @public
|
|
245
272
|
* <p>Suite definition version of the suite definition.</p>
|
|
246
273
|
*/
|
|
247
274
|
suiteDefinitionVersion?: string;
|
|
248
275
|
/**
|
|
276
|
+
* @public
|
|
249
277
|
* <p>Latest suite definition version of the suite definition.</p>
|
|
250
278
|
*/
|
|
251
279
|
latestVersion?: string;
|
|
252
280
|
/**
|
|
281
|
+
* @public
|
|
253
282
|
* <p>Suite configuration of the suite definition.</p>
|
|
254
283
|
*/
|
|
255
284
|
suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
|
|
256
285
|
/**
|
|
286
|
+
* @public
|
|
257
287
|
* <p>Date (in Unix epoch time) when the suite definition was created.</p>
|
|
258
288
|
*/
|
|
259
289
|
createdAt?: Date;
|
|
260
290
|
/**
|
|
291
|
+
* @public
|
|
261
292
|
* <p>Date (in Unix epoch time) when the suite definition was last modified.</p>
|
|
262
293
|
*/
|
|
263
294
|
lastModifiedAt?: Date;
|
|
264
295
|
/**
|
|
296
|
+
* @public
|
|
265
297
|
* <p>Tags attached to the suite definition.</p>
|
|
266
298
|
*/
|
|
267
299
|
tags?: Record<string, string>;
|
|
@@ -271,10 +303,12 @@ export interface GetSuiteDefinitionResponse {
|
|
|
271
303
|
*/
|
|
272
304
|
export interface GetSuiteRunRequest {
|
|
273
305
|
/**
|
|
306
|
+
* @public
|
|
274
307
|
* <p>Suite definition ID for the test suite run.</p>
|
|
275
308
|
*/
|
|
276
309
|
suiteDefinitionId: string | undefined;
|
|
277
310
|
/**
|
|
311
|
+
* @public
|
|
278
312
|
* <p>Suite run ID for the test suite run.</p>
|
|
279
313
|
*/
|
|
280
314
|
suiteRunId: string | undefined;
|
|
@@ -304,15 +338,18 @@ export type SuiteRunStatus = (typeof SuiteRunStatus)[keyof typeof SuiteRunStatus
|
|
|
304
338
|
*/
|
|
305
339
|
export interface SuiteRunConfiguration {
|
|
306
340
|
/**
|
|
341
|
+
* @public
|
|
307
342
|
* <p>Sets the primary device for the test suite run. This requires a thing ARN or a
|
|
308
343
|
* certificate ARN.</p>
|
|
309
344
|
*/
|
|
310
345
|
primaryDevice: DeviceUnderTest | undefined;
|
|
311
346
|
/**
|
|
347
|
+
* @public
|
|
312
348
|
* <p>Sets test case list.</p>
|
|
313
349
|
*/
|
|
314
350
|
selectedTestList?: string[];
|
|
315
351
|
/**
|
|
352
|
+
* @public
|
|
316
353
|
* <p>TRUE if multiple test suites run in parallel.</p>
|
|
317
354
|
*/
|
|
318
355
|
parallelRun?: boolean;
|
|
@@ -373,10 +410,12 @@ export type TestCaseScenarioType = (typeof TestCaseScenarioType)[keyof typeof Te
|
|
|
373
410
|
*/
|
|
374
411
|
export interface TestCaseScenario {
|
|
375
412
|
/**
|
|
413
|
+
* @public
|
|
376
414
|
* <p>Provides test case scenario ID.</p>
|
|
377
415
|
*/
|
|
378
416
|
testCaseScenarioId?: string;
|
|
379
417
|
/**
|
|
418
|
+
* @public
|
|
380
419
|
* <p>Provides test case scenario type. Type is one of the following:</p>
|
|
381
420
|
* <ul>
|
|
382
421
|
* <li>
|
|
@@ -389,6 +428,7 @@ export interface TestCaseScenario {
|
|
|
389
428
|
*/
|
|
390
429
|
testCaseScenarioType?: TestCaseScenarioType | string;
|
|
391
430
|
/**
|
|
431
|
+
* @public
|
|
392
432
|
* <p>Provides the test case scenario status. Status is one of the following:</p>
|
|
393
433
|
* <ul>
|
|
394
434
|
* <li>
|
|
@@ -430,10 +470,12 @@ export interface TestCaseScenario {
|
|
|
430
470
|
*/
|
|
431
471
|
status?: TestCaseScenarioStatus | string;
|
|
432
472
|
/**
|
|
473
|
+
* @public
|
|
433
474
|
* <p>Provides test case scenario failure result.</p>
|
|
434
475
|
*/
|
|
435
476
|
failure?: string;
|
|
436
477
|
/**
|
|
478
|
+
* @public
|
|
437
479
|
* <p>Provides test case scenario system messages if any.</p>
|
|
438
480
|
*/
|
|
439
481
|
systemMessage?: string;
|
|
@@ -444,18 +486,22 @@ export interface TestCaseScenario {
|
|
|
444
486
|
*/
|
|
445
487
|
export interface TestCaseRun {
|
|
446
488
|
/**
|
|
489
|
+
* @public
|
|
447
490
|
* <p>Provides the test case run ID.</p>
|
|
448
491
|
*/
|
|
449
492
|
testCaseRunId?: string;
|
|
450
493
|
/**
|
|
494
|
+
* @public
|
|
451
495
|
* <p>Provides the test case run definition ID.</p>
|
|
452
496
|
*/
|
|
453
497
|
testCaseDefinitionId?: string;
|
|
454
498
|
/**
|
|
499
|
+
* @public
|
|
455
500
|
* <p>Provides the test case run definition name.</p>
|
|
456
501
|
*/
|
|
457
502
|
testCaseDefinitionName?: string;
|
|
458
503
|
/**
|
|
504
|
+
* @public
|
|
459
505
|
* <p>Provides the test case run status. Status is one of the following:</p>
|
|
460
506
|
* <ul>
|
|
461
507
|
* <li>
|
|
@@ -497,26 +543,32 @@ export interface TestCaseRun {
|
|
|
497
543
|
*/
|
|
498
544
|
status?: Status | string;
|
|
499
545
|
/**
|
|
546
|
+
* @public
|
|
500
547
|
* <p>Provides test case run start time.</p>
|
|
501
548
|
*/
|
|
502
549
|
startTime?: Date;
|
|
503
550
|
/**
|
|
551
|
+
* @public
|
|
504
552
|
* <p>Provides test case run end time.</p>
|
|
505
553
|
*/
|
|
506
554
|
endTime?: Date;
|
|
507
555
|
/**
|
|
556
|
+
* @public
|
|
508
557
|
* <p>Provides test case run log URL.</p>
|
|
509
558
|
*/
|
|
510
559
|
logUrl?: string;
|
|
511
560
|
/**
|
|
561
|
+
* @public
|
|
512
562
|
* <p>Provides test case run warnings.</p>
|
|
513
563
|
*/
|
|
514
564
|
warnings?: string;
|
|
515
565
|
/**
|
|
566
|
+
* @public
|
|
516
567
|
* <p>Provides test case run failure result.</p>
|
|
517
568
|
*/
|
|
518
569
|
failure?: string;
|
|
519
570
|
/**
|
|
571
|
+
* @public
|
|
520
572
|
* <p> Provides the test scenarios for the test case run. </p>
|
|
521
573
|
*/
|
|
522
574
|
testScenarios?: TestCaseScenario[];
|
|
@@ -527,14 +579,17 @@ export interface TestCaseRun {
|
|
|
527
579
|
*/
|
|
528
580
|
export interface GroupResult {
|
|
529
581
|
/**
|
|
582
|
+
* @public
|
|
530
583
|
* <p>Group result ID.</p>
|
|
531
584
|
*/
|
|
532
585
|
groupId?: string;
|
|
533
586
|
/**
|
|
587
|
+
* @public
|
|
534
588
|
* <p>Group Result Name.</p>
|
|
535
589
|
*/
|
|
536
590
|
groupName?: string;
|
|
537
591
|
/**
|
|
592
|
+
* @public
|
|
538
593
|
* <p>Tests under Group Result.</p>
|
|
539
594
|
*/
|
|
540
595
|
tests?: TestCaseRun[];
|
|
@@ -545,6 +600,7 @@ export interface GroupResult {
|
|
|
545
600
|
*/
|
|
546
601
|
export interface TestResult {
|
|
547
602
|
/**
|
|
603
|
+
* @public
|
|
548
604
|
* <p>Show each group of test results.</p>
|
|
549
605
|
*/
|
|
550
606
|
groups?: GroupResult[];
|
|
@@ -554,46 +610,57 @@ export interface TestResult {
|
|
|
554
610
|
*/
|
|
555
611
|
export interface GetSuiteRunResponse {
|
|
556
612
|
/**
|
|
613
|
+
* @public
|
|
557
614
|
* <p>Suite definition ID for the test suite run.</p>
|
|
558
615
|
*/
|
|
559
616
|
suiteDefinitionId?: string;
|
|
560
617
|
/**
|
|
618
|
+
* @public
|
|
561
619
|
* <p>Suite definition version for the test suite run.</p>
|
|
562
620
|
*/
|
|
563
621
|
suiteDefinitionVersion?: string;
|
|
564
622
|
/**
|
|
623
|
+
* @public
|
|
565
624
|
* <p>Suite run ID for the test suite run.</p>
|
|
566
625
|
*/
|
|
567
626
|
suiteRunId?: string;
|
|
568
627
|
/**
|
|
628
|
+
* @public
|
|
569
629
|
* <p>The ARN of the suite run.</p>
|
|
570
630
|
*/
|
|
571
631
|
suiteRunArn?: string;
|
|
572
632
|
/**
|
|
633
|
+
* @public
|
|
573
634
|
* <p>Suite run configuration for the test suite run.</p>
|
|
574
635
|
*/
|
|
575
636
|
suiteRunConfiguration?: SuiteRunConfiguration;
|
|
576
637
|
/**
|
|
638
|
+
* @public
|
|
577
639
|
* <p>Test results for the test suite run.</p>
|
|
578
640
|
*/
|
|
579
641
|
testResult?: TestResult;
|
|
580
642
|
/**
|
|
643
|
+
* @public
|
|
581
644
|
* <p>Date (in Unix epoch time) when the test suite run started.</p>
|
|
582
645
|
*/
|
|
583
646
|
startTime?: Date;
|
|
584
647
|
/**
|
|
648
|
+
* @public
|
|
585
649
|
* <p>Date (in Unix epoch time) when the test suite run ended.</p>
|
|
586
650
|
*/
|
|
587
651
|
endTime?: Date;
|
|
588
652
|
/**
|
|
653
|
+
* @public
|
|
589
654
|
* <p>Status for the test suite run.</p>
|
|
590
655
|
*/
|
|
591
656
|
status?: SuiteRunStatus | string;
|
|
592
657
|
/**
|
|
658
|
+
* @public
|
|
593
659
|
* <p>Error reason for any test suite run failure.</p>
|
|
594
660
|
*/
|
|
595
661
|
errorReason?: string;
|
|
596
662
|
/**
|
|
663
|
+
* @public
|
|
597
664
|
* <p>The tags attached to the suite run.</p>
|
|
598
665
|
*/
|
|
599
666
|
tags?: Record<string, string>;
|
|
@@ -603,10 +670,12 @@ export interface GetSuiteRunResponse {
|
|
|
603
670
|
*/
|
|
604
671
|
export interface GetSuiteRunReportRequest {
|
|
605
672
|
/**
|
|
673
|
+
* @public
|
|
606
674
|
* <p>Suite definition ID of the test suite.</p>
|
|
607
675
|
*/
|
|
608
676
|
suiteDefinitionId: string | undefined;
|
|
609
677
|
/**
|
|
678
|
+
* @public
|
|
610
679
|
* <p>Suite run ID of the test suite run.</p>
|
|
611
680
|
*/
|
|
612
681
|
suiteRunId: string | undefined;
|
|
@@ -616,6 +685,7 @@ export interface GetSuiteRunReportRequest {
|
|
|
616
685
|
*/
|
|
617
686
|
export interface GetSuiteRunReportResponse {
|
|
618
687
|
/**
|
|
688
|
+
* @public
|
|
619
689
|
* <p>Download URL of the qualification report.</p>
|
|
620
690
|
*/
|
|
621
691
|
qualificationReportDownloadUrl?: string;
|
|
@@ -625,10 +695,12 @@ export interface GetSuiteRunReportResponse {
|
|
|
625
695
|
*/
|
|
626
696
|
export interface ListSuiteDefinitionsRequest {
|
|
627
697
|
/**
|
|
698
|
+
* @public
|
|
628
699
|
* <p>The maximum number of results to return at once.</p>
|
|
629
700
|
*/
|
|
630
701
|
maxResults?: number;
|
|
631
702
|
/**
|
|
703
|
+
* @public
|
|
632
704
|
* <p>A token used to get the next set of results.</p>
|
|
633
705
|
*/
|
|
634
706
|
nextToken?: string;
|
|
@@ -639,30 +711,37 @@ export interface ListSuiteDefinitionsRequest {
|
|
|
639
711
|
*/
|
|
640
712
|
export interface SuiteDefinitionInformation {
|
|
641
713
|
/**
|
|
714
|
+
* @public
|
|
642
715
|
* <p>Suite definition ID of the test suite.</p>
|
|
643
716
|
*/
|
|
644
717
|
suiteDefinitionId?: string;
|
|
645
718
|
/**
|
|
719
|
+
* @public
|
|
646
720
|
* <p>Suite name of the test suite.</p>
|
|
647
721
|
*/
|
|
648
722
|
suiteDefinitionName?: string;
|
|
649
723
|
/**
|
|
724
|
+
* @public
|
|
650
725
|
* <p>Specifies the devices that are under test for the test suite.</p>
|
|
651
726
|
*/
|
|
652
727
|
defaultDevices?: DeviceUnderTest[];
|
|
653
728
|
/**
|
|
729
|
+
* @public
|
|
654
730
|
* <p>Specifies if the test suite is intended for qualification.</p>
|
|
655
731
|
*/
|
|
656
732
|
intendedForQualification?: boolean;
|
|
657
733
|
/**
|
|
734
|
+
* @public
|
|
658
735
|
* <p>Verifies if the test suite is a long duration test.</p>
|
|
659
736
|
*/
|
|
660
737
|
isLongDurationTest?: boolean;
|
|
661
738
|
/**
|
|
739
|
+
* @public
|
|
662
740
|
* <p>Gets the MQTT protocol that is configured in the suite definition.</p>
|
|
663
741
|
*/
|
|
664
742
|
protocol?: Protocol | string;
|
|
665
743
|
/**
|
|
744
|
+
* @public
|
|
666
745
|
* <p>Date (in Unix epoch time) when the test suite was created.</p>
|
|
667
746
|
*/
|
|
668
747
|
createdAt?: Date;
|
|
@@ -672,11 +751,13 @@ export interface SuiteDefinitionInformation {
|
|
|
672
751
|
*/
|
|
673
752
|
export interface ListSuiteDefinitionsResponse {
|
|
674
753
|
/**
|
|
754
|
+
* @public
|
|
675
755
|
* <p>An array of objects that provide summaries of information about the suite definitions
|
|
676
756
|
* in the list.</p>
|
|
677
757
|
*/
|
|
678
758
|
suiteDefinitionInformationList?: SuiteDefinitionInformation[];
|
|
679
759
|
/**
|
|
760
|
+
* @public
|
|
680
761
|
* <p>A token used to get the next set of results.</p>
|
|
681
762
|
*/
|
|
682
763
|
nextToken?: string;
|
|
@@ -686,20 +767,24 @@ export interface ListSuiteDefinitionsResponse {
|
|
|
686
767
|
*/
|
|
687
768
|
export interface ListSuiteRunsRequest {
|
|
688
769
|
/**
|
|
770
|
+
* @public
|
|
689
771
|
* <p>Lists the test suite runs of the specified test suite based on suite definition
|
|
690
772
|
* ID.</p>
|
|
691
773
|
*/
|
|
692
774
|
suiteDefinitionId?: string;
|
|
693
775
|
/**
|
|
776
|
+
* @public
|
|
694
777
|
* <p>Must be passed along with <code>suiteDefinitionId</code>. Lists the test suite runs of
|
|
695
778
|
* the specified test suite based on suite definition version.</p>
|
|
696
779
|
*/
|
|
697
780
|
suiteDefinitionVersion?: string;
|
|
698
781
|
/**
|
|
782
|
+
* @public
|
|
699
783
|
* <p>The maximum number of results to return at once.</p>
|
|
700
784
|
*/
|
|
701
785
|
maxResults?: number;
|
|
702
786
|
/**
|
|
787
|
+
* @public
|
|
703
788
|
* <p>A token to retrieve the next set of results.</p>
|
|
704
789
|
*/
|
|
705
790
|
nextToken?: string;
|
|
@@ -711,42 +796,52 @@ export interface ListSuiteRunsRequest {
|
|
|
711
796
|
*/
|
|
712
797
|
export interface SuiteRunInformation {
|
|
713
798
|
/**
|
|
799
|
+
* @public
|
|
714
800
|
* <p>Suite definition ID of the suite run.</p>
|
|
715
801
|
*/
|
|
716
802
|
suiteDefinitionId?: string;
|
|
717
803
|
/**
|
|
804
|
+
* @public
|
|
718
805
|
* <p>Suite definition version of the suite run.</p>
|
|
719
806
|
*/
|
|
720
807
|
suiteDefinitionVersion?: string;
|
|
721
808
|
/**
|
|
809
|
+
* @public
|
|
722
810
|
* <p>Suite definition name of the suite run.</p>
|
|
723
811
|
*/
|
|
724
812
|
suiteDefinitionName?: string;
|
|
725
813
|
/**
|
|
814
|
+
* @public
|
|
726
815
|
* <p>Suite run ID of the suite run.</p>
|
|
727
816
|
*/
|
|
728
817
|
suiteRunId?: string;
|
|
729
818
|
/**
|
|
819
|
+
* @public
|
|
730
820
|
* <p>Date (in Unix epoch time) when the suite run was created.</p>
|
|
731
821
|
*/
|
|
732
822
|
createdAt?: Date;
|
|
733
823
|
/**
|
|
824
|
+
* @public
|
|
734
825
|
* <p>Date (in Unix epoch time) when the suite run was started.</p>
|
|
735
826
|
*/
|
|
736
827
|
startedAt?: Date;
|
|
737
828
|
/**
|
|
829
|
+
* @public
|
|
738
830
|
* <p>Date (in Unix epoch time) when the suite run ended.</p>
|
|
739
831
|
*/
|
|
740
832
|
endAt?: Date;
|
|
741
833
|
/**
|
|
834
|
+
* @public
|
|
742
835
|
* <p>Status of the suite run.</p>
|
|
743
836
|
*/
|
|
744
837
|
status?: SuiteRunStatus | string;
|
|
745
838
|
/**
|
|
839
|
+
* @public
|
|
746
840
|
* <p>Number of test cases that passed in the suite run.</p>
|
|
747
841
|
*/
|
|
748
842
|
passed?: number;
|
|
749
843
|
/**
|
|
844
|
+
* @public
|
|
750
845
|
* <p>Number of test cases that failed in the suite run.</p>
|
|
751
846
|
*/
|
|
752
847
|
failed?: number;
|
|
@@ -756,11 +851,13 @@ export interface SuiteRunInformation {
|
|
|
756
851
|
*/
|
|
757
852
|
export interface ListSuiteRunsResponse {
|
|
758
853
|
/**
|
|
854
|
+
* @public
|
|
759
855
|
* <p>An array of objects that provide summaries of information about the suite runs in the
|
|
760
856
|
* list.</p>
|
|
761
857
|
*/
|
|
762
858
|
suiteRunsList?: SuiteRunInformation[];
|
|
763
859
|
/**
|
|
860
|
+
* @public
|
|
764
861
|
* <p>A token to retrieve the next set of results.</p>
|
|
765
862
|
*/
|
|
766
863
|
nextToken?: string;
|
|
@@ -770,6 +867,7 @@ export interface ListSuiteRunsResponse {
|
|
|
770
867
|
*/
|
|
771
868
|
export interface ListTagsForResourceRequest {
|
|
772
869
|
/**
|
|
870
|
+
* @public
|
|
773
871
|
* <p>The resource ARN of the IoT Device Advisor resource. This can be SuiteDefinition ARN or
|
|
774
872
|
* SuiteRun ARN.</p>
|
|
775
873
|
*/
|
|
@@ -780,6 +878,7 @@ export interface ListTagsForResourceRequest {
|
|
|
780
878
|
*/
|
|
781
879
|
export interface ListTagsForResourceResponse {
|
|
782
880
|
/**
|
|
881
|
+
* @public
|
|
783
882
|
* <p>The tags attached to the IoT Device Advisor resource.</p>
|
|
784
883
|
*/
|
|
785
884
|
tags?: Record<string, string>;
|
|
@@ -789,18 +888,22 @@ export interface ListTagsForResourceResponse {
|
|
|
789
888
|
*/
|
|
790
889
|
export interface StartSuiteRunRequest {
|
|
791
890
|
/**
|
|
891
|
+
* @public
|
|
792
892
|
* <p>Suite definition ID of the test suite.</p>
|
|
793
893
|
*/
|
|
794
894
|
suiteDefinitionId: string | undefined;
|
|
795
895
|
/**
|
|
896
|
+
* @public
|
|
796
897
|
* <p>Suite definition version of the test suite.</p>
|
|
797
898
|
*/
|
|
798
899
|
suiteDefinitionVersion?: string;
|
|
799
900
|
/**
|
|
901
|
+
* @public
|
|
800
902
|
* <p>Suite run configuration.</p>
|
|
801
903
|
*/
|
|
802
904
|
suiteRunConfiguration: SuiteRunConfiguration | undefined;
|
|
803
905
|
/**
|
|
906
|
+
* @public
|
|
804
907
|
* <p>The tags to be attached to the suite run.</p>
|
|
805
908
|
*/
|
|
806
909
|
tags?: Record<string, string>;
|
|
@@ -810,18 +913,22 @@ export interface StartSuiteRunRequest {
|
|
|
810
913
|
*/
|
|
811
914
|
export interface StartSuiteRunResponse {
|
|
812
915
|
/**
|
|
916
|
+
* @public
|
|
813
917
|
* <p>Suite Run ID of the started suite run.</p>
|
|
814
918
|
*/
|
|
815
919
|
suiteRunId?: string;
|
|
816
920
|
/**
|
|
921
|
+
* @public
|
|
817
922
|
* <p>Amazon Resource Name (ARN) of the started suite run.</p>
|
|
818
923
|
*/
|
|
819
924
|
suiteRunArn?: string;
|
|
820
925
|
/**
|
|
926
|
+
* @public
|
|
821
927
|
* <p>Starts a Device Advisor test suite run based on suite create time.</p>
|
|
822
928
|
*/
|
|
823
929
|
createdAt?: Date;
|
|
824
930
|
/**
|
|
931
|
+
* @public
|
|
825
932
|
* <p>The response of an Device Advisor test endpoint.</p>
|
|
826
933
|
*/
|
|
827
934
|
endpoint?: string;
|
|
@@ -831,10 +938,12 @@ export interface StartSuiteRunResponse {
|
|
|
831
938
|
*/
|
|
832
939
|
export interface StopSuiteRunRequest {
|
|
833
940
|
/**
|
|
941
|
+
* @public
|
|
834
942
|
* <p>Suite definition ID of the test suite run to be stopped.</p>
|
|
835
943
|
*/
|
|
836
944
|
suiteDefinitionId: string | undefined;
|
|
837
945
|
/**
|
|
946
|
+
* @public
|
|
838
947
|
* <p>Suite run ID of the test suite run to be stopped.</p>
|
|
839
948
|
*/
|
|
840
949
|
suiteRunId: string | undefined;
|
|
@@ -849,11 +958,13 @@ export interface StopSuiteRunResponse {
|
|
|
849
958
|
*/
|
|
850
959
|
export interface TagResourceRequest {
|
|
851
960
|
/**
|
|
961
|
+
* @public
|
|
852
962
|
* <p>The resource ARN of an IoT Device Advisor resource. This can be SuiteDefinition ARN or
|
|
853
963
|
* SuiteRun ARN.</p>
|
|
854
964
|
*/
|
|
855
965
|
resourceArn: string | undefined;
|
|
856
966
|
/**
|
|
967
|
+
* @public
|
|
857
968
|
* <p>The tags to be attached to the IoT Device Advisor resource.</p>
|
|
858
969
|
*/
|
|
859
970
|
tags: Record<string, string> | undefined;
|
|
@@ -868,11 +979,13 @@ export interface TagResourceResponse {
|
|
|
868
979
|
*/
|
|
869
980
|
export interface UntagResourceRequest {
|
|
870
981
|
/**
|
|
982
|
+
* @public
|
|
871
983
|
* <p>The resource ARN of an IoT Device Advisor resource. This can be SuiteDefinition ARN or
|
|
872
984
|
* SuiteRun ARN.</p>
|
|
873
985
|
*/
|
|
874
986
|
resourceArn: string | undefined;
|
|
875
987
|
/**
|
|
988
|
+
* @public
|
|
876
989
|
* <p>List of tag keys to remove from the IoT Device Advisor resource.</p>
|
|
877
990
|
*/
|
|
878
991
|
tagKeys: string[] | undefined;
|
|
@@ -887,10 +1000,12 @@ export interface UntagResourceResponse {
|
|
|
887
1000
|
*/
|
|
888
1001
|
export interface UpdateSuiteDefinitionRequest {
|
|
889
1002
|
/**
|
|
1003
|
+
* @public
|
|
890
1004
|
* <p>Suite definition ID of the test suite to be updated.</p>
|
|
891
1005
|
*/
|
|
892
1006
|
suiteDefinitionId: string | undefined;
|
|
893
1007
|
/**
|
|
1008
|
+
* @public
|
|
894
1009
|
* <p>Updates a Device Advisor test suite with suite definition configuration.</p>
|
|
895
1010
|
*/
|
|
896
1011
|
suiteDefinitionConfiguration: SuiteDefinitionConfiguration | undefined;
|
|
@@ -900,26 +1015,32 @@ export interface UpdateSuiteDefinitionRequest {
|
|
|
900
1015
|
*/
|
|
901
1016
|
export interface UpdateSuiteDefinitionResponse {
|
|
902
1017
|
/**
|
|
1018
|
+
* @public
|
|
903
1019
|
* <p>Suite definition ID of the updated test suite.</p>
|
|
904
1020
|
*/
|
|
905
1021
|
suiteDefinitionId?: string;
|
|
906
1022
|
/**
|
|
1023
|
+
* @public
|
|
907
1024
|
* <p>Amazon Resource Name (ARN) of the updated test suite.</p>
|
|
908
1025
|
*/
|
|
909
1026
|
suiteDefinitionArn?: string;
|
|
910
1027
|
/**
|
|
1028
|
+
* @public
|
|
911
1029
|
* <p>Updates the suite definition name. This is a required parameter.</p>
|
|
912
1030
|
*/
|
|
913
1031
|
suiteDefinitionName?: string;
|
|
914
1032
|
/**
|
|
1033
|
+
* @public
|
|
915
1034
|
* <p>Suite definition version of the updated test suite.</p>
|
|
916
1035
|
*/
|
|
917
1036
|
suiteDefinitionVersion?: string;
|
|
918
1037
|
/**
|
|
1038
|
+
* @public
|
|
919
1039
|
* <p>Timestamp of when the test suite was created.</p>
|
|
920
1040
|
*/
|
|
921
1041
|
createdAt?: Date;
|
|
922
1042
|
/**
|
|
1043
|
+
* @public
|
|
923
1044
|
* <p>Timestamp of when the test suite was updated.</p>
|
|
924
1045
|
*/
|
|
925
1046
|
lastUpdatedAt?: Date;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotdeviceadvisor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotdeviceadvisor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.382.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.382.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.382.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|