@aws-sdk/client-migration-hub 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.
- package/dist-types/models/models_0.d.ts +65 -65
- package/dist-types/ts3.4/models/models_0.d.ts +65 -65
- package/package.json +35 -35
|
@@ -7,7 +7,7 @@ import { MigrationHubServiceException as __BaseException } from "./MigrationHubS
|
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -37,17 +37,17 @@ export interface ApplicationState {
|
|
|
37
37
|
* application.</p>
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
|
-
ApplicationId?: string;
|
|
40
|
+
ApplicationId?: string | undefined;
|
|
41
41
|
/**
|
|
42
42
|
* <p>The current status of an application.</p>
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
|
-
ApplicationStatus?: ApplicationStatus;
|
|
45
|
+
ApplicationStatus?: ApplicationStatus | undefined;
|
|
46
46
|
/**
|
|
47
47
|
* <p>The timestamp when the application status was last updated.</p>
|
|
48
48
|
* @public
|
|
49
49
|
*/
|
|
50
|
-
LastUpdatedTime?: Date;
|
|
50
|
+
LastUpdatedTime?: Date | undefined;
|
|
51
51
|
}
|
|
52
52
|
/**
|
|
53
53
|
* <p>An ARN of the AWS cloud resource target receiving the migration (e.g., AMI, EC2
|
|
@@ -65,7 +65,7 @@ export interface CreatedArtifact {
|
|
|
65
65
|
* for clarity or for later reference.</p>
|
|
66
66
|
* @public
|
|
67
67
|
*/
|
|
68
|
-
Description?: string;
|
|
68
|
+
Description?: string | undefined;
|
|
69
69
|
}
|
|
70
70
|
/**
|
|
71
71
|
* @public
|
|
@@ -94,7 +94,7 @@ export interface AssociateCreatedArtifactRequest {
|
|
|
94
94
|
* the caller has permission to make the call.</p>
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
|
-
DryRun?: boolean;
|
|
97
|
+
DryRun?: boolean | undefined;
|
|
98
98
|
}
|
|
99
99
|
/**
|
|
100
100
|
* @public
|
|
@@ -109,7 +109,7 @@ export interface AssociateCreatedArtifactResult {
|
|
|
109
109
|
export declare class DryRunOperation extends __BaseException {
|
|
110
110
|
readonly name: "DryRunOperation";
|
|
111
111
|
readonly $fault: "client";
|
|
112
|
-
Message?: string;
|
|
112
|
+
Message?: string | undefined;
|
|
113
113
|
/**
|
|
114
114
|
* @internal
|
|
115
115
|
*/
|
|
@@ -122,7 +122,7 @@ export declare class DryRunOperation extends __BaseException {
|
|
|
122
122
|
export declare class HomeRegionNotSetException extends __BaseException {
|
|
123
123
|
readonly name: "HomeRegionNotSetException";
|
|
124
124
|
readonly $fault: "client";
|
|
125
|
-
Message?: string;
|
|
125
|
+
Message?: string | undefined;
|
|
126
126
|
/**
|
|
127
127
|
* @internal
|
|
128
128
|
*/
|
|
@@ -136,7 +136,7 @@ export declare class HomeRegionNotSetException extends __BaseException {
|
|
|
136
136
|
export declare class InternalServerError extends __BaseException {
|
|
137
137
|
readonly name: "InternalServerError";
|
|
138
138
|
readonly $fault: "server";
|
|
139
|
-
Message?: string;
|
|
139
|
+
Message?: string | undefined;
|
|
140
140
|
/**
|
|
141
141
|
* @internal
|
|
142
142
|
*/
|
|
@@ -150,7 +150,7 @@ export declare class InternalServerError extends __BaseException {
|
|
|
150
150
|
export declare class InvalidInputException extends __BaseException {
|
|
151
151
|
readonly name: "InvalidInputException";
|
|
152
152
|
readonly $fault: "client";
|
|
153
|
-
Message?: string;
|
|
153
|
+
Message?: string | undefined;
|
|
154
154
|
/**
|
|
155
155
|
* @internal
|
|
156
156
|
*/
|
|
@@ -165,7 +165,7 @@ export declare class InvalidInputException extends __BaseException {
|
|
|
165
165
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
166
166
|
readonly name: "ResourceNotFoundException";
|
|
167
167
|
readonly $fault: "client";
|
|
168
|
-
Message?: string;
|
|
168
|
+
Message?: string | undefined;
|
|
169
169
|
/**
|
|
170
170
|
* @internal
|
|
171
171
|
*/
|
|
@@ -179,7 +179,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
179
179
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
180
180
|
readonly name: "ServiceUnavailableException";
|
|
181
181
|
readonly $fault: "server";
|
|
182
|
-
Message?: string;
|
|
182
|
+
Message?: string | undefined;
|
|
183
183
|
/**
|
|
184
184
|
* @internal
|
|
185
185
|
*/
|
|
@@ -201,7 +201,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
201
201
|
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
|
-
RetryAfterSeconds?: number;
|
|
204
|
+
RetryAfterSeconds?: number | undefined;
|
|
205
205
|
/**
|
|
206
206
|
* @internal
|
|
207
207
|
*/
|
|
@@ -215,7 +215,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
215
215
|
export declare class UnauthorizedOperation extends __BaseException {
|
|
216
216
|
readonly name: "UnauthorizedOperation";
|
|
217
217
|
readonly $fault: "client";
|
|
218
|
-
Message?: string;
|
|
218
|
+
Message?: string | undefined;
|
|
219
219
|
/**
|
|
220
220
|
* @internal
|
|
221
221
|
*/
|
|
@@ -237,7 +237,7 @@ export interface DiscoveredResource {
|
|
|
237
237
|
* discovered resource for clarity or later reference.</p>
|
|
238
238
|
* @public
|
|
239
239
|
*/
|
|
240
|
-
Description?: string;
|
|
240
|
+
Description?: string | undefined;
|
|
241
241
|
}
|
|
242
242
|
/**
|
|
243
243
|
* @public
|
|
@@ -265,7 +265,7 @@ export interface AssociateDiscoveredResourceRequest {
|
|
|
265
265
|
* the caller has permission to make the call.</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
DryRun?: boolean;
|
|
268
|
+
DryRun?: boolean | undefined;
|
|
269
269
|
}
|
|
270
270
|
/**
|
|
271
271
|
* @public
|
|
@@ -281,7 +281,7 @@ export interface AssociateDiscoveredResourceResult {
|
|
|
281
281
|
export declare class PolicyErrorException extends __BaseException {
|
|
282
282
|
readonly name: "PolicyErrorException";
|
|
283
283
|
readonly $fault: "client";
|
|
284
|
-
Message?: string;
|
|
284
|
+
Message?: string | undefined;
|
|
285
285
|
/**
|
|
286
286
|
* @internal
|
|
287
287
|
*/
|
|
@@ -303,7 +303,7 @@ export interface CreateProgressUpdateStreamRequest {
|
|
|
303
303
|
* the caller has permission to make the call.</p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
DryRun?: boolean;
|
|
306
|
+
DryRun?: boolean | undefined;
|
|
307
307
|
}
|
|
308
308
|
/**
|
|
309
309
|
* @public
|
|
@@ -326,7 +326,7 @@ export interface DeleteProgressUpdateStreamRequest {
|
|
|
326
326
|
* the caller has permission to make the call.</p>
|
|
327
327
|
* @public
|
|
328
328
|
*/
|
|
329
|
-
DryRun?: boolean;
|
|
329
|
+
DryRun?: boolean | undefined;
|
|
330
330
|
}
|
|
331
331
|
/**
|
|
332
332
|
* @public
|
|
@@ -352,12 +352,12 @@ export interface DescribeApplicationStateResult {
|
|
|
352
352
|
* <p>Status of the application - Not Started, In-Progress, Complete.</p>
|
|
353
353
|
* @public
|
|
354
354
|
*/
|
|
355
|
-
ApplicationStatus?: ApplicationStatus;
|
|
355
|
+
ApplicationStatus?: ApplicationStatus | undefined;
|
|
356
356
|
/**
|
|
357
357
|
* <p>The timestamp when the application status was last updated.</p>
|
|
358
358
|
* @public
|
|
359
359
|
*/
|
|
360
|
-
LastUpdatedTime?: Date;
|
|
360
|
+
LastUpdatedTime?: Date | undefined;
|
|
361
361
|
}
|
|
362
362
|
/**
|
|
363
363
|
* @public
|
|
@@ -478,12 +478,12 @@ export interface Task {
|
|
|
478
478
|
* explains an error state.</p>
|
|
479
479
|
* @public
|
|
480
480
|
*/
|
|
481
|
-
StatusDetail?: string;
|
|
481
|
+
StatusDetail?: string | undefined;
|
|
482
482
|
/**
|
|
483
483
|
* <p>Indication of the percentage completion of the task.</p>
|
|
484
484
|
* @public
|
|
485
485
|
*/
|
|
486
|
-
ProgressPercent?: number;
|
|
486
|
+
ProgressPercent?: number | undefined;
|
|
487
487
|
}
|
|
488
488
|
/**
|
|
489
489
|
* <p>Represents a migration task in a migration tool.</p>
|
|
@@ -494,30 +494,30 @@ export interface MigrationTask {
|
|
|
494
494
|
* <p>A name that identifies the vendor of the migration tool being used.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
ProgressUpdateStream?: string;
|
|
497
|
+
ProgressUpdateStream?: string | undefined;
|
|
498
498
|
/**
|
|
499
499
|
* <p>Unique identifier that references the migration task. <i>Do not store personal
|
|
500
500
|
* data in this field.</i>
|
|
501
501
|
* </p>
|
|
502
502
|
* @public
|
|
503
503
|
*/
|
|
504
|
-
MigrationTaskName?: string;
|
|
504
|
+
MigrationTaskName?: string | undefined;
|
|
505
505
|
/**
|
|
506
506
|
* <p>Task object encapsulating task information.</p>
|
|
507
507
|
* @public
|
|
508
508
|
*/
|
|
509
|
-
Task?: Task;
|
|
509
|
+
Task?: Task | undefined;
|
|
510
510
|
/**
|
|
511
511
|
* <p>The timestamp when the task was gathered.</p>
|
|
512
512
|
* @public
|
|
513
513
|
*/
|
|
514
|
-
UpdateDateTime?: Date;
|
|
514
|
+
UpdateDateTime?: Date | undefined;
|
|
515
515
|
/**
|
|
516
516
|
* <p>Information about the resource that is being migrated. This data will be used to map the
|
|
517
517
|
* task to a resource in the Application Discovery Service repository.</p>
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
|
-
ResourceAttributeList?: ResourceAttribute[];
|
|
520
|
+
ResourceAttributeList?: ResourceAttribute[] | undefined;
|
|
521
521
|
}
|
|
522
522
|
/**
|
|
523
523
|
* @public
|
|
@@ -527,7 +527,7 @@ export interface DescribeMigrationTaskResult {
|
|
|
527
527
|
* <p>Object encapsulating information about the migration task.</p>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
MigrationTask?: MigrationTask;
|
|
530
|
+
MigrationTask?: MigrationTask | undefined;
|
|
531
531
|
}
|
|
532
532
|
/**
|
|
533
533
|
* @public
|
|
@@ -556,7 +556,7 @@ export interface DisassociateCreatedArtifactRequest {
|
|
|
556
556
|
* the caller has permission to make the call.</p>
|
|
557
557
|
* @public
|
|
558
558
|
*/
|
|
559
|
-
DryRun?: boolean;
|
|
559
|
+
DryRun?: boolean | undefined;
|
|
560
560
|
}
|
|
561
561
|
/**
|
|
562
562
|
* @public
|
|
@@ -590,7 +590,7 @@ export interface DisassociateDiscoveredResourceRequest {
|
|
|
590
590
|
* the caller has permission to make the call.</p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
DryRun?: boolean;
|
|
593
|
+
DryRun?: boolean | undefined;
|
|
594
594
|
}
|
|
595
595
|
/**
|
|
596
596
|
* @public
|
|
@@ -618,7 +618,7 @@ export interface ImportMigrationTaskRequest {
|
|
|
618
618
|
* the caller has permission to make the call.</p>
|
|
619
619
|
* @public
|
|
620
620
|
*/
|
|
621
|
-
DryRun?: boolean;
|
|
621
|
+
DryRun?: boolean | undefined;
|
|
622
622
|
}
|
|
623
623
|
/**
|
|
624
624
|
* @public
|
|
@@ -634,19 +634,19 @@ export interface ListApplicationStatesRequest {
|
|
|
634
634
|
* your applications.</p>
|
|
635
635
|
* @public
|
|
636
636
|
*/
|
|
637
|
-
ApplicationIds?: string[];
|
|
637
|
+
ApplicationIds?: string[] | undefined;
|
|
638
638
|
/**
|
|
639
639
|
* <p>If a <code>NextToken</code> was returned by a previous call, there are more results
|
|
640
640
|
* available. To retrieve the next page of results, make the call again using the returned
|
|
641
641
|
* token in <code>NextToken</code>.</p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
NextToken?: string;
|
|
644
|
+
NextToken?: string | undefined;
|
|
645
645
|
/**
|
|
646
646
|
* <p>Maximum number of results to be returned per page.</p>
|
|
647
647
|
* @public
|
|
648
648
|
*/
|
|
649
|
-
MaxResults?: number;
|
|
649
|
+
MaxResults?: number | undefined;
|
|
650
650
|
}
|
|
651
651
|
/**
|
|
652
652
|
* @public
|
|
@@ -656,14 +656,14 @@ export interface ListApplicationStatesResult {
|
|
|
656
656
|
* <p>A list of Applications that exist in Application Discovery Service.</p>
|
|
657
657
|
* @public
|
|
658
658
|
*/
|
|
659
|
-
ApplicationStateList?: ApplicationState[];
|
|
659
|
+
ApplicationStateList?: ApplicationState[] | undefined;
|
|
660
660
|
/**
|
|
661
661
|
* <p>If a <code>NextToken</code> was returned by a previous call, there are more results
|
|
662
662
|
* available. To retrieve the next page of results, make the call again using the returned
|
|
663
663
|
* token in <code>NextToken</code>.</p>
|
|
664
664
|
* @public
|
|
665
665
|
*/
|
|
666
|
-
NextToken?: string;
|
|
666
|
+
NextToken?: string | undefined;
|
|
667
667
|
}
|
|
668
668
|
/**
|
|
669
669
|
* @public
|
|
@@ -687,12 +687,12 @@ export interface ListCreatedArtifactsRequest {
|
|
|
687
687
|
* token in <code>NextToken</code>.</p>
|
|
688
688
|
* @public
|
|
689
689
|
*/
|
|
690
|
-
NextToken?: string;
|
|
690
|
+
NextToken?: string | undefined;
|
|
691
691
|
/**
|
|
692
692
|
* <p>Maximum number of results to be returned per page.</p>
|
|
693
693
|
* @public
|
|
694
694
|
*/
|
|
695
|
-
MaxResults?: number;
|
|
695
|
+
MaxResults?: number | undefined;
|
|
696
696
|
}
|
|
697
697
|
/**
|
|
698
698
|
* @public
|
|
@@ -703,13 +703,13 @@ export interface ListCreatedArtifactsResult {
|
|
|
703
703
|
* passed to the next call as a bookmark of where to start from.</p>
|
|
704
704
|
* @public
|
|
705
705
|
*/
|
|
706
|
-
NextToken?: string;
|
|
706
|
+
NextToken?: string | undefined;
|
|
707
707
|
/**
|
|
708
708
|
* <p>List of created artifacts up to the maximum number of results specified in the
|
|
709
709
|
* request.</p>
|
|
710
710
|
* @public
|
|
711
711
|
*/
|
|
712
|
-
CreatedArtifactList?: CreatedArtifact[];
|
|
712
|
+
CreatedArtifactList?: CreatedArtifact[] | undefined;
|
|
713
713
|
}
|
|
714
714
|
/**
|
|
715
715
|
* @public
|
|
@@ -733,12 +733,12 @@ export interface ListDiscoveredResourcesRequest {
|
|
|
733
733
|
* token in <code>NextToken</code>.</p>
|
|
734
734
|
* @public
|
|
735
735
|
*/
|
|
736
|
-
NextToken?: string;
|
|
736
|
+
NextToken?: string | undefined;
|
|
737
737
|
/**
|
|
738
738
|
* <p>The maximum number of results returned per page.</p>
|
|
739
739
|
* @public
|
|
740
740
|
*/
|
|
741
|
-
MaxResults?: number;
|
|
741
|
+
MaxResults?: number | undefined;
|
|
742
742
|
}
|
|
743
743
|
/**
|
|
744
744
|
* @public
|
|
@@ -749,12 +749,12 @@ export interface ListDiscoveredResourcesResult {
|
|
|
749
749
|
* passed to the next call as a bookmark of where to start from.</p>
|
|
750
750
|
* @public
|
|
751
751
|
*/
|
|
752
|
-
NextToken?: string;
|
|
752
|
+
NextToken?: string | undefined;
|
|
753
753
|
/**
|
|
754
754
|
* <p>Returned list of discovered resources associated with the given MigrationTask.</p>
|
|
755
755
|
* @public
|
|
756
756
|
*/
|
|
757
|
-
DiscoveredResourceList?: DiscoveredResource[];
|
|
757
|
+
DiscoveredResourceList?: DiscoveredResource[] | undefined;
|
|
758
758
|
}
|
|
759
759
|
/**
|
|
760
760
|
* @public
|
|
@@ -766,17 +766,17 @@ export interface ListMigrationTasksRequest {
|
|
|
766
766
|
* token in <code>NextToken</code>.</p>
|
|
767
767
|
* @public
|
|
768
768
|
*/
|
|
769
|
-
NextToken?: string;
|
|
769
|
+
NextToken?: string | undefined;
|
|
770
770
|
/**
|
|
771
771
|
* <p>Value to specify how many results are returned per page.</p>
|
|
772
772
|
* @public
|
|
773
773
|
*/
|
|
774
|
-
MaxResults?: number;
|
|
774
|
+
MaxResults?: number | undefined;
|
|
775
775
|
/**
|
|
776
776
|
* <p>Filter migration tasks by discovered resource name.</p>
|
|
777
777
|
* @public
|
|
778
778
|
*/
|
|
779
|
-
ResourceName?: string;
|
|
779
|
+
ResourceName?: string | undefined;
|
|
780
780
|
}
|
|
781
781
|
/**
|
|
782
782
|
* <p>MigrationTaskSummary includes <code>MigrationTaskName</code>,
|
|
@@ -790,34 +790,34 @@ export interface MigrationTaskSummary {
|
|
|
790
790
|
* as it is used for all updates made by the tool.</p>
|
|
791
791
|
* @public
|
|
792
792
|
*/
|
|
793
|
-
ProgressUpdateStream?: string;
|
|
793
|
+
ProgressUpdateStream?: string | undefined;
|
|
794
794
|
/**
|
|
795
795
|
* <p>Unique identifier that references the migration task. <i>Do not store personal
|
|
796
796
|
* data in this field.</i>
|
|
797
797
|
* </p>
|
|
798
798
|
* @public
|
|
799
799
|
*/
|
|
800
|
-
MigrationTaskName?: string;
|
|
800
|
+
MigrationTaskName?: string | undefined;
|
|
801
801
|
/**
|
|
802
802
|
* <p>Status of the task.</p>
|
|
803
803
|
* @public
|
|
804
804
|
*/
|
|
805
|
-
Status?: Status;
|
|
805
|
+
Status?: Status | undefined;
|
|
806
806
|
/**
|
|
807
807
|
* <p>Indication of the percentage completion of the task.</p>
|
|
808
808
|
* @public
|
|
809
809
|
*/
|
|
810
|
-
ProgressPercent?: number;
|
|
810
|
+
ProgressPercent?: number | undefined;
|
|
811
811
|
/**
|
|
812
812
|
* <p>Detail information of what is being done within the overall status state.</p>
|
|
813
813
|
* @public
|
|
814
814
|
*/
|
|
815
|
-
StatusDetail?: string;
|
|
815
|
+
StatusDetail?: string | undefined;
|
|
816
816
|
/**
|
|
817
817
|
* <p>The timestamp when the task was gathered.</p>
|
|
818
818
|
* @public
|
|
819
819
|
*/
|
|
820
|
-
UpdateDateTime?: Date;
|
|
820
|
+
UpdateDateTime?: Date | undefined;
|
|
821
821
|
}
|
|
822
822
|
/**
|
|
823
823
|
* @public
|
|
@@ -828,14 +828,14 @@ export interface ListMigrationTasksResult {
|
|
|
828
828
|
* passed to the next call as a bookmark of where to start from.</p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
NextToken?: string;
|
|
831
|
+
NextToken?: string | undefined;
|
|
832
832
|
/**
|
|
833
833
|
* <p>Lists the migration task's summary which includes: <code>MigrationTaskName</code>,
|
|
834
834
|
* <code>ProgressPercent</code>, <code>ProgressUpdateStream</code>, <code>Status</code>,
|
|
835
835
|
* and the <code>UpdateDateTime</code> for each task.</p>
|
|
836
836
|
* @public
|
|
837
837
|
*/
|
|
838
|
-
MigrationTaskSummaryList?: MigrationTaskSummary[];
|
|
838
|
+
MigrationTaskSummaryList?: MigrationTaskSummary[] | undefined;
|
|
839
839
|
}
|
|
840
840
|
/**
|
|
841
841
|
* @public
|
|
@@ -847,12 +847,12 @@ export interface ListProgressUpdateStreamsRequest {
|
|
|
847
847
|
* token in <code>NextToken</code>.</p>
|
|
848
848
|
* @public
|
|
849
849
|
*/
|
|
850
|
-
NextToken?: string;
|
|
850
|
+
NextToken?: string | undefined;
|
|
851
851
|
/**
|
|
852
852
|
* <p>Filter to limit the maximum number of results to list per page.</p>
|
|
853
853
|
* @public
|
|
854
854
|
*/
|
|
855
|
-
MaxResults?: number;
|
|
855
|
+
MaxResults?: number | undefined;
|
|
856
856
|
}
|
|
857
857
|
/**
|
|
858
858
|
* <p>Summary of the AWS resource used for access control that is implicitly linked to your
|
|
@@ -866,7 +866,7 @@ export interface ProgressUpdateStreamSummary {
|
|
|
866
866
|
* </p>
|
|
867
867
|
* @public
|
|
868
868
|
*/
|
|
869
|
-
ProgressUpdateStreamName?: string;
|
|
869
|
+
ProgressUpdateStreamName?: string | undefined;
|
|
870
870
|
}
|
|
871
871
|
/**
|
|
872
872
|
* @public
|
|
@@ -877,13 +877,13 @@ export interface ListProgressUpdateStreamsResult {
|
|
|
877
877
|
* input.</p>
|
|
878
878
|
* @public
|
|
879
879
|
*/
|
|
880
|
-
ProgressUpdateStreamSummaryList?: ProgressUpdateStreamSummary[];
|
|
880
|
+
ProgressUpdateStreamSummaryList?: ProgressUpdateStreamSummary[] | undefined;
|
|
881
881
|
/**
|
|
882
882
|
* <p>If there are more streams created than the max result, return the next token to be
|
|
883
883
|
* passed to the next call as a bookmark of where to start from.</p>
|
|
884
884
|
* @public
|
|
885
885
|
*/
|
|
886
|
-
NextToken?: string;
|
|
886
|
+
NextToken?: string | undefined;
|
|
887
887
|
}
|
|
888
888
|
/**
|
|
889
889
|
* @public
|
|
@@ -904,13 +904,13 @@ export interface NotifyApplicationStateRequest {
|
|
|
904
904
|
* <p>The timestamp when the application state changed.</p>
|
|
905
905
|
* @public
|
|
906
906
|
*/
|
|
907
|
-
UpdateDateTime?: Date;
|
|
907
|
+
UpdateDateTime?: Date | undefined;
|
|
908
908
|
/**
|
|
909
909
|
* <p>Optional boolean flag to indicate whether any effect should take place. Used to test if
|
|
910
910
|
* the caller has permission to make the call.</p>
|
|
911
911
|
* @public
|
|
912
912
|
*/
|
|
913
|
-
DryRun?: boolean;
|
|
913
|
+
DryRun?: boolean | undefined;
|
|
914
914
|
}
|
|
915
915
|
/**
|
|
916
916
|
* @public
|
|
@@ -955,7 +955,7 @@ export interface NotifyMigrationTaskStateRequest {
|
|
|
955
955
|
* the caller has permission to make the call.</p>
|
|
956
956
|
* @public
|
|
957
957
|
*/
|
|
958
|
-
DryRun?: boolean;
|
|
958
|
+
DryRun?: boolean | undefined;
|
|
959
959
|
}
|
|
960
960
|
/**
|
|
961
961
|
* @public
|
|
@@ -1015,7 +1015,7 @@ export interface PutResourceAttributesRequest {
|
|
|
1015
1015
|
* the caller has permission to make the call.</p>
|
|
1016
1016
|
* @public
|
|
1017
1017
|
*/
|
|
1018
|
-
DryRun?: boolean;
|
|
1018
|
+
DryRun?: boolean | undefined;
|
|
1019
1019
|
}
|
|
1020
1020
|
/**
|
|
1021
1021
|
* @public
|
|
@@ -3,7 +3,7 @@ import { MigrationHubServiceException as __BaseException } from "./MigrationHubS
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
@@ -16,31 +16,31 @@ export declare const ApplicationStatus: {
|
|
|
16
16
|
export type ApplicationStatus =
|
|
17
17
|
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
18
18
|
export interface ApplicationState {
|
|
19
|
-
ApplicationId?: string;
|
|
20
|
-
ApplicationStatus?: ApplicationStatus;
|
|
21
|
-
LastUpdatedTime?: Date;
|
|
19
|
+
ApplicationId?: string | undefined;
|
|
20
|
+
ApplicationStatus?: ApplicationStatus | undefined;
|
|
21
|
+
LastUpdatedTime?: Date | undefined;
|
|
22
22
|
}
|
|
23
23
|
export interface CreatedArtifact {
|
|
24
24
|
Name: string | undefined;
|
|
25
|
-
Description?: string;
|
|
25
|
+
Description?: string | undefined;
|
|
26
26
|
}
|
|
27
27
|
export interface AssociateCreatedArtifactRequest {
|
|
28
28
|
ProgressUpdateStream: string | undefined;
|
|
29
29
|
MigrationTaskName: string | undefined;
|
|
30
30
|
CreatedArtifact: CreatedArtifact | undefined;
|
|
31
|
-
DryRun?: boolean;
|
|
31
|
+
DryRun?: boolean | undefined;
|
|
32
32
|
}
|
|
33
33
|
export interface AssociateCreatedArtifactResult {}
|
|
34
34
|
export declare class DryRunOperation extends __BaseException {
|
|
35
35
|
readonly name: "DryRunOperation";
|
|
36
36
|
readonly $fault: "client";
|
|
37
|
-
Message?: string;
|
|
37
|
+
Message?: string | undefined;
|
|
38
38
|
constructor(opts: __ExceptionOptionType<DryRunOperation, __BaseException>);
|
|
39
39
|
}
|
|
40
40
|
export declare class HomeRegionNotSetException extends __BaseException {
|
|
41
41
|
readonly name: "HomeRegionNotSetException";
|
|
42
42
|
readonly $fault: "client";
|
|
43
|
-
Message?: string;
|
|
43
|
+
Message?: string | undefined;
|
|
44
44
|
constructor(
|
|
45
45
|
opts: __ExceptionOptionType<HomeRegionNotSetException, __BaseException>
|
|
46
46
|
);
|
|
@@ -48,7 +48,7 @@ export declare class HomeRegionNotSetException extends __BaseException {
|
|
|
48
48
|
export declare class InternalServerError extends __BaseException {
|
|
49
49
|
readonly name: "InternalServerError";
|
|
50
50
|
readonly $fault: "server";
|
|
51
|
-
Message?: string;
|
|
51
|
+
Message?: string | undefined;
|
|
52
52
|
constructor(
|
|
53
53
|
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
54
54
|
);
|
|
@@ -56,7 +56,7 @@ export declare class InternalServerError extends __BaseException {
|
|
|
56
56
|
export declare class InvalidInputException extends __BaseException {
|
|
57
57
|
readonly name: "InvalidInputException";
|
|
58
58
|
readonly $fault: "client";
|
|
59
|
-
Message?: string;
|
|
59
|
+
Message?: string | undefined;
|
|
60
60
|
constructor(
|
|
61
61
|
opts: __ExceptionOptionType<InvalidInputException, __BaseException>
|
|
62
62
|
);
|
|
@@ -64,7 +64,7 @@ export declare class InvalidInputException extends __BaseException {
|
|
|
64
64
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
65
65
|
readonly name: "ResourceNotFoundException";
|
|
66
66
|
readonly $fault: "client";
|
|
67
|
-
Message?: string;
|
|
67
|
+
Message?: string | undefined;
|
|
68
68
|
constructor(
|
|
69
69
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
70
70
|
);
|
|
@@ -72,7 +72,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
72
72
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
73
73
|
readonly name: "ServiceUnavailableException";
|
|
74
74
|
readonly $fault: "server";
|
|
75
|
-
Message?: string;
|
|
75
|
+
Message?: string | undefined;
|
|
76
76
|
constructor(
|
|
77
77
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
78
78
|
);
|
|
@@ -81,7 +81,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
81
81
|
readonly name: "ThrottlingException";
|
|
82
82
|
readonly $fault: "client";
|
|
83
83
|
Message: string | undefined;
|
|
84
|
-
RetryAfterSeconds?: number;
|
|
84
|
+
RetryAfterSeconds?: number | undefined;
|
|
85
85
|
constructor(
|
|
86
86
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
87
87
|
);
|
|
@@ -89,46 +89,46 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
89
89
|
export declare class UnauthorizedOperation extends __BaseException {
|
|
90
90
|
readonly name: "UnauthorizedOperation";
|
|
91
91
|
readonly $fault: "client";
|
|
92
|
-
Message?: string;
|
|
92
|
+
Message?: string | undefined;
|
|
93
93
|
constructor(
|
|
94
94
|
opts: __ExceptionOptionType<UnauthorizedOperation, __BaseException>
|
|
95
95
|
);
|
|
96
96
|
}
|
|
97
97
|
export interface DiscoveredResource {
|
|
98
98
|
ConfigurationId: string | undefined;
|
|
99
|
-
Description?: string;
|
|
99
|
+
Description?: string | undefined;
|
|
100
100
|
}
|
|
101
101
|
export interface AssociateDiscoveredResourceRequest {
|
|
102
102
|
ProgressUpdateStream: string | undefined;
|
|
103
103
|
MigrationTaskName: string | undefined;
|
|
104
104
|
DiscoveredResource: DiscoveredResource | undefined;
|
|
105
|
-
DryRun?: boolean;
|
|
105
|
+
DryRun?: boolean | undefined;
|
|
106
106
|
}
|
|
107
107
|
export interface AssociateDiscoveredResourceResult {}
|
|
108
108
|
export declare class PolicyErrorException extends __BaseException {
|
|
109
109
|
readonly name: "PolicyErrorException";
|
|
110
110
|
readonly $fault: "client";
|
|
111
|
-
Message?: string;
|
|
111
|
+
Message?: string | undefined;
|
|
112
112
|
constructor(
|
|
113
113
|
opts: __ExceptionOptionType<PolicyErrorException, __BaseException>
|
|
114
114
|
);
|
|
115
115
|
}
|
|
116
116
|
export interface CreateProgressUpdateStreamRequest {
|
|
117
117
|
ProgressUpdateStreamName: string | undefined;
|
|
118
|
-
DryRun?: boolean;
|
|
118
|
+
DryRun?: boolean | undefined;
|
|
119
119
|
}
|
|
120
120
|
export interface CreateProgressUpdateStreamResult {}
|
|
121
121
|
export interface DeleteProgressUpdateStreamRequest {
|
|
122
122
|
ProgressUpdateStreamName: string | undefined;
|
|
123
|
-
DryRun?: boolean;
|
|
123
|
+
DryRun?: boolean | undefined;
|
|
124
124
|
}
|
|
125
125
|
export interface DeleteProgressUpdateStreamResult {}
|
|
126
126
|
export interface DescribeApplicationStateRequest {
|
|
127
127
|
ApplicationId: string | undefined;
|
|
128
128
|
}
|
|
129
129
|
export interface DescribeApplicationStateResult {
|
|
130
|
-
ApplicationStatus?: ApplicationStatus;
|
|
131
|
-
LastUpdatedTime?: Date;
|
|
130
|
+
ApplicationStatus?: ApplicationStatus | undefined;
|
|
131
|
+
LastUpdatedTime?: Date | undefined;
|
|
132
132
|
}
|
|
133
133
|
export interface DescribeMigrationTaskRequest {
|
|
134
134
|
ProgressUpdateStream: string | undefined;
|
|
@@ -161,101 +161,101 @@ export declare const Status: {
|
|
|
161
161
|
export type Status = (typeof Status)[keyof typeof Status];
|
|
162
162
|
export interface Task {
|
|
163
163
|
Status: Status | undefined;
|
|
164
|
-
StatusDetail?: string;
|
|
165
|
-
ProgressPercent?: number;
|
|
164
|
+
StatusDetail?: string | undefined;
|
|
165
|
+
ProgressPercent?: number | undefined;
|
|
166
166
|
}
|
|
167
167
|
export interface MigrationTask {
|
|
168
|
-
ProgressUpdateStream?: string;
|
|
169
|
-
MigrationTaskName?: string;
|
|
170
|
-
Task?: Task;
|
|
171
|
-
UpdateDateTime?: Date;
|
|
172
|
-
ResourceAttributeList?: ResourceAttribute[];
|
|
168
|
+
ProgressUpdateStream?: string | undefined;
|
|
169
|
+
MigrationTaskName?: string | undefined;
|
|
170
|
+
Task?: Task | undefined;
|
|
171
|
+
UpdateDateTime?: Date | undefined;
|
|
172
|
+
ResourceAttributeList?: ResourceAttribute[] | undefined;
|
|
173
173
|
}
|
|
174
174
|
export interface DescribeMigrationTaskResult {
|
|
175
|
-
MigrationTask?: MigrationTask;
|
|
175
|
+
MigrationTask?: MigrationTask | undefined;
|
|
176
176
|
}
|
|
177
177
|
export interface DisassociateCreatedArtifactRequest {
|
|
178
178
|
ProgressUpdateStream: string | undefined;
|
|
179
179
|
MigrationTaskName: string | undefined;
|
|
180
180
|
CreatedArtifactName: string | undefined;
|
|
181
|
-
DryRun?: boolean;
|
|
181
|
+
DryRun?: boolean | undefined;
|
|
182
182
|
}
|
|
183
183
|
export interface DisassociateCreatedArtifactResult {}
|
|
184
184
|
export interface DisassociateDiscoveredResourceRequest {
|
|
185
185
|
ProgressUpdateStream: string | undefined;
|
|
186
186
|
MigrationTaskName: string | undefined;
|
|
187
187
|
ConfigurationId: string | undefined;
|
|
188
|
-
DryRun?: boolean;
|
|
188
|
+
DryRun?: boolean | undefined;
|
|
189
189
|
}
|
|
190
190
|
export interface DisassociateDiscoveredResourceResult {}
|
|
191
191
|
export interface ImportMigrationTaskRequest {
|
|
192
192
|
ProgressUpdateStream: string | undefined;
|
|
193
193
|
MigrationTaskName: string | undefined;
|
|
194
|
-
DryRun?: boolean;
|
|
194
|
+
DryRun?: boolean | undefined;
|
|
195
195
|
}
|
|
196
196
|
export interface ImportMigrationTaskResult {}
|
|
197
197
|
export interface ListApplicationStatesRequest {
|
|
198
|
-
ApplicationIds?: string[];
|
|
199
|
-
NextToken?: string;
|
|
200
|
-
MaxResults?: number;
|
|
198
|
+
ApplicationIds?: string[] | undefined;
|
|
199
|
+
NextToken?: string | undefined;
|
|
200
|
+
MaxResults?: number | undefined;
|
|
201
201
|
}
|
|
202
202
|
export interface ListApplicationStatesResult {
|
|
203
|
-
ApplicationStateList?: ApplicationState[];
|
|
204
|
-
NextToken?: string;
|
|
203
|
+
ApplicationStateList?: ApplicationState[] | undefined;
|
|
204
|
+
NextToken?: string | undefined;
|
|
205
205
|
}
|
|
206
206
|
export interface ListCreatedArtifactsRequest {
|
|
207
207
|
ProgressUpdateStream: string | undefined;
|
|
208
208
|
MigrationTaskName: string | undefined;
|
|
209
|
-
NextToken?: string;
|
|
210
|
-
MaxResults?: number;
|
|
209
|
+
NextToken?: string | undefined;
|
|
210
|
+
MaxResults?: number | undefined;
|
|
211
211
|
}
|
|
212
212
|
export interface ListCreatedArtifactsResult {
|
|
213
|
-
NextToken?: string;
|
|
214
|
-
CreatedArtifactList?: CreatedArtifact[];
|
|
213
|
+
NextToken?: string | undefined;
|
|
214
|
+
CreatedArtifactList?: CreatedArtifact[] | undefined;
|
|
215
215
|
}
|
|
216
216
|
export interface ListDiscoveredResourcesRequest {
|
|
217
217
|
ProgressUpdateStream: string | undefined;
|
|
218
218
|
MigrationTaskName: string | undefined;
|
|
219
|
-
NextToken?: string;
|
|
220
|
-
MaxResults?: number;
|
|
219
|
+
NextToken?: string | undefined;
|
|
220
|
+
MaxResults?: number | undefined;
|
|
221
221
|
}
|
|
222
222
|
export interface ListDiscoveredResourcesResult {
|
|
223
|
-
NextToken?: string;
|
|
224
|
-
DiscoveredResourceList?: DiscoveredResource[];
|
|
223
|
+
NextToken?: string | undefined;
|
|
224
|
+
DiscoveredResourceList?: DiscoveredResource[] | undefined;
|
|
225
225
|
}
|
|
226
226
|
export interface ListMigrationTasksRequest {
|
|
227
|
-
NextToken?: string;
|
|
228
|
-
MaxResults?: number;
|
|
229
|
-
ResourceName?: string;
|
|
227
|
+
NextToken?: string | undefined;
|
|
228
|
+
MaxResults?: number | undefined;
|
|
229
|
+
ResourceName?: string | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface MigrationTaskSummary {
|
|
232
|
-
ProgressUpdateStream?: string;
|
|
233
|
-
MigrationTaskName?: string;
|
|
234
|
-
Status?: Status;
|
|
235
|
-
ProgressPercent?: number;
|
|
236
|
-
StatusDetail?: string;
|
|
237
|
-
UpdateDateTime?: Date;
|
|
232
|
+
ProgressUpdateStream?: string | undefined;
|
|
233
|
+
MigrationTaskName?: string | undefined;
|
|
234
|
+
Status?: Status | undefined;
|
|
235
|
+
ProgressPercent?: number | undefined;
|
|
236
|
+
StatusDetail?: string | undefined;
|
|
237
|
+
UpdateDateTime?: Date | undefined;
|
|
238
238
|
}
|
|
239
239
|
export interface ListMigrationTasksResult {
|
|
240
|
-
NextToken?: string;
|
|
241
|
-
MigrationTaskSummaryList?: MigrationTaskSummary[];
|
|
240
|
+
NextToken?: string | undefined;
|
|
241
|
+
MigrationTaskSummaryList?: MigrationTaskSummary[] | undefined;
|
|
242
242
|
}
|
|
243
243
|
export interface ListProgressUpdateStreamsRequest {
|
|
244
|
-
NextToken?: string;
|
|
245
|
-
MaxResults?: number;
|
|
244
|
+
NextToken?: string | undefined;
|
|
245
|
+
MaxResults?: number | undefined;
|
|
246
246
|
}
|
|
247
247
|
export interface ProgressUpdateStreamSummary {
|
|
248
|
-
ProgressUpdateStreamName?: string;
|
|
248
|
+
ProgressUpdateStreamName?: string | undefined;
|
|
249
249
|
}
|
|
250
250
|
export interface ListProgressUpdateStreamsResult {
|
|
251
|
-
ProgressUpdateStreamSummaryList?: ProgressUpdateStreamSummary[];
|
|
252
|
-
NextToken?: string;
|
|
251
|
+
ProgressUpdateStreamSummaryList?: ProgressUpdateStreamSummary[] | undefined;
|
|
252
|
+
NextToken?: string | undefined;
|
|
253
253
|
}
|
|
254
254
|
export interface NotifyApplicationStateRequest {
|
|
255
255
|
ApplicationId: string | undefined;
|
|
256
256
|
Status: ApplicationStatus | undefined;
|
|
257
|
-
UpdateDateTime?: Date;
|
|
258
|
-
DryRun?: boolean;
|
|
257
|
+
UpdateDateTime?: Date | undefined;
|
|
258
|
+
DryRun?: boolean | undefined;
|
|
259
259
|
}
|
|
260
260
|
export interface NotifyApplicationStateResult {}
|
|
261
261
|
export interface NotifyMigrationTaskStateRequest {
|
|
@@ -264,13 +264,13 @@ export interface NotifyMigrationTaskStateRequest {
|
|
|
264
264
|
Task: Task | undefined;
|
|
265
265
|
UpdateDateTime: Date | undefined;
|
|
266
266
|
NextUpdateSeconds: number | undefined;
|
|
267
|
-
DryRun?: boolean;
|
|
267
|
+
DryRun?: boolean | undefined;
|
|
268
268
|
}
|
|
269
269
|
export interface NotifyMigrationTaskStateResult {}
|
|
270
270
|
export interface PutResourceAttributesRequest {
|
|
271
271
|
ProgressUpdateStream: string | undefined;
|
|
272
272
|
MigrationTaskName: string | undefined;
|
|
273
273
|
ResourceAttributeList: ResourceAttribute[] | undefined;
|
|
274
|
-
DryRun?: boolean;
|
|
274
|
+
DryRun?: boolean | undefined;
|
|
275
275
|
}
|
|
276
276
|
export interface PutResourceAttributesResult {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migration-hub",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migration Hub Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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-migration-hub",
|
|
@@ -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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
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.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
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
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|