@aws-sdk/client-iotdeviceadvisor 3.687.0 → 3.692.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.
@@ -34,17 +34,17 @@ export interface DeviceUnderTest {
34
34
  * <p>Lists device's thing ARN.</p>
35
35
  * @public
36
36
  */
37
- thingArn?: string;
37
+ thingArn?: string | undefined;
38
38
  /**
39
39
  * <p>Lists device's certificate ARN.</p>
40
40
  * @public
41
41
  */
42
- certificateArn?: string;
42
+ certificateArn?: string | undefined;
43
43
  /**
44
44
  * <p>Lists device's role ARN.</p>
45
45
  * @public
46
46
  */
47
- deviceRoleArn?: string;
47
+ deviceRoleArn?: string | undefined;
48
48
  }
49
49
  /**
50
50
  * @public
@@ -74,17 +74,17 @@ export interface SuiteDefinitionConfiguration {
74
74
  * <p>Gets the devices configured.</p>
75
75
  * @public
76
76
  */
77
- devices?: DeviceUnderTest[];
77
+ devices?: DeviceUnderTest[] | undefined;
78
78
  /**
79
79
  * <p>Gets the tests intended for qualification in a suite.</p>
80
80
  * @public
81
81
  */
82
- intendedForQualification?: boolean;
82
+ intendedForQualification?: boolean | undefined;
83
83
  /**
84
84
  * <p>Verifies if the test suite is a long duration test.</p>
85
85
  * @public
86
86
  */
87
- isLongDurationTest?: boolean;
87
+ isLongDurationTest?: boolean | undefined;
88
88
  /**
89
89
  * <p>Gets the test suite root group. This is a required parameter.
90
90
  * For updating or creating the latest qualification suite,
@@ -110,7 +110,7 @@ export interface SuiteDefinitionConfiguration {
110
110
  * <p>Sets the MQTT protocol that is configured in the suite definition.</p>
111
111
  * @public
112
112
  */
113
- protocol?: Protocol;
113
+ protocol?: Protocol | undefined;
114
114
  }
115
115
  /**
116
116
  * @public
@@ -125,14 +125,14 @@ export interface CreateSuiteDefinitionRequest {
125
125
  * <p>The tags to be attached to the suite definition.</p>
126
126
  * @public
127
127
  */
128
- tags?: Record<string, string>;
128
+ tags?: Record<string, string> | undefined;
129
129
  /**
130
130
  * <p>The client token for the test suite definition creation.
131
131
  * This token is used for tracking test suite definition creation
132
132
  * using retries and obtaining its status. This parameter is optional.</p>
133
133
  * @public
134
134
  */
135
- clientToken?: string;
135
+ clientToken?: string | undefined;
136
136
  }
137
137
  /**
138
138
  * @public
@@ -142,22 +142,22 @@ export interface CreateSuiteDefinitionResponse {
142
142
  * <p>The UUID of the test suite created.</p>
143
143
  * @public
144
144
  */
145
- suiteDefinitionId?: string;
145
+ suiteDefinitionId?: string | undefined;
146
146
  /**
147
147
  * <p>The Amazon Resource Name (ARN) of the test suite.</p>
148
148
  * @public
149
149
  */
150
- suiteDefinitionArn?: string;
150
+ suiteDefinitionArn?: string | undefined;
151
151
  /**
152
152
  * <p>The suite definition name of the test suite. This is a required parameter.</p>
153
153
  * @public
154
154
  */
155
- suiteDefinitionName?: string;
155
+ suiteDefinitionName?: string | undefined;
156
156
  /**
157
157
  * <p>The timestamp of when the test suite was created.</p>
158
158
  * @public
159
159
  */
160
- createdAt?: Date;
160
+ createdAt?: Date | undefined;
161
161
  }
162
162
  /**
163
163
  * <p>Sends an Internal Failure exception.</p>
@@ -206,22 +206,22 @@ export interface GetEndpointRequest {
206
206
  * <p>The thing ARN of the device. This is an optional parameter.</p>
207
207
  * @public
208
208
  */
209
- thingArn?: string;
209
+ thingArn?: string | undefined;
210
210
  /**
211
211
  * <p>The certificate ARN of the device. This is an optional parameter.</p>
212
212
  * @public
213
213
  */
214
- certificateArn?: string;
214
+ certificateArn?: string | undefined;
215
215
  /**
216
216
  * <p>The device role ARN of the device. This is an optional parameter.</p>
217
217
  * @public
218
218
  */
219
- deviceRoleArn?: string;
219
+ deviceRoleArn?: string | undefined;
220
220
  /**
221
221
  * <p>The authentication method used during the device connection.</p>
222
222
  * @public
223
223
  */
224
- authenticationMethod?: AuthenticationMethod;
224
+ authenticationMethod?: AuthenticationMethod | undefined;
225
225
  }
226
226
  /**
227
227
  * @public
@@ -231,7 +231,7 @@ export interface GetEndpointResponse {
231
231
  * <p>The response of an Device Advisor endpoint.</p>
232
232
  * @public
233
233
  */
234
- endpoint?: string;
234
+ endpoint?: string | undefined;
235
235
  }
236
236
  /**
237
237
  * <p>Sends a Resource Not Found exception.</p>
@@ -258,7 +258,7 @@ export interface GetSuiteDefinitionRequest {
258
258
  * <p>Suite definition version of the test suite to get.</p>
259
259
  * @public
260
260
  */
261
- suiteDefinitionVersion?: string;
261
+ suiteDefinitionVersion?: string | undefined;
262
262
  }
263
263
  /**
264
264
  * @public
@@ -268,42 +268,42 @@ export interface GetSuiteDefinitionResponse {
268
268
  * <p>Suite definition ID of the suite definition.</p>
269
269
  * @public
270
270
  */
271
- suiteDefinitionId?: string;
271
+ suiteDefinitionId?: string | undefined;
272
272
  /**
273
273
  * <p>The ARN of the suite definition.</p>
274
274
  * @public
275
275
  */
276
- suiteDefinitionArn?: string;
276
+ suiteDefinitionArn?: string | undefined;
277
277
  /**
278
278
  * <p>Suite definition version of the suite definition.</p>
279
279
  * @public
280
280
  */
281
- suiteDefinitionVersion?: string;
281
+ suiteDefinitionVersion?: string | undefined;
282
282
  /**
283
283
  * <p>Latest suite definition version of the suite definition.</p>
284
284
  * @public
285
285
  */
286
- latestVersion?: string;
286
+ latestVersion?: string | undefined;
287
287
  /**
288
288
  * <p>Suite configuration of the suite definition.</p>
289
289
  * @public
290
290
  */
291
- suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
291
+ suiteDefinitionConfiguration?: SuiteDefinitionConfiguration | undefined;
292
292
  /**
293
293
  * <p>Date (in Unix epoch time) when the suite definition was created.</p>
294
294
  * @public
295
295
  */
296
- createdAt?: Date;
296
+ createdAt?: Date | undefined;
297
297
  /**
298
298
  * <p>Date (in Unix epoch time) when the suite definition was last modified.</p>
299
299
  * @public
300
300
  */
301
- lastModifiedAt?: Date;
301
+ lastModifiedAt?: Date | undefined;
302
302
  /**
303
303
  * <p>Tags attached to the suite definition.</p>
304
304
  * @public
305
305
  */
306
- tags?: Record<string, string>;
306
+ tags?: Record<string, string> | undefined;
307
307
  }
308
308
  /**
309
309
  * @public
@@ -354,12 +354,12 @@ export interface SuiteRunConfiguration {
354
354
  * <p>Sets test case list.</p>
355
355
  * @public
356
356
  */
357
- selectedTestList?: string[];
357
+ selectedTestList?: string[] | undefined;
358
358
  /**
359
359
  * <p>TRUE if multiple test suites run in parallel.</p>
360
360
  * @public
361
361
  */
362
- parallelRun?: boolean;
362
+ parallelRun?: boolean | undefined;
363
363
  }
364
364
  /**
365
365
  * @public
@@ -420,7 +420,7 @@ export interface TestCaseScenario {
420
420
  * <p>Provides test case scenario ID.</p>
421
421
  * @public
422
422
  */
423
- testCaseScenarioId?: string;
423
+ testCaseScenarioId?: string | undefined;
424
424
  /**
425
425
  * <p>Provides test case scenario type. Type is one of the following:</p>
426
426
  * <ul>
@@ -433,7 +433,7 @@ export interface TestCaseScenario {
433
433
  * </ul>
434
434
  * @public
435
435
  */
436
- testCaseScenarioType?: TestCaseScenarioType;
436
+ testCaseScenarioType?: TestCaseScenarioType | undefined;
437
437
  /**
438
438
  * <p>Provides the test case scenario status. Status is one of the following:</p>
439
439
  * <ul>
@@ -475,17 +475,17 @@ export interface TestCaseScenario {
475
475
  * </ul>
476
476
  * @public
477
477
  */
478
- status?: TestCaseScenarioStatus;
478
+ status?: TestCaseScenarioStatus | undefined;
479
479
  /**
480
480
  * <p>Provides test case scenario failure result.</p>
481
481
  * @public
482
482
  */
483
- failure?: string;
483
+ failure?: string | undefined;
484
484
  /**
485
485
  * <p>Provides test case scenario system messages if any.</p>
486
486
  * @public
487
487
  */
488
- systemMessage?: string;
488
+ systemMessage?: string | undefined;
489
489
  }
490
490
  /**
491
491
  * <p>Provides the test case run.</p>
@@ -496,17 +496,17 @@ export interface TestCaseRun {
496
496
  * <p>Provides the test case run ID.</p>
497
497
  * @public
498
498
  */
499
- testCaseRunId?: string;
499
+ testCaseRunId?: string | undefined;
500
500
  /**
501
501
  * <p>Provides the test case run definition ID.</p>
502
502
  * @public
503
503
  */
504
- testCaseDefinitionId?: string;
504
+ testCaseDefinitionId?: string | undefined;
505
505
  /**
506
506
  * <p>Provides the test case run definition name.</p>
507
507
  * @public
508
508
  */
509
- testCaseDefinitionName?: string;
509
+ testCaseDefinitionName?: string | undefined;
510
510
  /**
511
511
  * <p>Provides the test case run status. Status is one of the following:</p>
512
512
  * <ul>
@@ -548,37 +548,37 @@ export interface TestCaseRun {
548
548
  * </ul>
549
549
  * @public
550
550
  */
551
- status?: Status;
551
+ status?: Status | undefined;
552
552
  /**
553
553
  * <p>Provides test case run start time.</p>
554
554
  * @public
555
555
  */
556
- startTime?: Date;
556
+ startTime?: Date | undefined;
557
557
  /**
558
558
  * <p>Provides test case run end time.</p>
559
559
  * @public
560
560
  */
561
- endTime?: Date;
561
+ endTime?: Date | undefined;
562
562
  /**
563
563
  * <p>Provides test case run log URL.</p>
564
564
  * @public
565
565
  */
566
- logUrl?: string;
566
+ logUrl?: string | undefined;
567
567
  /**
568
568
  * <p>Provides test case run warnings.</p>
569
569
  * @public
570
570
  */
571
- warnings?: string;
571
+ warnings?: string | undefined;
572
572
  /**
573
573
  * <p>Provides test case run failure result.</p>
574
574
  * @public
575
575
  */
576
- failure?: string;
576
+ failure?: string | undefined;
577
577
  /**
578
578
  * <p> Provides the test scenarios for the test case run. </p>
579
579
  * @public
580
580
  */
581
- testScenarios?: TestCaseScenario[];
581
+ testScenarios?: TestCaseScenario[] | undefined;
582
582
  }
583
583
  /**
584
584
  * <p>Show Group Result.</p>
@@ -589,17 +589,17 @@ export interface GroupResult {
589
589
  * <p>Group result ID.</p>
590
590
  * @public
591
591
  */
592
- groupId?: string;
592
+ groupId?: string | undefined;
593
593
  /**
594
594
  * <p>Group Result Name.</p>
595
595
  * @public
596
596
  */
597
- groupName?: string;
597
+ groupName?: string | undefined;
598
598
  /**
599
599
  * <p>Tests under Group Result.</p>
600
600
  * @public
601
601
  */
602
- tests?: TestCaseRun[];
602
+ tests?: TestCaseRun[] | undefined;
603
603
  }
604
604
  /**
605
605
  * <p>Show each group result.</p>
@@ -610,7 +610,7 @@ export interface TestResult {
610
610
  * <p>Show each group of test results.</p>
611
611
  * @public
612
612
  */
613
- groups?: GroupResult[];
613
+ groups?: GroupResult[] | undefined;
614
614
  }
615
615
  /**
616
616
  * @public
@@ -620,57 +620,57 @@ export interface GetSuiteRunResponse {
620
620
  * <p>Suite definition ID for the test suite run.</p>
621
621
  * @public
622
622
  */
623
- suiteDefinitionId?: string;
623
+ suiteDefinitionId?: string | undefined;
624
624
  /**
625
625
  * <p>Suite definition version for the test suite run.</p>
626
626
  * @public
627
627
  */
628
- suiteDefinitionVersion?: string;
628
+ suiteDefinitionVersion?: string | undefined;
629
629
  /**
630
630
  * <p>Suite run ID for the test suite run.</p>
631
631
  * @public
632
632
  */
633
- suiteRunId?: string;
633
+ suiteRunId?: string | undefined;
634
634
  /**
635
635
  * <p>The ARN of the suite run.</p>
636
636
  * @public
637
637
  */
638
- suiteRunArn?: string;
638
+ suiteRunArn?: string | undefined;
639
639
  /**
640
640
  * <p>Suite run configuration for the test suite run.</p>
641
641
  * @public
642
642
  */
643
- suiteRunConfiguration?: SuiteRunConfiguration;
643
+ suiteRunConfiguration?: SuiteRunConfiguration | undefined;
644
644
  /**
645
645
  * <p>Test results for the test suite run.</p>
646
646
  * @public
647
647
  */
648
- testResult?: TestResult;
648
+ testResult?: TestResult | undefined;
649
649
  /**
650
650
  * <p>Date (in Unix epoch time) when the test suite run started.</p>
651
651
  * @public
652
652
  */
653
- startTime?: Date;
653
+ startTime?: Date | undefined;
654
654
  /**
655
655
  * <p>Date (in Unix epoch time) when the test suite run ended.</p>
656
656
  * @public
657
657
  */
658
- endTime?: Date;
658
+ endTime?: Date | undefined;
659
659
  /**
660
660
  * <p>Status for the test suite run.</p>
661
661
  * @public
662
662
  */
663
- status?: SuiteRunStatus;
663
+ status?: SuiteRunStatus | undefined;
664
664
  /**
665
665
  * <p>Error reason for any test suite run failure.</p>
666
666
  * @public
667
667
  */
668
- errorReason?: string;
668
+ errorReason?: string | undefined;
669
669
  /**
670
670
  * <p>The tags attached to the suite run.</p>
671
671
  * @public
672
672
  */
673
- tags?: Record<string, string>;
673
+ tags?: Record<string, string> | undefined;
674
674
  }
675
675
  /**
676
676
  * @public
@@ -695,7 +695,7 @@ export interface GetSuiteRunReportResponse {
695
695
  * <p>Download URL of the qualification report.</p>
696
696
  * @public
697
697
  */
698
- qualificationReportDownloadUrl?: string;
698
+ qualificationReportDownloadUrl?: string | undefined;
699
699
  }
700
700
  /**
701
701
  * @public
@@ -705,12 +705,12 @@ export interface ListSuiteDefinitionsRequest {
705
705
  * <p>The maximum number of results to return at once.</p>
706
706
  * @public
707
707
  */
708
- maxResults?: number;
708
+ maxResults?: number | undefined;
709
709
  /**
710
710
  * <p>A token used to get the next set of results.</p>
711
711
  * @public
712
712
  */
713
- nextToken?: string;
713
+ nextToken?: string | undefined;
714
714
  }
715
715
  /**
716
716
  * <p>Information about the suite definition.</p>
@@ -721,37 +721,37 @@ export interface SuiteDefinitionInformation {
721
721
  * <p>Suite definition ID of the test suite.</p>
722
722
  * @public
723
723
  */
724
- suiteDefinitionId?: string;
724
+ suiteDefinitionId?: string | undefined;
725
725
  /**
726
726
  * <p>Suite name of the test suite.</p>
727
727
  * @public
728
728
  */
729
- suiteDefinitionName?: string;
729
+ suiteDefinitionName?: string | undefined;
730
730
  /**
731
731
  * <p>Specifies the devices that are under test for the test suite.</p>
732
732
  * @public
733
733
  */
734
- defaultDevices?: DeviceUnderTest[];
734
+ defaultDevices?: DeviceUnderTest[] | undefined;
735
735
  /**
736
736
  * <p>Specifies if the test suite is intended for qualification.</p>
737
737
  * @public
738
738
  */
739
- intendedForQualification?: boolean;
739
+ intendedForQualification?: boolean | undefined;
740
740
  /**
741
741
  * <p>Verifies if the test suite is a long duration test.</p>
742
742
  * @public
743
743
  */
744
- isLongDurationTest?: boolean;
744
+ isLongDurationTest?: boolean | undefined;
745
745
  /**
746
746
  * <p>Gets the MQTT protocol that is configured in the suite definition.</p>
747
747
  * @public
748
748
  */
749
- protocol?: Protocol;
749
+ protocol?: Protocol | undefined;
750
750
  /**
751
751
  * <p>Date (in Unix epoch time) when the test suite was created.</p>
752
752
  * @public
753
753
  */
754
- createdAt?: Date;
754
+ createdAt?: Date | undefined;
755
755
  }
756
756
  /**
757
757
  * @public
@@ -762,12 +762,12 @@ export interface ListSuiteDefinitionsResponse {
762
762
  * in the list.</p>
763
763
  * @public
764
764
  */
765
- suiteDefinitionInformationList?: SuiteDefinitionInformation[];
765
+ suiteDefinitionInformationList?: SuiteDefinitionInformation[] | undefined;
766
766
  /**
767
767
  * <p>A token used to get the next set of results.</p>
768
768
  * @public
769
769
  */
770
- nextToken?: string;
770
+ nextToken?: string | undefined;
771
771
  }
772
772
  /**
773
773
  * @public
@@ -778,23 +778,23 @@ export interface ListSuiteRunsRequest {
778
778
  * ID.</p>
779
779
  * @public
780
780
  */
781
- suiteDefinitionId?: string;
781
+ suiteDefinitionId?: string | undefined;
782
782
  /**
783
783
  * <p>Must be passed along with <code>suiteDefinitionId</code>. Lists the test suite runs of
784
784
  * the specified test suite based on suite definition version.</p>
785
785
  * @public
786
786
  */
787
- suiteDefinitionVersion?: string;
787
+ suiteDefinitionVersion?: string | undefined;
788
788
  /**
789
789
  * <p>The maximum number of results to return at once.</p>
790
790
  * @public
791
791
  */
792
- maxResults?: number;
792
+ maxResults?: number | undefined;
793
793
  /**
794
794
  * <p>A token to retrieve the next set of results.</p>
795
795
  * @public
796
796
  */
797
- nextToken?: string;
797
+ nextToken?: string | undefined;
798
798
  }
799
799
  /**
800
800
  * <p>Information about the suite run.</p>
@@ -806,52 +806,52 @@ export interface SuiteRunInformation {
806
806
  * <p>Suite definition ID of the suite run.</p>
807
807
  * @public
808
808
  */
809
- suiteDefinitionId?: string;
809
+ suiteDefinitionId?: string | undefined;
810
810
  /**
811
811
  * <p>Suite definition version of the suite run.</p>
812
812
  * @public
813
813
  */
814
- suiteDefinitionVersion?: string;
814
+ suiteDefinitionVersion?: string | undefined;
815
815
  /**
816
816
  * <p>Suite definition name of the suite run.</p>
817
817
  * @public
818
818
  */
819
- suiteDefinitionName?: string;
819
+ suiteDefinitionName?: string | undefined;
820
820
  /**
821
821
  * <p>Suite run ID of the suite run.</p>
822
822
  * @public
823
823
  */
824
- suiteRunId?: string;
824
+ suiteRunId?: string | undefined;
825
825
  /**
826
826
  * <p>Date (in Unix epoch time) when the suite run was created.</p>
827
827
  * @public
828
828
  */
829
- createdAt?: Date;
829
+ createdAt?: Date | undefined;
830
830
  /**
831
831
  * <p>Date (in Unix epoch time) when the suite run was started.</p>
832
832
  * @public
833
833
  */
834
- startedAt?: Date;
834
+ startedAt?: Date | undefined;
835
835
  /**
836
836
  * <p>Date (in Unix epoch time) when the suite run ended.</p>
837
837
  * @public
838
838
  */
839
- endAt?: Date;
839
+ endAt?: Date | undefined;
840
840
  /**
841
841
  * <p>Status of the suite run.</p>
842
842
  * @public
843
843
  */
844
- status?: SuiteRunStatus;
844
+ status?: SuiteRunStatus | undefined;
845
845
  /**
846
846
  * <p>Number of test cases that passed in the suite run.</p>
847
847
  * @public
848
848
  */
849
- passed?: number;
849
+ passed?: number | undefined;
850
850
  /**
851
851
  * <p>Number of test cases that failed in the suite run.</p>
852
852
  * @public
853
853
  */
854
- failed?: number;
854
+ failed?: number | undefined;
855
855
  }
856
856
  /**
857
857
  * @public
@@ -862,12 +862,12 @@ export interface ListSuiteRunsResponse {
862
862
  * list.</p>
863
863
  * @public
864
864
  */
865
- suiteRunsList?: SuiteRunInformation[];
865
+ suiteRunsList?: SuiteRunInformation[] | undefined;
866
866
  /**
867
867
  * <p>A token to retrieve the next set of results.</p>
868
868
  * @public
869
869
  */
870
- nextToken?: string;
870
+ nextToken?: string | undefined;
871
871
  }
872
872
  /**
873
873
  * @public
@@ -888,7 +888,7 @@ export interface ListTagsForResourceResponse {
888
888
  * <p>The tags attached to the IoT Device Advisor resource.</p>
889
889
  * @public
890
890
  */
891
- tags?: Record<string, string>;
891
+ tags?: Record<string, string> | undefined;
892
892
  }
893
893
  /**
894
894
  * @public
@@ -903,7 +903,7 @@ export interface StartSuiteRunRequest {
903
903
  * <p>Suite definition version of the test suite.</p>
904
904
  * @public
905
905
  */
906
- suiteDefinitionVersion?: string;
906
+ suiteDefinitionVersion?: string | undefined;
907
907
  /**
908
908
  * <p>Suite run configuration.</p>
909
909
  * @public
@@ -913,7 +913,7 @@ export interface StartSuiteRunRequest {
913
913
  * <p>The tags to be attached to the suite run.</p>
914
914
  * @public
915
915
  */
916
- tags?: Record<string, string>;
916
+ tags?: Record<string, string> | undefined;
917
917
  }
918
918
  /**
919
919
  * @public
@@ -923,22 +923,22 @@ export interface StartSuiteRunResponse {
923
923
  * <p>Suite Run ID of the started suite run.</p>
924
924
  * @public
925
925
  */
926
- suiteRunId?: string;
926
+ suiteRunId?: string | undefined;
927
927
  /**
928
928
  * <p>Amazon Resource Name (ARN) of the started suite run.</p>
929
929
  * @public
930
930
  */
931
- suiteRunArn?: string;
931
+ suiteRunArn?: string | undefined;
932
932
  /**
933
933
  * <p>Starts a Device Advisor test suite run based on suite create time.</p>
934
934
  * @public
935
935
  */
936
- createdAt?: Date;
936
+ createdAt?: Date | undefined;
937
937
  /**
938
938
  * <p>The response of an Device Advisor test endpoint.</p>
939
939
  * @public
940
940
  */
941
- endpoint?: string;
941
+ endpoint?: string | undefined;
942
942
  }
943
943
  /**
944
944
  * @public
@@ -1025,30 +1025,30 @@ export interface UpdateSuiteDefinitionResponse {
1025
1025
  * <p>Suite definition ID of the updated test suite.</p>
1026
1026
  * @public
1027
1027
  */
1028
- suiteDefinitionId?: string;
1028
+ suiteDefinitionId?: string | undefined;
1029
1029
  /**
1030
1030
  * <p>Amazon Resource Name (ARN) of the updated test suite.</p>
1031
1031
  * @public
1032
1032
  */
1033
- suiteDefinitionArn?: string;
1033
+ suiteDefinitionArn?: string | undefined;
1034
1034
  /**
1035
1035
  * <p>Updates the suite definition name. This is a required parameter.</p>
1036
1036
  * @public
1037
1037
  */
1038
- suiteDefinitionName?: string;
1038
+ suiteDefinitionName?: string | undefined;
1039
1039
  /**
1040
1040
  * <p>Suite definition version of the updated test suite.</p>
1041
1041
  * @public
1042
1042
  */
1043
- suiteDefinitionVersion?: string;
1043
+ suiteDefinitionVersion?: string | undefined;
1044
1044
  /**
1045
1045
  * <p>Timestamp of when the test suite was created.</p>
1046
1046
  * @public
1047
1047
  */
1048
- createdAt?: Date;
1048
+ createdAt?: Date | undefined;
1049
1049
  /**
1050
1050
  * <p>Timestamp of when the test suite was updated.</p>
1051
1051
  * @public
1052
1052
  */
1053
- lastUpdatedAt?: Date;
1053
+ lastUpdatedAt?: Date | undefined;
1054
1054
  }
@@ -12,9 +12,9 @@ export declare class ConflictException extends __BaseException {
12
12
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
13
13
  }
14
14
  export interface DeviceUnderTest {
15
- thingArn?: string;
16
- certificateArn?: string;
17
- deviceRoleArn?: string;
15
+ thingArn?: string | undefined;
16
+ certificateArn?: string | undefined;
17
+ deviceRoleArn?: string | undefined;
18
18
  }
19
19
  export declare const Protocol: {
20
20
  readonly MqttV3_1_1: "MqttV3_1_1";
@@ -25,23 +25,23 @@ export declare const Protocol: {
25
25
  export type Protocol = (typeof Protocol)[keyof typeof Protocol];
26
26
  export interface SuiteDefinitionConfiguration {
27
27
  suiteDefinitionName: string | undefined;
28
- devices?: DeviceUnderTest[];
29
- intendedForQualification?: boolean;
30
- isLongDurationTest?: boolean;
28
+ devices?: DeviceUnderTest[] | undefined;
29
+ intendedForQualification?: boolean | undefined;
30
+ isLongDurationTest?: boolean | undefined;
31
31
  rootGroup: string | undefined;
32
32
  devicePermissionRoleArn: string | undefined;
33
- protocol?: Protocol;
33
+ protocol?: Protocol | undefined;
34
34
  }
35
35
  export interface CreateSuiteDefinitionRequest {
36
36
  suiteDefinitionConfiguration: SuiteDefinitionConfiguration | undefined;
37
- tags?: Record<string, string>;
38
- clientToken?: string;
37
+ tags?: Record<string, string> | undefined;
38
+ clientToken?: string | undefined;
39
39
  }
40
40
  export interface CreateSuiteDefinitionResponse {
41
- suiteDefinitionId?: string;
42
- suiteDefinitionArn?: string;
43
- suiteDefinitionName?: string;
44
- createdAt?: Date;
41
+ suiteDefinitionId?: string | undefined;
42
+ suiteDefinitionArn?: string | undefined;
43
+ suiteDefinitionName?: string | undefined;
44
+ createdAt?: Date | undefined;
45
45
  }
46
46
  export declare class InternalServerException extends __BaseException {
47
47
  readonly name: "InternalServerException";
@@ -62,13 +62,13 @@ export interface DeleteSuiteDefinitionRequest {
62
62
  }
63
63
  export interface DeleteSuiteDefinitionResponse {}
64
64
  export interface GetEndpointRequest {
65
- thingArn?: string;
66
- certificateArn?: string;
67
- deviceRoleArn?: string;
68
- authenticationMethod?: AuthenticationMethod;
65
+ thingArn?: string | undefined;
66
+ certificateArn?: string | undefined;
67
+ deviceRoleArn?: string | undefined;
68
+ authenticationMethod?: AuthenticationMethod | undefined;
69
69
  }
70
70
  export interface GetEndpointResponse {
71
- endpoint?: string;
71
+ endpoint?: string | undefined;
72
72
  }
73
73
  export declare class ResourceNotFoundException extends __BaseException {
74
74
  readonly name: "ResourceNotFoundException";
@@ -79,17 +79,17 @@ export declare class ResourceNotFoundException extends __BaseException {
79
79
  }
80
80
  export interface GetSuiteDefinitionRequest {
81
81
  suiteDefinitionId: string | undefined;
82
- suiteDefinitionVersion?: string;
82
+ suiteDefinitionVersion?: string | undefined;
83
83
  }
84
84
  export interface GetSuiteDefinitionResponse {
85
- suiteDefinitionId?: string;
86
- suiteDefinitionArn?: string;
87
- suiteDefinitionVersion?: string;
88
- latestVersion?: string;
89
- suiteDefinitionConfiguration?: SuiteDefinitionConfiguration;
90
- createdAt?: Date;
91
- lastModifiedAt?: Date;
92
- tags?: Record<string, string>;
85
+ suiteDefinitionId?: string | undefined;
86
+ suiteDefinitionArn?: string | undefined;
87
+ suiteDefinitionVersion?: string | undefined;
88
+ latestVersion?: string | undefined;
89
+ suiteDefinitionConfiguration?: SuiteDefinitionConfiguration | undefined;
90
+ createdAt?: Date | undefined;
91
+ lastModifiedAt?: Date | undefined;
92
+ tags?: Record<string, string> | undefined;
93
93
  }
94
94
  export interface GetSuiteRunRequest {
95
95
  suiteDefinitionId: string | undefined;
@@ -110,8 +110,8 @@ export type SuiteRunStatus =
110
110
  (typeof SuiteRunStatus)[keyof typeof SuiteRunStatus];
111
111
  export interface SuiteRunConfiguration {
112
112
  primaryDevice: DeviceUnderTest | undefined;
113
- selectedTestList?: string[];
114
- parallelRun?: boolean;
113
+ selectedTestList?: string[] | undefined;
114
+ parallelRun?: boolean | undefined;
115
115
  }
116
116
  export declare const Status: {
117
117
  readonly CANCELED: "CANCELED";
@@ -145,108 +145,108 @@ export declare const TestCaseScenarioType: {
145
145
  export type TestCaseScenarioType =
146
146
  (typeof TestCaseScenarioType)[keyof typeof TestCaseScenarioType];
147
147
  export interface TestCaseScenario {
148
- testCaseScenarioId?: string;
149
- testCaseScenarioType?: TestCaseScenarioType;
150
- status?: TestCaseScenarioStatus;
151
- failure?: string;
152
- systemMessage?: string;
148
+ testCaseScenarioId?: string | undefined;
149
+ testCaseScenarioType?: TestCaseScenarioType | undefined;
150
+ status?: TestCaseScenarioStatus | undefined;
151
+ failure?: string | undefined;
152
+ systemMessage?: string | undefined;
153
153
  }
154
154
  export interface TestCaseRun {
155
- testCaseRunId?: string;
156
- testCaseDefinitionId?: string;
157
- testCaseDefinitionName?: string;
158
- status?: Status;
159
- startTime?: Date;
160
- endTime?: Date;
161
- logUrl?: string;
162
- warnings?: string;
163
- failure?: string;
164
- testScenarios?: TestCaseScenario[];
155
+ testCaseRunId?: string | undefined;
156
+ testCaseDefinitionId?: string | undefined;
157
+ testCaseDefinitionName?: string | undefined;
158
+ status?: Status | undefined;
159
+ startTime?: Date | undefined;
160
+ endTime?: Date | undefined;
161
+ logUrl?: string | undefined;
162
+ warnings?: string | undefined;
163
+ failure?: string | undefined;
164
+ testScenarios?: TestCaseScenario[] | undefined;
165
165
  }
166
166
  export interface GroupResult {
167
- groupId?: string;
168
- groupName?: string;
169
- tests?: TestCaseRun[];
167
+ groupId?: string | undefined;
168
+ groupName?: string | undefined;
169
+ tests?: TestCaseRun[] | undefined;
170
170
  }
171
171
  export interface TestResult {
172
- groups?: GroupResult[];
172
+ groups?: GroupResult[] | undefined;
173
173
  }
174
174
  export interface GetSuiteRunResponse {
175
- suiteDefinitionId?: string;
176
- suiteDefinitionVersion?: string;
177
- suiteRunId?: string;
178
- suiteRunArn?: string;
179
- suiteRunConfiguration?: SuiteRunConfiguration;
180
- testResult?: TestResult;
181
- startTime?: Date;
182
- endTime?: Date;
183
- status?: SuiteRunStatus;
184
- errorReason?: string;
185
- tags?: Record<string, string>;
175
+ suiteDefinitionId?: string | undefined;
176
+ suiteDefinitionVersion?: string | undefined;
177
+ suiteRunId?: string | undefined;
178
+ suiteRunArn?: string | undefined;
179
+ suiteRunConfiguration?: SuiteRunConfiguration | undefined;
180
+ testResult?: TestResult | undefined;
181
+ startTime?: Date | undefined;
182
+ endTime?: Date | undefined;
183
+ status?: SuiteRunStatus | undefined;
184
+ errorReason?: string | undefined;
185
+ tags?: Record<string, string> | undefined;
186
186
  }
187
187
  export interface GetSuiteRunReportRequest {
188
188
  suiteDefinitionId: string | undefined;
189
189
  suiteRunId: string | undefined;
190
190
  }
191
191
  export interface GetSuiteRunReportResponse {
192
- qualificationReportDownloadUrl?: string;
192
+ qualificationReportDownloadUrl?: string | undefined;
193
193
  }
194
194
  export interface ListSuiteDefinitionsRequest {
195
- maxResults?: number;
196
- nextToken?: string;
195
+ maxResults?: number | undefined;
196
+ nextToken?: string | undefined;
197
197
  }
198
198
  export interface SuiteDefinitionInformation {
199
- suiteDefinitionId?: string;
200
- suiteDefinitionName?: string;
201
- defaultDevices?: DeviceUnderTest[];
202
- intendedForQualification?: boolean;
203
- isLongDurationTest?: boolean;
204
- protocol?: Protocol;
205
- createdAt?: Date;
199
+ suiteDefinitionId?: string | undefined;
200
+ suiteDefinitionName?: string | undefined;
201
+ defaultDevices?: DeviceUnderTest[] | undefined;
202
+ intendedForQualification?: boolean | undefined;
203
+ isLongDurationTest?: boolean | undefined;
204
+ protocol?: Protocol | undefined;
205
+ createdAt?: Date | undefined;
206
206
  }
207
207
  export interface ListSuiteDefinitionsResponse {
208
- suiteDefinitionInformationList?: SuiteDefinitionInformation[];
209
- nextToken?: string;
208
+ suiteDefinitionInformationList?: SuiteDefinitionInformation[] | undefined;
209
+ nextToken?: string | undefined;
210
210
  }
211
211
  export interface ListSuiteRunsRequest {
212
- suiteDefinitionId?: string;
213
- suiteDefinitionVersion?: string;
214
- maxResults?: number;
215
- nextToken?: string;
212
+ suiteDefinitionId?: string | undefined;
213
+ suiteDefinitionVersion?: string | undefined;
214
+ maxResults?: number | undefined;
215
+ nextToken?: string | undefined;
216
216
  }
217
217
  export interface SuiteRunInformation {
218
- suiteDefinitionId?: string;
219
- suiteDefinitionVersion?: string;
220
- suiteDefinitionName?: string;
221
- suiteRunId?: string;
222
- createdAt?: Date;
223
- startedAt?: Date;
224
- endAt?: Date;
225
- status?: SuiteRunStatus;
226
- passed?: number;
227
- failed?: number;
218
+ suiteDefinitionId?: string | undefined;
219
+ suiteDefinitionVersion?: string | undefined;
220
+ suiteDefinitionName?: string | undefined;
221
+ suiteRunId?: string | undefined;
222
+ createdAt?: Date | undefined;
223
+ startedAt?: Date | undefined;
224
+ endAt?: Date | undefined;
225
+ status?: SuiteRunStatus | undefined;
226
+ passed?: number | undefined;
227
+ failed?: number | undefined;
228
228
  }
229
229
  export interface ListSuiteRunsResponse {
230
- suiteRunsList?: SuiteRunInformation[];
231
- nextToken?: string;
230
+ suiteRunsList?: SuiteRunInformation[] | undefined;
231
+ nextToken?: string | undefined;
232
232
  }
233
233
  export interface ListTagsForResourceRequest {
234
234
  resourceArn: string | undefined;
235
235
  }
236
236
  export interface ListTagsForResourceResponse {
237
- tags?: Record<string, string>;
237
+ tags?: Record<string, string> | undefined;
238
238
  }
239
239
  export interface StartSuiteRunRequest {
240
240
  suiteDefinitionId: string | undefined;
241
- suiteDefinitionVersion?: string;
241
+ suiteDefinitionVersion?: string | undefined;
242
242
  suiteRunConfiguration: SuiteRunConfiguration | undefined;
243
- tags?: Record<string, string>;
243
+ tags?: Record<string, string> | undefined;
244
244
  }
245
245
  export interface StartSuiteRunResponse {
246
- suiteRunId?: string;
247
- suiteRunArn?: string;
248
- createdAt?: Date;
249
- endpoint?: string;
246
+ suiteRunId?: string | undefined;
247
+ suiteRunArn?: string | undefined;
248
+ createdAt?: Date | undefined;
249
+ endpoint?: string | undefined;
250
250
  }
251
251
  export interface StopSuiteRunRequest {
252
252
  suiteDefinitionId: string | undefined;
@@ -268,10 +268,10 @@ export interface UpdateSuiteDefinitionRequest {
268
268
  suiteDefinitionConfiguration: SuiteDefinitionConfiguration | undefined;
269
269
  }
270
270
  export interface UpdateSuiteDefinitionResponse {
271
- suiteDefinitionId?: string;
272
- suiteDefinitionArn?: string;
273
- suiteDefinitionName?: string;
274
- suiteDefinitionVersion?: string;
275
- createdAt?: Date;
276
- lastUpdatedAt?: Date;
271
+ suiteDefinitionId?: string | undefined;
272
+ suiteDefinitionArn?: string | undefined;
273
+ suiteDefinitionName?: string | undefined;
274
+ suiteDefinitionVersion?: string | undefined;
275
+ createdAt?: Date | undefined;
276
+ lastUpdatedAt?: Date | undefined;
277
277
  }
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.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-iotdeviceadvisor",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",