@aws-sdk/client-iotdeviceadvisor 3.296.0 → 3.298.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 (53) hide show
  1. package/dist-cjs/commands/CreateSuiteDefinitionCommand.js +2 -3
  2. package/dist-cjs/commands/DeleteSuiteDefinitionCommand.js +2 -3
  3. package/dist-cjs/commands/GetEndpointCommand.js +2 -3
  4. package/dist-cjs/commands/GetSuiteDefinitionCommand.js +2 -3
  5. package/dist-cjs/commands/GetSuiteRunCommand.js +2 -3
  6. package/dist-cjs/commands/GetSuiteRunReportCommand.js +2 -3
  7. package/dist-cjs/commands/ListSuiteDefinitionsCommand.js +2 -3
  8. package/dist-cjs/commands/ListSuiteRunsCommand.js +2 -3
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  10. package/dist-cjs/commands/StartSuiteRunCommand.js +2 -3
  11. package/dist-cjs/commands/StopSuiteRunCommand.js +2 -3
  12. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  13. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  14. package/dist-cjs/commands/UpdateSuiteDefinitionCommand.js +2 -3
  15. package/dist-cjs/models/models_0.js +1 -149
  16. package/dist-es/commands/CreateSuiteDefinitionCommand.js +2 -3
  17. package/dist-es/commands/DeleteSuiteDefinitionCommand.js +2 -3
  18. package/dist-es/commands/GetEndpointCommand.js +2 -3
  19. package/dist-es/commands/GetSuiteDefinitionCommand.js +2 -3
  20. package/dist-es/commands/GetSuiteRunCommand.js +2 -3
  21. package/dist-es/commands/GetSuiteRunReportCommand.js +2 -3
  22. package/dist-es/commands/ListSuiteDefinitionsCommand.js +2 -3
  23. package/dist-es/commands/ListSuiteRunsCommand.js +2 -3
  24. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  25. package/dist-es/commands/StartSuiteRunCommand.js +2 -3
  26. package/dist-es/commands/StopSuiteRunCommand.js +2 -3
  27. package/dist-es/commands/TagResourceCommand.js +2 -3
  28. package/dist-es/commands/UntagResourceCommand.js +2 -3
  29. package/dist-es/commands/UpdateSuiteDefinitionCommand.js +2 -3
  30. package/dist-es/models/models_0.js +0 -111
  31. package/dist-types/IotDeviceAdvisor.d.ts +15 -0
  32. package/dist-types/IotDeviceAdvisorClient.d.ts +24 -4
  33. package/dist-types/commands/CreateSuiteDefinitionCommand.d.ts +16 -0
  34. package/dist-types/commands/DeleteSuiteDefinitionCommand.d.ts +16 -0
  35. package/dist-types/commands/GetEndpointCommand.d.ts +16 -0
  36. package/dist-types/commands/GetSuiteDefinitionCommand.d.ts +16 -0
  37. package/dist-types/commands/GetSuiteRunCommand.d.ts +16 -0
  38. package/dist-types/commands/GetSuiteRunReportCommand.d.ts +16 -0
  39. package/dist-types/commands/ListSuiteDefinitionsCommand.d.ts +16 -0
  40. package/dist-types/commands/ListSuiteRunsCommand.d.ts +16 -0
  41. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  42. package/dist-types/commands/StartSuiteRunCommand.d.ts +16 -0
  43. package/dist-types/commands/StopSuiteRunCommand.d.ts +16 -0
  44. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  45. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  46. package/dist-types/commands/UpdateSuiteDefinitionCommand.d.ts +16 -0
  47. package/dist-types/models/IotDeviceAdvisorServiceException.d.ts +2 -0
  48. package/dist-types/models/models_0.d.ts +112 -148
  49. package/dist-types/pagination/Interfaces.d.ts +3 -0
  50. package/dist-types/pagination/ListSuiteDefinitionsPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListSuiteRunsPaginator.d.ts +3 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +0 -105
  53. package/package.json +4 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { IotDeviceAdvisorServiceException as __BaseException } from "./IotDeviceAdvisorServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>Sends a Conflict Exception.</p>
5
6
  */
6
7
  export declare class ConflictException extends __BaseException {
@@ -12,6 +13,7 @@ export declare class ConflictException extends __BaseException {
12
13
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
13
14
  }
14
15
  /**
16
+ * @public
15
17
  * <p>Information of a test device. A thing ARN or a certificate ARN is required.</p>
16
18
  */
17
19
  export interface DeviceUnderTest {
@@ -24,11 +26,15 @@ export interface DeviceUnderTest {
24
26
  */
25
27
  certificateArn?: string;
26
28
  }
29
+ /**
30
+ * @public
31
+ */
27
32
  export declare enum Protocol {
28
33
  MqttV3_1_1 = "MqttV3_1_1",
29
34
  MqttV5 = "MqttV5"
30
35
  }
31
36
  /**
37
+ * @public
32
38
  * <p>Gets the suite definition configuration.</p>
33
39
  */
34
40
  export interface SuiteDefinitionConfiguration {
@@ -61,6 +67,9 @@ export interface SuiteDefinitionConfiguration {
61
67
  */
62
68
  protocol?: Protocol | string;
63
69
  }
70
+ /**
71
+ * @public
72
+ */
64
73
  export interface CreateSuiteDefinitionRequest {
65
74
  /**
66
75
  * <p>Creates a Device Advisor test suite with suite definition configuration.</p>
@@ -71,6 +80,9 @@ export interface CreateSuiteDefinitionRequest {
71
80
  */
72
81
  tags?: Record<string, string>;
73
82
  }
83
+ /**
84
+ * @public
85
+ */
74
86
  export interface CreateSuiteDefinitionResponse {
75
87
  /**
76
88
  * <p>The UUID of the test suite created.</p>
@@ -90,6 +102,7 @@ export interface CreateSuiteDefinitionResponse {
90
102
  createdAt?: Date;
91
103
  }
92
104
  /**
105
+ * @public
93
106
  * <p>Sends an Internal Failure exception.</p>
94
107
  */
95
108
  export declare class InternalServerException extends __BaseException {
@@ -101,6 +114,7 @@ export declare class InternalServerException extends __BaseException {
101
114
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
102
115
  }
103
116
  /**
117
+ * @public
104
118
  * <p>Sends a validation exception.</p>
105
119
  */
106
120
  export declare class ValidationException extends __BaseException {
@@ -111,14 +125,23 @@ export declare class ValidationException extends __BaseException {
111
125
  */
112
126
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
113
127
  }
128
+ /**
129
+ * @public
130
+ */
114
131
  export interface DeleteSuiteDefinitionRequest {
115
132
  /**
116
133
  * <p>Suite definition ID of the test suite to be deleted.</p>
117
134
  */
118
135
  suiteDefinitionId: string | undefined;
119
136
  }
137
+ /**
138
+ * @public
139
+ */
120
140
  export interface DeleteSuiteDefinitionResponse {
121
141
  }
142
+ /**
143
+ * @public
144
+ */
122
145
  export interface GetEndpointRequest {
123
146
  /**
124
147
  * <p>The thing ARN of the device. This is an optional parameter.</p>
@@ -129,6 +152,9 @@ export interface GetEndpointRequest {
129
152
  */
130
153
  certificateArn?: string;
131
154
  }
155
+ /**
156
+ * @public
157
+ */
132
158
  export interface GetEndpointResponse {
133
159
  /**
134
160
  * <p>The response of an Device Advisor endpoint.</p>
@@ -136,6 +162,7 @@ export interface GetEndpointResponse {
136
162
  endpoint?: string;
137
163
  }
138
164
  /**
165
+ * @public
139
166
  * <p>Sends a Resource Not Found exception.</p>
140
167
  */
141
168
  export declare class ResourceNotFoundException extends __BaseException {
@@ -146,6 +173,9 @@ export declare class ResourceNotFoundException extends __BaseException {
146
173
  */
147
174
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
148
175
  }
176
+ /**
177
+ * @public
178
+ */
149
179
  export interface GetSuiteDefinitionRequest {
150
180
  /**
151
181
  * <p>Suite definition ID of the test suite to get.</p>
@@ -156,6 +186,9 @@ export interface GetSuiteDefinitionRequest {
156
186
  */
157
187
  suiteDefinitionVersion?: string;
158
188
  }
189
+ /**
190
+ * @public
191
+ */
159
192
  export interface GetSuiteDefinitionResponse {
160
193
  /**
161
194
  * <p>Suite definition ID of the suite definition.</p>
@@ -190,6 +223,9 @@ export interface GetSuiteDefinitionResponse {
190
223
  */
191
224
  tags?: Record<string, string>;
192
225
  }
226
+ /**
227
+ * @public
228
+ */
193
229
  export interface GetSuiteRunRequest {
194
230
  /**
195
231
  * <p>Suite definition ID for the test suite run.</p>
@@ -200,6 +236,9 @@ export interface GetSuiteRunRequest {
200
236
  */
201
237
  suiteRunId: string | undefined;
202
238
  }
239
+ /**
240
+ * @public
241
+ */
203
242
  export declare enum SuiteRunStatus {
204
243
  CANCELED = "CANCELED",
205
244
  ERROR = "ERROR",
@@ -212,6 +251,7 @@ export declare enum SuiteRunStatus {
212
251
  STOPPING = "STOPPING"
213
252
  }
214
253
  /**
254
+ * @public
215
255
  * <p>Gets suite run configuration.</p>
216
256
  */
217
257
  export interface SuiteRunConfiguration {
@@ -229,6 +269,9 @@ export interface SuiteRunConfiguration {
229
269
  */
230
270
  parallelRun?: boolean;
231
271
  }
272
+ /**
273
+ * @public
274
+ */
232
275
  export declare enum Status {
233
276
  CANCELED = "CANCELED",
234
277
  ERROR = "ERROR",
@@ -240,6 +283,9 @@ export declare enum Status {
240
283
  STOPPED = "STOPPED",
241
284
  STOPPING = "STOPPING"
242
285
  }
286
+ /**
287
+ * @public
288
+ */
243
289
  export declare enum TestCaseScenarioStatus {
244
290
  CANCELED = "CANCELED",
245
291
  ERROR = "ERROR",
@@ -251,11 +297,15 @@ export declare enum TestCaseScenarioStatus {
251
297
  STOPPED = "STOPPED",
252
298
  STOPPING = "STOPPING"
253
299
  }
300
+ /**
301
+ * @public
302
+ */
254
303
  export declare enum TestCaseScenarioType {
255
304
  Advanced = "Advanced",
256
305
  Basic = "Basic"
257
306
  }
258
307
  /**
308
+ * @public
259
309
  * <p>Provides test case scenario.</p>
260
310
  */
261
311
  export interface TestCaseScenario {
@@ -327,6 +377,7 @@ export interface TestCaseScenario {
327
377
  systemMessage?: string;
328
378
  }
329
379
  /**
380
+ * @public
330
381
  * <p>Provides the test case run.</p>
331
382
  */
332
383
  export interface TestCaseRun {
@@ -409,6 +460,7 @@ export interface TestCaseRun {
409
460
  testScenarios?: TestCaseScenario[];
410
461
  }
411
462
  /**
463
+ * @public
412
464
  * <p>Show Group Result.</p>
413
465
  */
414
466
  export interface GroupResult {
@@ -426,6 +478,7 @@ export interface GroupResult {
426
478
  tests?: TestCaseRun[];
427
479
  }
428
480
  /**
481
+ * @public
429
482
  * <p>Show each group result.</p>
430
483
  */
431
484
  export interface TestResult {
@@ -434,6 +487,9 @@ export interface TestResult {
434
487
  */
435
488
  groups?: GroupResult[];
436
489
  }
490
+ /**
491
+ * @public
492
+ */
437
493
  export interface GetSuiteRunResponse {
438
494
  /**
439
495
  * <p>Suite definition ID for the test suite run.</p>
@@ -480,6 +536,9 @@ export interface GetSuiteRunResponse {
480
536
  */
481
537
  tags?: Record<string, string>;
482
538
  }
539
+ /**
540
+ * @public
541
+ */
483
542
  export interface GetSuiteRunReportRequest {
484
543
  /**
485
544
  * <p>Suite definition ID of the test suite.</p>
@@ -490,12 +549,18 @@ export interface GetSuiteRunReportRequest {
490
549
  */
491
550
  suiteRunId: string | undefined;
492
551
  }
552
+ /**
553
+ * @public
554
+ */
493
555
  export interface GetSuiteRunReportResponse {
494
556
  /**
495
557
  * <p>Download URL of the qualification report.</p>
496
558
  */
497
559
  qualificationReportDownloadUrl?: string;
498
560
  }
561
+ /**
562
+ * @public
563
+ */
499
564
  export interface ListSuiteDefinitionsRequest {
500
565
  /**
501
566
  * <p>The maximum number of results to return at once.</p>
@@ -507,6 +572,7 @@ export interface ListSuiteDefinitionsRequest {
507
572
  nextToken?: string;
508
573
  }
509
574
  /**
575
+ * @public
510
576
  * <p>Information about the suite definition.</p>
511
577
  */
512
578
  export interface SuiteDefinitionInformation {
@@ -539,6 +605,9 @@ export interface SuiteDefinitionInformation {
539
605
  */
540
606
  createdAt?: Date;
541
607
  }
608
+ /**
609
+ * @public
610
+ */
542
611
  export interface ListSuiteDefinitionsResponse {
543
612
  /**
544
613
  * <p>An array of objects that provide summaries of information about the suite definitions
@@ -550,6 +619,9 @@ export interface ListSuiteDefinitionsResponse {
550
619
  */
551
620
  nextToken?: string;
552
621
  }
622
+ /**
623
+ * @public
624
+ */
553
625
  export interface ListSuiteRunsRequest {
554
626
  /**
555
627
  * <p>Lists the test suite runs of the specified test suite based on suite definition
@@ -571,6 +643,7 @@ export interface ListSuiteRunsRequest {
571
643
  nextToken?: string;
572
644
  }
573
645
  /**
646
+ * @public
574
647
  * <p>Information about the suite run.</p>
575
648
  * <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>
576
649
  */
@@ -616,6 +689,9 @@ export interface SuiteRunInformation {
616
689
  */
617
690
  failed?: number;
618
691
  }
692
+ /**
693
+ * @public
694
+ */
619
695
  export interface ListSuiteRunsResponse {
620
696
  /**
621
697
  * <p>An array of objects that provide summaries of information about the suite runs in the
@@ -627,6 +703,9 @@ export interface ListSuiteRunsResponse {
627
703
  */
628
704
  nextToken?: string;
629
705
  }
706
+ /**
707
+ * @public
708
+ */
630
709
  export interface ListTagsForResourceRequest {
631
710
  /**
632
711
  * <p>The resource ARN of the IoT Device Advisor resource.
@@ -634,12 +713,18 @@ export interface ListTagsForResourceRequest {
634
713
  */
635
714
  resourceArn: string | undefined;
636
715
  }
716
+ /**
717
+ * @public
718
+ */
637
719
  export interface ListTagsForResourceResponse {
638
720
  /**
639
721
  * <p>The tags attached to the IoT Device Advisor resource.</p>
640
722
  */
641
723
  tags?: Record<string, string>;
642
724
  }
725
+ /**
726
+ * @public
727
+ */
643
728
  export interface StartSuiteRunRequest {
644
729
  /**
645
730
  * <p>Suite definition ID of the test suite.</p>
@@ -658,6 +743,9 @@ export interface StartSuiteRunRequest {
658
743
  */
659
744
  tags?: Record<string, string>;
660
745
  }
746
+ /**
747
+ * @public
748
+ */
661
749
  export interface StartSuiteRunResponse {
662
750
  /**
663
751
  * <p>Suite Run ID of the started suite run.</p>
@@ -676,6 +764,9 @@ export interface StartSuiteRunResponse {
676
764
  */
677
765
  endpoint?: string;
678
766
  }
767
+ /**
768
+ * @public
769
+ */
679
770
  export interface StopSuiteRunRequest {
680
771
  /**
681
772
  * <p>Suite definition ID of the test suite run to be stopped.</p>
@@ -686,8 +777,14 @@ export interface StopSuiteRunRequest {
686
777
  */
687
778
  suiteRunId: string | undefined;
688
779
  }
780
+ /**
781
+ * @public
782
+ */
689
783
  export interface StopSuiteRunResponse {
690
784
  }
785
+ /**
786
+ * @public
787
+ */
691
788
  export interface TagResourceRequest {
692
789
  /**
693
790
  * <p>The resource ARN of an IoT Device Advisor resource.
@@ -699,8 +796,14 @@ export interface TagResourceRequest {
699
796
  */
700
797
  tags: Record<string, string> | undefined;
701
798
  }
799
+ /**
800
+ * @public
801
+ */
702
802
  export interface TagResourceResponse {
703
803
  }
804
+ /**
805
+ * @public
806
+ */
704
807
  export interface UntagResourceRequest {
705
808
  /**
706
809
  * <p>The resource ARN of an IoT Device Advisor resource.
@@ -712,8 +815,14 @@ export interface UntagResourceRequest {
712
815
  */
713
816
  tagKeys: string[] | undefined;
714
817
  }
818
+ /**
819
+ * @public
820
+ */
715
821
  export interface UntagResourceResponse {
716
822
  }
823
+ /**
824
+ * @public
825
+ */
717
826
  export interface UpdateSuiteDefinitionRequest {
718
827
  /**
719
828
  * <p>Suite definition ID of the test suite to be updated.</p>
@@ -724,6 +833,9 @@ export interface UpdateSuiteDefinitionRequest {
724
833
  */
725
834
  suiteDefinitionConfiguration: SuiteDefinitionConfiguration | undefined;
726
835
  }
836
+ /**
837
+ * @public
838
+ */
727
839
  export interface UpdateSuiteDefinitionResponse {
728
840
  /**
729
841
  * <p>Suite definition ID of the updated test suite.</p>
@@ -750,151 +862,3 @@ export interface UpdateSuiteDefinitionResponse {
750
862
  */
751
863
  lastUpdatedAt?: Date;
752
864
  }
753
- /**
754
- * @internal
755
- */
756
- export declare const DeviceUnderTestFilterSensitiveLog: (obj: DeviceUnderTest) => any;
757
- /**
758
- * @internal
759
- */
760
- export declare const SuiteDefinitionConfigurationFilterSensitiveLog: (obj: SuiteDefinitionConfiguration) => any;
761
- /**
762
- * @internal
763
- */
764
- export declare const CreateSuiteDefinitionRequestFilterSensitiveLog: (obj: CreateSuiteDefinitionRequest) => any;
765
- /**
766
- * @internal
767
- */
768
- export declare const CreateSuiteDefinitionResponseFilterSensitiveLog: (obj: CreateSuiteDefinitionResponse) => any;
769
- /**
770
- * @internal
771
- */
772
- export declare const DeleteSuiteDefinitionRequestFilterSensitiveLog: (obj: DeleteSuiteDefinitionRequest) => any;
773
- /**
774
- * @internal
775
- */
776
- export declare const DeleteSuiteDefinitionResponseFilterSensitiveLog: (obj: DeleteSuiteDefinitionResponse) => any;
777
- /**
778
- * @internal
779
- */
780
- export declare const GetEndpointRequestFilterSensitiveLog: (obj: GetEndpointRequest) => any;
781
- /**
782
- * @internal
783
- */
784
- export declare const GetEndpointResponseFilterSensitiveLog: (obj: GetEndpointResponse) => any;
785
- /**
786
- * @internal
787
- */
788
- export declare const GetSuiteDefinitionRequestFilterSensitiveLog: (obj: GetSuiteDefinitionRequest) => any;
789
- /**
790
- * @internal
791
- */
792
- export declare const GetSuiteDefinitionResponseFilterSensitiveLog: (obj: GetSuiteDefinitionResponse) => any;
793
- /**
794
- * @internal
795
- */
796
- export declare const GetSuiteRunRequestFilterSensitiveLog: (obj: GetSuiteRunRequest) => any;
797
- /**
798
- * @internal
799
- */
800
- export declare const SuiteRunConfigurationFilterSensitiveLog: (obj: SuiteRunConfiguration) => any;
801
- /**
802
- * @internal
803
- */
804
- export declare const TestCaseScenarioFilterSensitiveLog: (obj: TestCaseScenario) => any;
805
- /**
806
- * @internal
807
- */
808
- export declare const TestCaseRunFilterSensitiveLog: (obj: TestCaseRun) => any;
809
- /**
810
- * @internal
811
- */
812
- export declare const GroupResultFilterSensitiveLog: (obj: GroupResult) => any;
813
- /**
814
- * @internal
815
- */
816
- export declare const TestResultFilterSensitiveLog: (obj: TestResult) => any;
817
- /**
818
- * @internal
819
- */
820
- export declare const GetSuiteRunResponseFilterSensitiveLog: (obj: GetSuiteRunResponse) => any;
821
- /**
822
- * @internal
823
- */
824
- export declare const GetSuiteRunReportRequestFilterSensitiveLog: (obj: GetSuiteRunReportRequest) => any;
825
- /**
826
- * @internal
827
- */
828
- export declare const GetSuiteRunReportResponseFilterSensitiveLog: (obj: GetSuiteRunReportResponse) => any;
829
- /**
830
- * @internal
831
- */
832
- export declare const ListSuiteDefinitionsRequestFilterSensitiveLog: (obj: ListSuiteDefinitionsRequest) => any;
833
- /**
834
- * @internal
835
- */
836
- export declare const SuiteDefinitionInformationFilterSensitiveLog: (obj: SuiteDefinitionInformation) => any;
837
- /**
838
- * @internal
839
- */
840
- export declare const ListSuiteDefinitionsResponseFilterSensitiveLog: (obj: ListSuiteDefinitionsResponse) => any;
841
- /**
842
- * @internal
843
- */
844
- export declare const ListSuiteRunsRequestFilterSensitiveLog: (obj: ListSuiteRunsRequest) => any;
845
- /**
846
- * @internal
847
- */
848
- export declare const SuiteRunInformationFilterSensitiveLog: (obj: SuiteRunInformation) => any;
849
- /**
850
- * @internal
851
- */
852
- export declare const ListSuiteRunsResponseFilterSensitiveLog: (obj: ListSuiteRunsResponse) => any;
853
- /**
854
- * @internal
855
- */
856
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
857
- /**
858
- * @internal
859
- */
860
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
861
- /**
862
- * @internal
863
- */
864
- export declare const StartSuiteRunRequestFilterSensitiveLog: (obj: StartSuiteRunRequest) => any;
865
- /**
866
- * @internal
867
- */
868
- export declare const StartSuiteRunResponseFilterSensitiveLog: (obj: StartSuiteRunResponse) => any;
869
- /**
870
- * @internal
871
- */
872
- export declare const StopSuiteRunRequestFilterSensitiveLog: (obj: StopSuiteRunRequest) => any;
873
- /**
874
- * @internal
875
- */
876
- export declare const StopSuiteRunResponseFilterSensitiveLog: (obj: StopSuiteRunResponse) => any;
877
- /**
878
- * @internal
879
- */
880
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
881
- /**
882
- * @internal
883
- */
884
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
885
- /**
886
- * @internal
887
- */
888
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
889
- /**
890
- * @internal
891
- */
892
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
893
- /**
894
- * @internal
895
- */
896
- export declare const UpdateSuiteDefinitionRequestFilterSensitiveLog: (obj: UpdateSuiteDefinitionRequest) => any;
897
- /**
898
- * @internal
899
- */
900
- export declare const UpdateSuiteDefinitionResponseFilterSensitiveLog: (obj: UpdateSuiteDefinitionResponse) => any;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { IotDeviceAdvisorClient } from "../IotDeviceAdvisorClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface IotDeviceAdvisorPaginationConfiguration extends PaginationConfiguration {
4
7
  client: IotDeviceAdvisorClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSuiteDefinitionsCommandInput, ListSuiteDefinitionsCommandOutput } from "../commands/ListSuiteDefinitionsCommand";
3
3
  import { IotDeviceAdvisorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSuiteDefinitions(config: IotDeviceAdvisorPaginationConfiguration, input: ListSuiteDefinitionsCommandInput, ...additionalArguments: any): Paginator<ListSuiteDefinitionsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSuiteRunsCommandInput, ListSuiteRunsCommandOutput } from "../commands/ListSuiteRunsCommand";
3
3
  import { IotDeviceAdvisorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSuiteRuns(config: IotDeviceAdvisorPaginationConfiguration, input: ListSuiteRunsCommandInput, ...additionalArguments: any): Paginator<ListSuiteRunsCommandOutput>;
@@ -255,108 +255,3 @@ export interface UpdateSuiteDefinitionResponse {
255
255
  createdAt?: Date;
256
256
  lastUpdatedAt?: Date;
257
257
  }
258
- export declare const DeviceUnderTestFilterSensitiveLog: (
259
- obj: DeviceUnderTest
260
- ) => any;
261
- export declare const SuiteDefinitionConfigurationFilterSensitiveLog: (
262
- obj: SuiteDefinitionConfiguration
263
- ) => any;
264
- export declare const CreateSuiteDefinitionRequestFilterSensitiveLog: (
265
- obj: CreateSuiteDefinitionRequest
266
- ) => any;
267
- export declare const CreateSuiteDefinitionResponseFilterSensitiveLog: (
268
- obj: CreateSuiteDefinitionResponse
269
- ) => any;
270
- export declare const DeleteSuiteDefinitionRequestFilterSensitiveLog: (
271
- obj: DeleteSuiteDefinitionRequest
272
- ) => any;
273
- export declare const DeleteSuiteDefinitionResponseFilterSensitiveLog: (
274
- obj: DeleteSuiteDefinitionResponse
275
- ) => any;
276
- export declare const GetEndpointRequestFilterSensitiveLog: (
277
- obj: GetEndpointRequest
278
- ) => any;
279
- export declare const GetEndpointResponseFilterSensitiveLog: (
280
- obj: GetEndpointResponse
281
- ) => any;
282
- export declare const GetSuiteDefinitionRequestFilterSensitiveLog: (
283
- obj: GetSuiteDefinitionRequest
284
- ) => any;
285
- export declare const GetSuiteDefinitionResponseFilterSensitiveLog: (
286
- obj: GetSuiteDefinitionResponse
287
- ) => any;
288
- export declare const GetSuiteRunRequestFilterSensitiveLog: (
289
- obj: GetSuiteRunRequest
290
- ) => any;
291
- export declare const SuiteRunConfigurationFilterSensitiveLog: (
292
- obj: SuiteRunConfiguration
293
- ) => any;
294
- export declare const TestCaseScenarioFilterSensitiveLog: (
295
- obj: TestCaseScenario
296
- ) => any;
297
- export declare const TestCaseRunFilterSensitiveLog: (obj: TestCaseRun) => any;
298
- export declare const GroupResultFilterSensitiveLog: (obj: GroupResult) => any;
299
- export declare const TestResultFilterSensitiveLog: (obj: TestResult) => any;
300
- export declare const GetSuiteRunResponseFilterSensitiveLog: (
301
- obj: GetSuiteRunResponse
302
- ) => any;
303
- export declare const GetSuiteRunReportRequestFilterSensitiveLog: (
304
- obj: GetSuiteRunReportRequest
305
- ) => any;
306
- export declare const GetSuiteRunReportResponseFilterSensitiveLog: (
307
- obj: GetSuiteRunReportResponse
308
- ) => any;
309
- export declare const ListSuiteDefinitionsRequestFilterSensitiveLog: (
310
- obj: ListSuiteDefinitionsRequest
311
- ) => any;
312
- export declare const SuiteDefinitionInformationFilterSensitiveLog: (
313
- obj: SuiteDefinitionInformation
314
- ) => any;
315
- export declare const ListSuiteDefinitionsResponseFilterSensitiveLog: (
316
- obj: ListSuiteDefinitionsResponse
317
- ) => any;
318
- export declare const ListSuiteRunsRequestFilterSensitiveLog: (
319
- obj: ListSuiteRunsRequest
320
- ) => any;
321
- export declare const SuiteRunInformationFilterSensitiveLog: (
322
- obj: SuiteRunInformation
323
- ) => any;
324
- export declare const ListSuiteRunsResponseFilterSensitiveLog: (
325
- obj: ListSuiteRunsResponse
326
- ) => any;
327
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (
328
- obj: ListTagsForResourceRequest
329
- ) => any;
330
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (
331
- obj: ListTagsForResourceResponse
332
- ) => any;
333
- export declare const StartSuiteRunRequestFilterSensitiveLog: (
334
- obj: StartSuiteRunRequest
335
- ) => any;
336
- export declare const StartSuiteRunResponseFilterSensitiveLog: (
337
- obj: StartSuiteRunResponse
338
- ) => any;
339
- export declare const StopSuiteRunRequestFilterSensitiveLog: (
340
- obj: StopSuiteRunRequest
341
- ) => any;
342
- export declare const StopSuiteRunResponseFilterSensitiveLog: (
343
- obj: StopSuiteRunResponse
344
- ) => any;
345
- export declare const TagResourceRequestFilterSensitiveLog: (
346
- obj: TagResourceRequest
347
- ) => any;
348
- export declare const TagResourceResponseFilterSensitiveLog: (
349
- obj: TagResourceResponse
350
- ) => any;
351
- export declare const UntagResourceRequestFilterSensitiveLog: (
352
- obj: UntagResourceRequest
353
- ) => any;
354
- export declare const UntagResourceResponseFilterSensitiveLog: (
355
- obj: UntagResourceResponse
356
- ) => any;
357
- export declare const UpdateSuiteDefinitionRequestFilterSensitiveLog: (
358
- obj: UpdateSuiteDefinitionRequest
359
- ) => any;
360
- export declare const UpdateSuiteDefinitionResponseFilterSensitiveLog: (
361
- obj: UpdateSuiteDefinitionResponse
362
- ) => any;
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.296.0",
4
+ "version": "3.298.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",
@@ -11,6 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
14
15
  "generate:client": "node ../../scripts/generate-clients/single-service --solo iotdeviceadvisor"
15
16
  },
16
17
  "main": "./dist-cjs/index.js",
@@ -20,9 +21,9 @@
20
21
  "dependencies": {
21
22
  "@aws-crypto/sha256-browser": "3.0.0",
22
23
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.298.0",
24
25
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
26
+ "@aws-sdk/credential-provider-node": "3.298.0",
26
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
28
  "@aws-sdk/hash-node": "3.296.0",
28
29
  "@aws-sdk/invalid-dependency": "3.296.0",