@aws-sdk/client-iotdeviceadvisor 3.136.0 → 3.137.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 +11 -0
- 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 +149 -223
- 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 +37 -148
- package/dist-types/models/models_0.d.ts +148 -222
- package/dist-types/ts3.4/models/models_0.d.ts +74 -148
- package/package.json +6 -6
|
@@ -24,12 +24,6 @@ export interface DeviceUnderTest {
|
|
|
24
24
|
*/
|
|
25
25
|
certificateArn?: string;
|
|
26
26
|
}
|
|
27
|
-
export declare namespace DeviceUnderTest {
|
|
28
|
-
/**
|
|
29
|
-
* @internal
|
|
30
|
-
*/
|
|
31
|
-
const filterSensitiveLog: (obj: DeviceUnderTest) => any;
|
|
32
|
-
}
|
|
33
27
|
export declare enum Protocol {
|
|
34
28
|
MqttV3_1_1 = "MqttV3_1_1",
|
|
35
29
|
MqttV5 = "MqttV5"
|
|
@@ -67,12 +61,6 @@ export interface SuiteDefinitionConfiguration {
|
|
|
67
61
|
*/
|
|
68
62
|
protocol?: Protocol | string;
|
|
69
63
|
}
|
|
70
|
-
export declare namespace SuiteDefinitionConfiguration {
|
|
71
|
-
/**
|
|
72
|
-
* @internal
|
|
73
|
-
*/
|
|
74
|
-
const filterSensitiveLog: (obj: SuiteDefinitionConfiguration) => any;
|
|
75
|
-
}
|
|
76
64
|
export interface CreateSuiteDefinitionRequest {
|
|
77
65
|
/**
|
|
78
66
|
* <p>Creates a Device Advisor test suite with suite definition configuration.</p>
|
|
@@ -83,12 +71,6 @@ export interface CreateSuiteDefinitionRequest {
|
|
|
83
71
|
*/
|
|
84
72
|
tags?: Record<string, string>;
|
|
85
73
|
}
|
|
86
|
-
export declare namespace CreateSuiteDefinitionRequest {
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
const filterSensitiveLog: (obj: CreateSuiteDefinitionRequest) => any;
|
|
91
|
-
}
|
|
92
74
|
export interface CreateSuiteDefinitionResponse {
|
|
93
75
|
/**
|
|
94
76
|
* <p>Creates a Device Advisor test suite with suite UUID.</p>
|
|
@@ -107,12 +89,6 @@ export interface CreateSuiteDefinitionResponse {
|
|
|
107
89
|
*/
|
|
108
90
|
createdAt?: Date;
|
|
109
91
|
}
|
|
110
|
-
export declare namespace CreateSuiteDefinitionResponse {
|
|
111
|
-
/**
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
const filterSensitiveLog: (obj: CreateSuiteDefinitionResponse) => any;
|
|
115
|
-
}
|
|
116
92
|
/**
|
|
117
93
|
* <p>Sends an Internal Failure exception.</p>
|
|
118
94
|
*/
|
|
@@ -141,20 +117,8 @@ export interface DeleteSuiteDefinitionRequest {
|
|
|
141
117
|
*/
|
|
142
118
|
suiteDefinitionId: string | undefined;
|
|
143
119
|
}
|
|
144
|
-
export declare namespace DeleteSuiteDefinitionRequest {
|
|
145
|
-
/**
|
|
146
|
-
* @internal
|
|
147
|
-
*/
|
|
148
|
-
const filterSensitiveLog: (obj: DeleteSuiteDefinitionRequest) => any;
|
|
149
|
-
}
|
|
150
120
|
export interface DeleteSuiteDefinitionResponse {
|
|
151
121
|
}
|
|
152
|
-
export declare namespace DeleteSuiteDefinitionResponse {
|
|
153
|
-
/**
|
|
154
|
-
* @internal
|
|
155
|
-
*/
|
|
156
|
-
const filterSensitiveLog: (obj: DeleteSuiteDefinitionResponse) => any;
|
|
157
|
-
}
|
|
158
122
|
export interface GetEndpointRequest {
|
|
159
123
|
/**
|
|
160
124
|
* <p>The thing ARN of the device. This is an optional parameter.</p>
|
|
@@ -165,24 +129,12 @@ export interface GetEndpointRequest {
|
|
|
165
129
|
*/
|
|
166
130
|
certificateArn?: string;
|
|
167
131
|
}
|
|
168
|
-
export declare namespace GetEndpointRequest {
|
|
169
|
-
/**
|
|
170
|
-
* @internal
|
|
171
|
-
*/
|
|
172
|
-
const filterSensitiveLog: (obj: GetEndpointRequest) => any;
|
|
173
|
-
}
|
|
174
132
|
export interface GetEndpointResponse {
|
|
175
133
|
/**
|
|
176
134
|
* <p>The response of an Device Advisor endpoint.</p>
|
|
177
135
|
*/
|
|
178
136
|
endpoint?: string;
|
|
179
137
|
}
|
|
180
|
-
export declare namespace GetEndpointResponse {
|
|
181
|
-
/**
|
|
182
|
-
* @internal
|
|
183
|
-
*/
|
|
184
|
-
const filterSensitiveLog: (obj: GetEndpointResponse) => any;
|
|
185
|
-
}
|
|
186
138
|
/**
|
|
187
139
|
* <p>Sends a Resource Not Found exception.</p>
|
|
188
140
|
*/
|
|
@@ -204,12 +156,6 @@ export interface GetSuiteDefinitionRequest {
|
|
|
204
156
|
*/
|
|
205
157
|
suiteDefinitionVersion?: string;
|
|
206
158
|
}
|
|
207
|
-
export declare namespace GetSuiteDefinitionRequest {
|
|
208
|
-
/**
|
|
209
|
-
* @internal
|
|
210
|
-
*/
|
|
211
|
-
const filterSensitiveLog: (obj: GetSuiteDefinitionRequest) => any;
|
|
212
|
-
}
|
|
213
159
|
export interface GetSuiteDefinitionResponse {
|
|
214
160
|
/**
|
|
215
161
|
* <p>Suite definition ID of the suite definition.</p>
|
|
@@ -244,12 +190,6 @@ export interface GetSuiteDefinitionResponse {
|
|
|
244
190
|
*/
|
|
245
191
|
tags?: Record<string, string>;
|
|
246
192
|
}
|
|
247
|
-
export declare namespace GetSuiteDefinitionResponse {
|
|
248
|
-
/**
|
|
249
|
-
* @internal
|
|
250
|
-
*/
|
|
251
|
-
const filterSensitiveLog: (obj: GetSuiteDefinitionResponse) => any;
|
|
252
|
-
}
|
|
253
193
|
export interface GetSuiteRunRequest {
|
|
254
194
|
/**
|
|
255
195
|
* <p>Suite definition ID for the test suite run.</p>
|
|
@@ -260,12 +200,6 @@ export interface GetSuiteRunRequest {
|
|
|
260
200
|
*/
|
|
261
201
|
suiteRunId: string | undefined;
|
|
262
202
|
}
|
|
263
|
-
export declare namespace GetSuiteRunRequest {
|
|
264
|
-
/**
|
|
265
|
-
* @internal
|
|
266
|
-
*/
|
|
267
|
-
const filterSensitiveLog: (obj: GetSuiteRunRequest) => any;
|
|
268
|
-
}
|
|
269
203
|
export declare enum SuiteRunStatus {
|
|
270
204
|
CANCELED = "CANCELED",
|
|
271
205
|
ERROR = "ERROR",
|
|
@@ -294,12 +228,6 @@ export interface SuiteRunConfiguration {
|
|
|
294
228
|
*/
|
|
295
229
|
parallelRun?: boolean;
|
|
296
230
|
}
|
|
297
|
-
export declare namespace SuiteRunConfiguration {
|
|
298
|
-
/**
|
|
299
|
-
* @internal
|
|
300
|
-
*/
|
|
301
|
-
const filterSensitiveLog: (obj: SuiteRunConfiguration) => any;
|
|
302
|
-
}
|
|
303
231
|
export declare enum Status {
|
|
304
232
|
CANCELED = "CANCELED",
|
|
305
233
|
ERROR = "ERROR",
|
|
@@ -398,12 +326,6 @@ export interface TestCaseScenario {
|
|
|
398
326
|
*/
|
|
399
327
|
systemMessage?: string;
|
|
400
328
|
}
|
|
401
|
-
export declare namespace TestCaseScenario {
|
|
402
|
-
/**
|
|
403
|
-
* @internal
|
|
404
|
-
*/
|
|
405
|
-
const filterSensitiveLog: (obj: TestCaseScenario) => any;
|
|
406
|
-
}
|
|
407
329
|
/**
|
|
408
330
|
* <p>Provides the test case run.</p>
|
|
409
331
|
*/
|
|
@@ -486,12 +408,6 @@ export interface TestCaseRun {
|
|
|
486
408
|
*/
|
|
487
409
|
testScenarios?: TestCaseScenario[];
|
|
488
410
|
}
|
|
489
|
-
export declare namespace TestCaseRun {
|
|
490
|
-
/**
|
|
491
|
-
* @internal
|
|
492
|
-
*/
|
|
493
|
-
const filterSensitiveLog: (obj: TestCaseRun) => any;
|
|
494
|
-
}
|
|
495
411
|
/**
|
|
496
412
|
* <p>Show Group Result.</p>
|
|
497
413
|
*/
|
|
@@ -509,12 +425,6 @@ export interface GroupResult {
|
|
|
509
425
|
*/
|
|
510
426
|
tests?: TestCaseRun[];
|
|
511
427
|
}
|
|
512
|
-
export declare namespace GroupResult {
|
|
513
|
-
/**
|
|
514
|
-
* @internal
|
|
515
|
-
*/
|
|
516
|
-
const filterSensitiveLog: (obj: GroupResult) => any;
|
|
517
|
-
}
|
|
518
428
|
/**
|
|
519
429
|
* <p>Show each group result.</p>
|
|
520
430
|
*/
|
|
@@ -524,12 +434,6 @@ export interface TestResult {
|
|
|
524
434
|
*/
|
|
525
435
|
groups?: GroupResult[];
|
|
526
436
|
}
|
|
527
|
-
export declare namespace TestResult {
|
|
528
|
-
/**
|
|
529
|
-
* @internal
|
|
530
|
-
*/
|
|
531
|
-
const filterSensitiveLog: (obj: TestResult) => any;
|
|
532
|
-
}
|
|
533
437
|
export interface GetSuiteRunResponse {
|
|
534
438
|
/**
|
|
535
439
|
* <p>Suite definition ID for the test suite run.</p>
|
|
@@ -576,12 +480,6 @@ export interface GetSuiteRunResponse {
|
|
|
576
480
|
*/
|
|
577
481
|
tags?: Record<string, string>;
|
|
578
482
|
}
|
|
579
|
-
export declare namespace GetSuiteRunResponse {
|
|
580
|
-
/**
|
|
581
|
-
* @internal
|
|
582
|
-
*/
|
|
583
|
-
const filterSensitiveLog: (obj: GetSuiteRunResponse) => any;
|
|
584
|
-
}
|
|
585
483
|
export interface GetSuiteRunReportRequest {
|
|
586
484
|
/**
|
|
587
485
|
* <p>Suite definition ID of the test suite.</p>
|
|
@@ -592,24 +490,12 @@ export interface GetSuiteRunReportRequest {
|
|
|
592
490
|
*/
|
|
593
491
|
suiteRunId: string | undefined;
|
|
594
492
|
}
|
|
595
|
-
export declare namespace GetSuiteRunReportRequest {
|
|
596
|
-
/**
|
|
597
|
-
* @internal
|
|
598
|
-
*/
|
|
599
|
-
const filterSensitiveLog: (obj: GetSuiteRunReportRequest) => any;
|
|
600
|
-
}
|
|
601
493
|
export interface GetSuiteRunReportResponse {
|
|
602
494
|
/**
|
|
603
495
|
* <p>Download URL of the qualification report.</p>
|
|
604
496
|
*/
|
|
605
497
|
qualificationReportDownloadUrl?: string;
|
|
606
498
|
}
|
|
607
|
-
export declare namespace GetSuiteRunReportResponse {
|
|
608
|
-
/**
|
|
609
|
-
* @internal
|
|
610
|
-
*/
|
|
611
|
-
const filterSensitiveLog: (obj: GetSuiteRunReportResponse) => any;
|
|
612
|
-
}
|
|
613
499
|
export interface ListSuiteDefinitionsRequest {
|
|
614
500
|
/**
|
|
615
501
|
* <p>The maximum number of results to return at once.</p>
|
|
@@ -620,12 +506,6 @@ export interface ListSuiteDefinitionsRequest {
|
|
|
620
506
|
*/
|
|
621
507
|
nextToken?: string;
|
|
622
508
|
}
|
|
623
|
-
export declare namespace ListSuiteDefinitionsRequest {
|
|
624
|
-
/**
|
|
625
|
-
* @internal
|
|
626
|
-
*/
|
|
627
|
-
const filterSensitiveLog: (obj: ListSuiteDefinitionsRequest) => any;
|
|
628
|
-
}
|
|
629
509
|
/**
|
|
630
510
|
* <p>Information about the suite definition.</p>
|
|
631
511
|
*/
|
|
@@ -659,12 +539,6 @@ export interface SuiteDefinitionInformation {
|
|
|
659
539
|
*/
|
|
660
540
|
createdAt?: Date;
|
|
661
541
|
}
|
|
662
|
-
export declare namespace SuiteDefinitionInformation {
|
|
663
|
-
/**
|
|
664
|
-
* @internal
|
|
665
|
-
*/
|
|
666
|
-
const filterSensitiveLog: (obj: SuiteDefinitionInformation) => any;
|
|
667
|
-
}
|
|
668
542
|
export interface ListSuiteDefinitionsResponse {
|
|
669
543
|
/**
|
|
670
544
|
* <p>An array of objects that provide summaries of information about the suite definitions
|
|
@@ -676,12 +550,6 @@ export interface ListSuiteDefinitionsResponse {
|
|
|
676
550
|
*/
|
|
677
551
|
nextToken?: string;
|
|
678
552
|
}
|
|
679
|
-
export declare namespace ListSuiteDefinitionsResponse {
|
|
680
|
-
/**
|
|
681
|
-
* @internal
|
|
682
|
-
*/
|
|
683
|
-
const filterSensitiveLog: (obj: ListSuiteDefinitionsResponse) => any;
|
|
684
|
-
}
|
|
685
553
|
export interface ListSuiteRunsRequest {
|
|
686
554
|
/**
|
|
687
555
|
* <p>Lists the test suite runs of the specified test suite based on suite definition
|
|
@@ -702,12 +570,6 @@ export interface ListSuiteRunsRequest {
|
|
|
702
570
|
*/
|
|
703
571
|
nextToken?: string;
|
|
704
572
|
}
|
|
705
|
-
export declare namespace ListSuiteRunsRequest {
|
|
706
|
-
/**
|
|
707
|
-
* @internal
|
|
708
|
-
*/
|
|
709
|
-
const filterSensitiveLog: (obj: ListSuiteRunsRequest) => any;
|
|
710
|
-
}
|
|
711
573
|
/**
|
|
712
574
|
* <p>Information about the suite run.</p>
|
|
713
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>
|
|
@@ -754,12 +616,6 @@ export interface SuiteRunInformation {
|
|
|
754
616
|
*/
|
|
755
617
|
failed?: number;
|
|
756
618
|
}
|
|
757
|
-
export declare namespace SuiteRunInformation {
|
|
758
|
-
/**
|
|
759
|
-
* @internal
|
|
760
|
-
*/
|
|
761
|
-
const filterSensitiveLog: (obj: SuiteRunInformation) => any;
|
|
762
|
-
}
|
|
763
619
|
export interface ListSuiteRunsResponse {
|
|
764
620
|
/**
|
|
765
621
|
* <p>An array of objects that provide summaries of information about the suite runs in the
|
|
@@ -771,36 +627,18 @@ export interface ListSuiteRunsResponse {
|
|
|
771
627
|
*/
|
|
772
628
|
nextToken?: string;
|
|
773
629
|
}
|
|
774
|
-
export declare namespace ListSuiteRunsResponse {
|
|
775
|
-
/**
|
|
776
|
-
* @internal
|
|
777
|
-
*/
|
|
778
|
-
const filterSensitiveLog: (obj: ListSuiteRunsResponse) => any;
|
|
779
|
-
}
|
|
780
630
|
export interface ListTagsForResourceRequest {
|
|
781
631
|
/**
|
|
782
632
|
* <p>The ARN of the IoT Device Advisor resource.</p>
|
|
783
633
|
*/
|
|
784
634
|
resourceArn: string | undefined;
|
|
785
635
|
}
|
|
786
|
-
export declare namespace ListTagsForResourceRequest {
|
|
787
|
-
/**
|
|
788
|
-
* @internal
|
|
789
|
-
*/
|
|
790
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
791
|
-
}
|
|
792
636
|
export interface ListTagsForResourceResponse {
|
|
793
637
|
/**
|
|
794
638
|
* <p>The tags attached to the IoT Device Advisor resource.</p>
|
|
795
639
|
*/
|
|
796
640
|
tags?: Record<string, string>;
|
|
797
641
|
}
|
|
798
|
-
export declare namespace ListTagsForResourceResponse {
|
|
799
|
-
/**
|
|
800
|
-
* @internal
|
|
801
|
-
*/
|
|
802
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
803
|
-
}
|
|
804
642
|
export interface StartSuiteRunRequest {
|
|
805
643
|
/**
|
|
806
644
|
* <p>Suite definition ID of the test suite.</p>
|
|
@@ -819,12 +657,6 @@ export interface StartSuiteRunRequest {
|
|
|
819
657
|
*/
|
|
820
658
|
tags?: Record<string, string>;
|
|
821
659
|
}
|
|
822
|
-
export declare namespace StartSuiteRunRequest {
|
|
823
|
-
/**
|
|
824
|
-
* @internal
|
|
825
|
-
*/
|
|
826
|
-
const filterSensitiveLog: (obj: StartSuiteRunRequest) => any;
|
|
827
|
-
}
|
|
828
660
|
export interface StartSuiteRunResponse {
|
|
829
661
|
/**
|
|
830
662
|
* <p>Suite Run ID of the started suite run.</p>
|
|
@@ -839,12 +671,6 @@ export interface StartSuiteRunResponse {
|
|
|
839
671
|
*/
|
|
840
672
|
createdAt?: Date;
|
|
841
673
|
}
|
|
842
|
-
export declare namespace StartSuiteRunResponse {
|
|
843
|
-
/**
|
|
844
|
-
* @internal
|
|
845
|
-
*/
|
|
846
|
-
const filterSensitiveLog: (obj: StartSuiteRunResponse) => any;
|
|
847
|
-
}
|
|
848
674
|
export interface StopSuiteRunRequest {
|
|
849
675
|
/**
|
|
850
676
|
* <p>Suite definition ID of the test suite run to be stopped.</p>
|
|
@@ -855,20 +681,8 @@ export interface StopSuiteRunRequest {
|
|
|
855
681
|
*/
|
|
856
682
|
suiteRunId: string | undefined;
|
|
857
683
|
}
|
|
858
|
-
export declare namespace StopSuiteRunRequest {
|
|
859
|
-
/**
|
|
860
|
-
* @internal
|
|
861
|
-
*/
|
|
862
|
-
const filterSensitiveLog: (obj: StopSuiteRunRequest) => any;
|
|
863
|
-
}
|
|
864
684
|
export interface StopSuiteRunResponse {
|
|
865
685
|
}
|
|
866
|
-
export declare namespace StopSuiteRunResponse {
|
|
867
|
-
/**
|
|
868
|
-
* @internal
|
|
869
|
-
*/
|
|
870
|
-
const filterSensitiveLog: (obj: StopSuiteRunResponse) => any;
|
|
871
|
-
}
|
|
872
686
|
export interface TagResourceRequest {
|
|
873
687
|
/**
|
|
874
688
|
* <p>The resource ARN of an IoT Device Advisor resource.</p>
|
|
@@ -879,20 +693,8 @@ export interface TagResourceRequest {
|
|
|
879
693
|
*/
|
|
880
694
|
tags: Record<string, string> | undefined;
|
|
881
695
|
}
|
|
882
|
-
export declare namespace TagResourceRequest {
|
|
883
|
-
/**
|
|
884
|
-
* @internal
|
|
885
|
-
*/
|
|
886
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
887
|
-
}
|
|
888
696
|
export interface TagResourceResponse {
|
|
889
697
|
}
|
|
890
|
-
export declare namespace TagResourceResponse {
|
|
891
|
-
/**
|
|
892
|
-
* @internal
|
|
893
|
-
*/
|
|
894
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
895
|
-
}
|
|
896
698
|
export interface UntagResourceRequest {
|
|
897
699
|
/**
|
|
898
700
|
* <p>The resource ARN of an IoT Device Advisor resource.</p>
|
|
@@ -903,20 +705,8 @@ export interface UntagResourceRequest {
|
|
|
903
705
|
*/
|
|
904
706
|
tagKeys: string[] | undefined;
|
|
905
707
|
}
|
|
906
|
-
export declare namespace UntagResourceRequest {
|
|
907
|
-
/**
|
|
908
|
-
* @internal
|
|
909
|
-
*/
|
|
910
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
911
|
-
}
|
|
912
708
|
export interface UntagResourceResponse {
|
|
913
709
|
}
|
|
914
|
-
export declare namespace UntagResourceResponse {
|
|
915
|
-
/**
|
|
916
|
-
* @internal
|
|
917
|
-
*/
|
|
918
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
919
|
-
}
|
|
920
710
|
export interface UpdateSuiteDefinitionRequest {
|
|
921
711
|
/**
|
|
922
712
|
* <p>Suite definition ID of the test suite to be updated.</p>
|
|
@@ -927,12 +717,6 @@ export interface UpdateSuiteDefinitionRequest {
|
|
|
927
717
|
*/
|
|
928
718
|
suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
|
|
929
719
|
}
|
|
930
|
-
export declare namespace UpdateSuiteDefinitionRequest {
|
|
931
|
-
/**
|
|
932
|
-
* @internal
|
|
933
|
-
*/
|
|
934
|
-
const filterSensitiveLog: (obj: UpdateSuiteDefinitionRequest) => any;
|
|
935
|
-
}
|
|
936
720
|
export interface UpdateSuiteDefinitionResponse {
|
|
937
721
|
/**
|
|
938
722
|
* <p>Suite definition ID of the updated test suite.</p>
|
|
@@ -959,9 +743,151 @@ export interface UpdateSuiteDefinitionResponse {
|
|
|
959
743
|
*/
|
|
960
744
|
lastUpdatedAt?: Date;
|
|
961
745
|
}
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
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;
|