@aws-sdk/client-migrationhuborchestrator 3.427.0 → 3.429.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.
@@ -243,7 +243,7 @@ export interface CreateMigrationWorkflowResponse {
243
243
  * @public
244
244
  * <p>The status of the migration workflow.</p>
245
245
  */
246
- status?: MigrationWorkflowStatusEnum | string;
246
+ status?: MigrationWorkflowStatusEnum;
247
247
  /**
248
248
  * @public
249
249
  * <p>The time at which the migration workflow was created.</p>
@@ -307,7 +307,7 @@ export interface DeleteMigrationWorkflowResponse {
307
307
  * @public
308
308
  * <p>The status of the migration workflow.</p>
309
309
  */
310
- status?: MigrationWorkflowStatusEnum | string;
310
+ status?: MigrationWorkflowStatusEnum;
311
311
  }
312
312
  /**
313
313
  * @public
@@ -378,7 +378,7 @@ export interface GetMigrationWorkflowResponse {
378
378
  * @public
379
379
  * <p>The status of the migration workflow.</p>
380
380
  */
381
- status?: MigrationWorkflowStatusEnum | string;
381
+ status?: MigrationWorkflowStatusEnum;
382
382
  /**
383
383
  * @public
384
384
  * <p>The status message of the migration workflow.</p>
@@ -468,7 +468,7 @@ export interface ListMigrationWorkflowsRequest {
468
468
  * @public
469
469
  * <p>The status of the migration workflow.</p>
470
470
  */
471
- status?: MigrationWorkflowStatusEnum | string;
471
+ status?: MigrationWorkflowStatusEnum;
472
472
  /**
473
473
  * @public
474
474
  * <p>The name of the migration workflow.</p>
@@ -504,7 +504,7 @@ export interface MigrationWorkflowSummary {
504
504
  * @public
505
505
  * <p>The status of the migration workflow.</p>
506
506
  */
507
- status?: MigrationWorkflowStatusEnum | string;
507
+ status?: MigrationWorkflowStatusEnum;
508
508
  /**
509
509
  * @public
510
510
  * <p>The time at which the migration workflow was created.</p>
@@ -574,7 +574,7 @@ export interface StartMigrationWorkflowResponse {
574
574
  * @public
575
575
  * <p>The status of the migration workflow.</p>
576
576
  */
577
- status?: MigrationWorkflowStatusEnum | string;
577
+ status?: MigrationWorkflowStatusEnum;
578
578
  /**
579
579
  * @public
580
580
  * <p>The status message of the migration workflow.</p>
@@ -614,7 +614,7 @@ export interface StopMigrationWorkflowResponse {
614
614
  * @public
615
615
  * <p>The status of the migration workflow.</p>
616
616
  */
617
- status?: MigrationWorkflowStatusEnum | string;
617
+ status?: MigrationWorkflowStatusEnum;
618
618
  /**
619
619
  * @public
620
620
  * <p>The status message of the migration workflow.</p>
@@ -704,7 +704,7 @@ export interface UpdateMigrationWorkflowResponse {
704
704
  * @public
705
705
  * <p>The status of the migration workflow.</p>
706
706
  */
707
- status?: MigrationWorkflowStatusEnum | string;
707
+ status?: MigrationWorkflowStatusEnum;
708
708
  /**
709
709
  * @public
710
710
  * <p>The time at which the migration workflow was created.</p>
@@ -759,7 +759,7 @@ export interface TemplateInput {
759
759
  * @public
760
760
  * <p>The data type of the template input.</p>
761
761
  */
762
- dataType?: DataType | string;
762
+ dataType?: DataType;
763
763
  /**
764
764
  * @public
765
765
  * <p>Determine if an input is required from the template.</p>
@@ -810,7 +810,7 @@ export interface GetMigrationWorkflowTemplateResponse {
810
810
  * @public
811
811
  * <p>The status of the template.</p>
812
812
  */
813
- status?: TemplateStatus | string;
813
+ status?: TemplateStatus;
814
814
  /**
815
815
  * @public
816
816
  * <p>The time at which the template was last created.</p>
@@ -924,7 +924,7 @@ export interface PluginSummary {
924
924
  * @public
925
925
  * <p>The status of the plugin.</p>
926
926
  */
927
- status?: PluginHealth | string;
927
+ status?: PluginHealth;
928
928
  /**
929
929
  * @public
930
930
  * <p>The IP address at which the plugin is located.</p>
@@ -1011,7 +1011,7 @@ export interface StepOutput {
1011
1011
  * @public
1012
1012
  * <p>The data type of the step output.</p>
1013
1013
  */
1014
- dataType?: DataType | string;
1014
+ dataType?: DataType;
1015
1015
  /**
1016
1016
  * @public
1017
1017
  * <p>Determine if an output is required from a step.</p>
@@ -1111,12 +1111,12 @@ export interface StepAutomationConfiguration {
1111
1111
  * @public
1112
1112
  * <p>The source or target environment.</p>
1113
1113
  */
1114
- runEnvironment?: RunEnvironment | string;
1114
+ runEnvironment?: RunEnvironment;
1115
1115
  /**
1116
1116
  * @public
1117
1117
  * <p>The servers on which to run the script.</p>
1118
1118
  */
1119
- targetType?: TargetType | string;
1119
+ targetType?: TargetType;
1120
1120
  }
1121
1121
  /**
1122
1122
  * @public
@@ -1152,7 +1152,7 @@ export interface GetTemplateStepResponse {
1152
1152
  * <p>The action type of the step. You must run and update the status of a manual step for
1153
1153
  * the workflow to continue after the completion of the step.</p>
1154
1154
  */
1155
- stepActionType?: StepActionType | string;
1155
+ stepActionType?: StepActionType;
1156
1156
  /**
1157
1157
  * @public
1158
1158
  * <p>The time at which the step was created.</p>
@@ -1246,17 +1246,17 @@ export interface TemplateStepSummary {
1246
1246
  * <p>The action type of the step. You must run and update the status of a manual step for
1247
1247
  * the workflow to continue after the completion of the step.</p>
1248
1248
  */
1249
- stepActionType?: StepActionType | string;
1249
+ stepActionType?: StepActionType;
1250
1250
  /**
1251
1251
  * @public
1252
1252
  * <p>The servers on which to run the script.</p>
1253
1253
  */
1254
- targetType?: TargetType | string;
1254
+ targetType?: TargetType;
1255
1255
  /**
1256
1256
  * @public
1257
1257
  * <p>The owner of the step.</p>
1258
1258
  */
1259
- owner?: Owner | string;
1259
+ owner?: Owner;
1260
1260
  /**
1261
1261
  * @public
1262
1262
  * <p>The previous step.</p>
@@ -1344,7 +1344,7 @@ export interface GetTemplateStepGroupResponse {
1344
1344
  * @public
1345
1345
  * <p>The status of the step group.</p>
1346
1346
  */
1347
- status?: StepGroupStatus | string;
1347
+ status?: StepGroupStatus;
1348
1348
  /**
1349
1349
  * @public
1350
1350
  * <p>The time at which the step group was created.</p>
@@ -1523,7 +1523,7 @@ export interface WorkflowStepOutput {
1523
1523
  * @public
1524
1524
  * <p>The data type of the output.</p>
1525
1525
  */
1526
- dataType?: DataType | string;
1526
+ dataType?: DataType;
1527
1527
  /**
1528
1528
  * @public
1529
1529
  * <p>Determine if an output is required from a step.</p>
@@ -1559,12 +1559,12 @@ export interface WorkflowStepAutomationConfiguration {
1559
1559
  * @public
1560
1560
  * <p>The source or target environment.</p>
1561
1561
  */
1562
- runEnvironment?: RunEnvironment | string;
1562
+ runEnvironment?: RunEnvironment;
1563
1563
  /**
1564
1564
  * @public
1565
1565
  * <p>The servers on which to run the script.</p>
1566
1566
  */
1567
- targetType?: TargetType | string;
1567
+ targetType?: TargetType;
1568
1568
  }
1569
1569
  /**
1570
1570
  * @public
@@ -1590,7 +1590,7 @@ export interface CreateWorkflowStepRequest {
1590
1590
  * <p>The action type of the step. You must run and update the status of a manual step for
1591
1591
  * the workflow to continue after the completion of the step.</p>
1592
1592
  */
1593
- stepActionType: StepActionType | string | undefined;
1593
+ stepActionType: StepActionType | undefined;
1594
1594
  /**
1595
1595
  * @public
1596
1596
  * <p>The description of the step.</p>
@@ -1743,12 +1743,12 @@ export interface GetWorkflowStepResponse {
1743
1743
  * <p>The action type of the step. You must run and update the status of a manual step for
1744
1744
  * the workflow to continue after the completion of the step.</p>
1745
1745
  */
1746
- stepActionType?: StepActionType | string;
1746
+ stepActionType?: StepActionType;
1747
1747
  /**
1748
1748
  * @public
1749
1749
  * <p>The owner of the step.</p>
1750
1750
  */
1751
- owner?: Owner | string;
1751
+ owner?: Owner;
1752
1752
  /**
1753
1753
  * @public
1754
1754
  * <p>The custom script to run tests on source or target environments.</p>
@@ -1778,7 +1778,7 @@ export interface GetWorkflowStepResponse {
1778
1778
  * @public
1779
1779
  * <p>The status of the step.</p>
1780
1780
  */
1781
- status?: StepStatus | string;
1781
+ status?: StepStatus;
1782
1782
  /**
1783
1783
  * @public
1784
1784
  * <p>The status message of the migration workflow.</p>
@@ -1865,12 +1865,12 @@ export interface WorkflowStepSummary {
1865
1865
  * <p>The action type of the step. You must run and update the status of a manual step for
1866
1866
  * the workflow to continue after the completion of the step.</p>
1867
1867
  */
1868
- stepActionType?: StepActionType | string;
1868
+ stepActionType?: StepActionType;
1869
1869
  /**
1870
1870
  * @public
1871
1871
  * <p>The owner of the step.</p>
1872
1872
  */
1873
- owner?: Owner | string;
1873
+ owner?: Owner;
1874
1874
  /**
1875
1875
  * @public
1876
1876
  * <p>The previous step.</p>
@@ -1885,7 +1885,7 @@ export interface WorkflowStepSummary {
1885
1885
  * @public
1886
1886
  * <p>The status of the step.</p>
1887
1887
  */
1888
- status?: StepStatus | string;
1888
+ status?: StepStatus;
1889
1889
  /**
1890
1890
  * @public
1891
1891
  * <p>The status message of the migration workflow.</p>
@@ -1975,7 +1975,7 @@ export interface RetryWorkflowStepResponse {
1975
1975
  * @public
1976
1976
  * <p>The status of the step.</p>
1977
1977
  */
1978
- status?: StepStatus | string;
1978
+ status?: StepStatus;
1979
1979
  }
1980
1980
  /**
1981
1981
  * @public
@@ -2011,7 +2011,7 @@ export interface UpdateWorkflowStepRequest {
2011
2011
  * <p>The action type of the step. You must run and update the status of a manual step for
2012
2012
  * the workflow to continue after the completion of the step.</p>
2013
2013
  */
2014
- stepActionType?: StepActionType | string;
2014
+ stepActionType?: StepActionType;
2015
2015
  /**
2016
2016
  * @public
2017
2017
  * <p>The custom script to run tests on the source and target environments.</p>
@@ -2041,7 +2041,7 @@ export interface UpdateWorkflowStepRequest {
2041
2041
  * @public
2042
2042
  * <p>The status of the step.</p>
2043
2043
  */
2044
- status?: StepStatus | string;
2044
+ status?: StepStatus;
2045
2045
  }
2046
2046
  /**
2047
2047
  * @public
@@ -2206,12 +2206,12 @@ export interface GetWorkflowStepGroupResponse {
2206
2206
  * @public
2207
2207
  * <p>The status of the step group.</p>
2208
2208
  */
2209
- status?: StepGroupStatus | string;
2209
+ status?: StepGroupStatus;
2210
2210
  /**
2211
2211
  * @public
2212
2212
  * <p>The owner of the step group.</p>
2213
2213
  */
2214
- owner?: Owner | string;
2214
+ owner?: Owner;
2215
2215
  /**
2216
2216
  * @public
2217
2217
  * <p>The time at which the step group was created.</p>
@@ -2282,12 +2282,12 @@ export interface WorkflowStepGroupSummary {
2282
2282
  * @public
2283
2283
  * <p>The owner of the step group.</p>
2284
2284
  */
2285
- owner?: Owner | string;
2285
+ owner?: Owner;
2286
2286
  /**
2287
2287
  * @public
2288
2288
  * <p>The status of the step group.</p>
2289
2289
  */
2290
- status?: StepGroupStatus | string;
2290
+ status?: StepGroupStatus;
2291
2291
  /**
2292
2292
  * @public
2293
2293
  * <p>The previous step group.</p>
@@ -116,7 +116,7 @@ export interface CreateMigrationWorkflowResponse {
116
116
  adsApplicationConfigurationId?: string;
117
117
  workflowInputs?: Record<string, StepInput>;
118
118
  stepTargets?: string[];
119
- status?: MigrationWorkflowStatusEnum | string;
119
+ status?: MigrationWorkflowStatusEnum;
120
120
  creationTime?: Date;
121
121
  tags?: Record<string, string>;
122
122
  }
@@ -140,7 +140,7 @@ export interface DeleteMigrationWorkflowRequest {
140
140
  export interface DeleteMigrationWorkflowResponse {
141
141
  id?: string;
142
142
  arn?: string;
143
- status?: MigrationWorkflowStatusEnum | string;
143
+ status?: MigrationWorkflowStatusEnum;
144
144
  }
145
145
  export interface GetMigrationWorkflowRequest {
146
146
  id: string | undefined;
@@ -157,7 +157,7 @@ export interface GetMigrationWorkflowResponse {
157
157
  templateId?: string;
158
158
  adsApplicationConfigurationId?: string;
159
159
  adsApplicationName?: string;
160
- status?: MigrationWorkflowStatusEnum | string;
160
+ status?: MigrationWorkflowStatusEnum;
161
161
  statusMessage?: string;
162
162
  creationTime?: Date;
163
163
  lastStartTime?: Date;
@@ -176,7 +176,7 @@ export interface ListMigrationWorkflowsRequest {
176
176
  nextToken?: string;
177
177
  templateId?: string;
178
178
  adsApplicationConfigurationName?: string;
179
- status?: MigrationWorkflowStatusEnum | string;
179
+ status?: MigrationWorkflowStatusEnum;
180
180
  name?: string;
181
181
  }
182
182
  export interface MigrationWorkflowSummary {
@@ -184,7 +184,7 @@ export interface MigrationWorkflowSummary {
184
184
  name?: string;
185
185
  templateId?: string;
186
186
  adsApplicationConfigurationName?: string;
187
- status?: MigrationWorkflowStatusEnum | string;
187
+ status?: MigrationWorkflowStatusEnum;
188
188
  creationTime?: Date;
189
189
  endTime?: Date;
190
190
  statusMessage?: string;
@@ -201,7 +201,7 @@ export interface StartMigrationWorkflowRequest {
201
201
  export interface StartMigrationWorkflowResponse {
202
202
  id?: string;
203
203
  arn?: string;
204
- status?: MigrationWorkflowStatusEnum | string;
204
+ status?: MigrationWorkflowStatusEnum;
205
205
  statusMessage?: string;
206
206
  lastStartTime?: Date;
207
207
  }
@@ -211,7 +211,7 @@ export interface StopMigrationWorkflowRequest {
211
211
  export interface StopMigrationWorkflowResponse {
212
212
  id?: string;
213
213
  arn?: string;
214
- status?: MigrationWorkflowStatusEnum | string;
214
+ status?: MigrationWorkflowStatusEnum;
215
215
  statusMessage?: string;
216
216
  lastStopTime?: Date;
217
217
  }
@@ -231,7 +231,7 @@ export interface UpdateMigrationWorkflowResponse {
231
231
  adsApplicationConfigurationId?: string;
232
232
  workflowInputs?: Record<string, StepInput>;
233
233
  stepTargets?: string[];
234
- status?: MigrationWorkflowStatusEnum | string;
234
+ status?: MigrationWorkflowStatusEnum;
235
235
  creationTime?: Date;
236
236
  lastModifiedTime?: Date;
237
237
  tags?: Record<string, string>;
@@ -248,7 +248,7 @@ export declare const DataType: {
248
248
  export type DataType = (typeof DataType)[keyof typeof DataType];
249
249
  export interface TemplateInput {
250
250
  inputName?: string;
251
- dataType?: DataType | string;
251
+ dataType?: DataType;
252
252
  required?: boolean;
253
253
  }
254
254
  export declare const TemplateStatus: {
@@ -262,7 +262,7 @@ export interface GetMigrationWorkflowTemplateResponse {
262
262
  description?: string;
263
263
  inputs?: TemplateInput[];
264
264
  tools?: Tool[];
265
- status?: TemplateStatus | string;
265
+ status?: TemplateStatus;
266
266
  creationTime?: Date;
267
267
  }
268
268
  export interface ListMigrationWorkflowTemplatesRequest {
@@ -292,7 +292,7 @@ export type PluginHealth = (typeof PluginHealth)[keyof typeof PluginHealth];
292
292
  export interface PluginSummary {
293
293
  pluginId?: string;
294
294
  hostname?: string;
295
- status?: PluginHealth | string;
295
+ status?: PluginHealth;
296
296
  ipAddress?: string;
297
297
  version?: string;
298
298
  registeredTime?: string;
@@ -313,7 +313,7 @@ export interface GetTemplateStepRequest {
313
313
  }
314
314
  export interface StepOutput {
315
315
  name?: string;
316
- dataType?: DataType | string;
316
+ dataType?: DataType;
317
317
  required?: boolean;
318
318
  }
319
319
  export declare const StepActionType: {
@@ -346,8 +346,8 @@ export interface StepAutomationConfiguration {
346
346
  scriptLocationS3Bucket?: string;
347
347
  scriptLocationS3Key?: PlatformScriptKey;
348
348
  command?: PlatformCommand;
349
- runEnvironment?: RunEnvironment | string;
350
- targetType?: TargetType | string;
349
+ runEnvironment?: RunEnvironment;
350
+ targetType?: TargetType;
351
351
  }
352
352
  export interface GetTemplateStepResponse {
353
353
  id?: string;
@@ -355,7 +355,7 @@ export interface GetTemplateStepResponse {
355
355
  templateId?: string;
356
356
  name?: string;
357
357
  description?: string;
358
- stepActionType?: StepActionType | string;
358
+ stepActionType?: StepActionType;
359
359
  creationTime?: string;
360
360
  previous?: string[];
361
361
  next?: string[];
@@ -378,9 +378,9 @@ export interface TemplateStepSummary {
378
378
  stepGroupId?: string;
379
379
  templateId?: string;
380
380
  name?: string;
381
- stepActionType?: StepActionType | string;
382
- targetType?: TargetType | string;
383
- owner?: Owner | string;
381
+ stepActionType?: StepActionType;
382
+ targetType?: TargetType;
383
+ owner?: Owner;
384
384
  previous?: string[];
385
385
  next?: string[];
386
386
  }
@@ -409,7 +409,7 @@ export interface GetTemplateStepGroupResponse {
409
409
  id?: string;
410
410
  name?: string;
411
411
  description?: string;
412
- status?: StepGroupStatus | string;
412
+ status?: StepGroupStatus;
413
413
  creationTime?: Date;
414
414
  lastModifiedTime?: Date;
415
415
  tools?: Tool[];
@@ -476,7 +476,7 @@ export declare namespace WorkflowStepOutputUnion {
476
476
  }
477
477
  export interface WorkflowStepOutput {
478
478
  name?: string;
479
- dataType?: DataType | string;
479
+ dataType?: DataType;
480
480
  required?: boolean;
481
481
  value?: WorkflowStepOutputUnion;
482
482
  }
@@ -484,14 +484,14 @@ export interface WorkflowStepAutomationConfiguration {
484
484
  scriptLocationS3Bucket?: string;
485
485
  scriptLocationS3Key?: PlatformScriptKey;
486
486
  command?: PlatformCommand;
487
- runEnvironment?: RunEnvironment | string;
488
- targetType?: TargetType | string;
487
+ runEnvironment?: RunEnvironment;
488
+ targetType?: TargetType;
489
489
  }
490
490
  export interface CreateWorkflowStepRequest {
491
491
  name: string | undefined;
492
492
  stepGroupId: string | undefined;
493
493
  workflowId: string | undefined;
494
- stepActionType: StepActionType | string | undefined;
494
+ stepActionType: StepActionType | undefined;
495
495
  description?: string;
496
496
  workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration;
497
497
  stepTarget?: string[];
@@ -532,14 +532,14 @@ export interface GetWorkflowStepResponse {
532
532
  workflowId?: string;
533
533
  stepId?: string;
534
534
  description?: string;
535
- stepActionType?: StepActionType | string;
536
- owner?: Owner | string;
535
+ stepActionType?: StepActionType;
536
+ owner?: Owner;
537
537
  workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration;
538
538
  stepTarget?: string[];
539
539
  outputs?: WorkflowStepOutput[];
540
540
  previous?: string[];
541
541
  next?: string[];
542
- status?: StepStatus | string;
542
+ status?: StepStatus;
543
543
  statusMessage?: string;
544
544
  scriptOutputLocation?: string;
545
545
  creationTime?: Date;
@@ -558,11 +558,11 @@ export interface ListWorkflowStepsRequest {
558
558
  export interface WorkflowStepSummary {
559
559
  stepId?: string;
560
560
  name?: string;
561
- stepActionType?: StepActionType | string;
562
- owner?: Owner | string;
561
+ stepActionType?: StepActionType;
562
+ owner?: Owner;
563
563
  previous?: string[];
564
564
  next?: string[];
565
- status?: StepStatus | string;
565
+ status?: StepStatus;
566
566
  statusMessage?: string;
567
567
  noOfSrvCompleted?: number;
568
568
  noOfSrvFailed?: number;
@@ -583,7 +583,7 @@ export interface RetryWorkflowStepResponse {
583
583
  stepGroupId?: string;
584
584
  workflowId?: string;
585
585
  id?: string;
586
- status?: StepStatus | string;
586
+ status?: StepStatus;
587
587
  }
588
588
  export interface UpdateWorkflowStepRequest {
589
589
  id: string | undefined;
@@ -591,13 +591,13 @@ export interface UpdateWorkflowStepRequest {
591
591
  workflowId: string | undefined;
592
592
  name?: string;
593
593
  description?: string;
594
- stepActionType?: StepActionType | string;
594
+ stepActionType?: StepActionType;
595
595
  workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration;
596
596
  stepTarget?: string[];
597
597
  outputs?: WorkflowStepOutput[];
598
598
  previous?: string[];
599
599
  next?: string[];
600
- status?: StepStatus | string;
600
+ status?: StepStatus;
601
601
  }
602
602
  export interface UpdateWorkflowStepResponse {
603
603
  id?: string;
@@ -636,8 +636,8 @@ export interface GetWorkflowStepGroupResponse {
636
636
  workflowId?: string;
637
637
  name?: string;
638
638
  description?: string;
639
- status?: StepGroupStatus | string;
640
- owner?: Owner | string;
639
+ status?: StepGroupStatus;
640
+ owner?: Owner;
641
641
  creationTime?: Date;
642
642
  lastModifiedTime?: Date;
643
643
  endTime?: Date;
@@ -653,8 +653,8 @@ export interface ListWorkflowStepGroupsRequest {
653
653
  export interface WorkflowStepGroupSummary {
654
654
  id?: string;
655
655
  name?: string;
656
- owner?: Owner | string;
657
- status?: StepGroupStatus | string;
656
+ owner?: Owner;
657
+ status?: StepGroupStatus;
658
658
  previous?: string[];
659
659
  next?: string[];
660
660
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-migrationhuborchestrator",
3
3
  "description": "AWS SDK for JavaScript Migrationhuborchestrator Client for Node.js, Browser and React Native",
4
- "version": "3.427.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.427.0",
25
- "@aws-sdk/credential-provider-node": "3.427.0",
26
- "@aws-sdk/middleware-host-header": "3.425.0",
27
- "@aws-sdk/middleware-logger": "3.425.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.425.0",
29
- "@aws-sdk/middleware-signing": "3.425.0",
30
- "@aws-sdk/middleware-user-agent": "3.427.0",
31
- "@aws-sdk/region-config-resolver": "3.425.0",
32
- "@aws-sdk/types": "3.425.0",
33
- "@aws-sdk/util-endpoints": "3.427.0",
34
- "@aws-sdk/util-user-agent-browser": "3.425.0",
35
- "@aws-sdk/util-user-agent-node": "3.425.0",
36
- "@smithy/config-resolver": "^2.0.11",
37
- "@smithy/fetch-http-handler": "^2.2.1",
38
- "@smithy/hash-node": "^2.0.10",
39
- "@smithy/invalid-dependency": "^2.0.10",
40
- "@smithy/middleware-content-length": "^2.0.12",
41
- "@smithy/middleware-endpoint": "^2.0.10",
42
- "@smithy/middleware-retry": "^2.0.13",
43
- "@smithy/middleware-serde": "^2.0.10",
44
- "@smithy/middleware-stack": "^2.0.4",
45
- "@smithy/node-config-provider": "^2.0.13",
46
- "@smithy/node-http-handler": "^2.1.6",
47
- "@smithy/protocol-http": "^3.0.6",
48
- "@smithy/smithy-client": "^2.1.9",
49
- "@smithy/types": "^2.3.4",
50
- "@smithy/url-parser": "^2.0.10",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
+ "@aws-sdk/middleware-logger": "3.428.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
+ "@aws-sdk/middleware-signing": "3.428.0",
30
+ "@aws-sdk/middleware-user-agent": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.428.0",
32
+ "@aws-sdk/types": "3.428.0",
33
+ "@aws-sdk/util-endpoints": "3.428.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.428.0",
35
+ "@aws-sdk/util-user-agent-node": "3.428.0",
36
+ "@smithy/config-resolver": "^2.0.14",
37
+ "@smithy/fetch-http-handler": "^2.2.3",
38
+ "@smithy/hash-node": "^2.0.11",
39
+ "@smithy/invalid-dependency": "^2.0.11",
40
+ "@smithy/middleware-content-length": "^2.0.13",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
+ "@smithy/middleware-retry": "^2.0.16",
43
+ "@smithy/middleware-serde": "^2.0.11",
44
+ "@smithy/middleware-stack": "^2.0.5",
45
+ "@smithy/node-config-provider": "^2.1.1",
46
+ "@smithy/node-http-handler": "^2.1.7",
47
+ "@smithy/protocol-http": "^3.0.7",
48
+ "@smithy/smithy-client": "^2.1.11",
49
+ "@smithy/types": "^2.3.5",
50
+ "@smithy/url-parser": "^2.0.11",
51
51
  "@smithy/util-base64": "^2.0.0",
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.13",
55
- "@smithy/util-defaults-mode-node": "^2.0.15",
56
- "@smithy/util-retry": "^2.0.3",
54
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
55
+ "@smithy/util-defaults-mode-node": "^2.0.19",
56
+ "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0"
59
59
  },