@aws-sdk/client-arc-region-switch 3.955.0 → 3.957.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-cjs/index.js +122 -10
- package/dist-es/models/enums.js +14 -0
- package/dist-es/schemas/schemas_0.js +97 -10
- package/dist-types/commands/CreatePlanCommand.d.ts +76 -4
- package/dist-types/commands/GetPlanCommand.d.ts +38 -2
- package/dist-types/commands/GetPlanExecutionCommand.d.ts +52 -2
- package/dist-types/commands/GetPlanInRegionCommand.d.ts +38 -2
- package/dist-types/commands/ListPlanExecutionEventsCommand.d.ts +2 -2
- package/dist-types/commands/UpdatePlanCommand.d.ts +76 -4
- package/dist-types/models/enums.d.ts +38 -0
- package/dist-types/models/models_0.d.ts +252 -2
- package/dist-types/schemas/schemas_0.d.ts +11 -2
- package/dist-types/ts3.4/models/enums.d.ts +20 -0
- package/dist-types/ts3.4/models/models_0.d.ts +107 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -1
- package/package.json +35 -35
|
@@ -2,6 +2,8 @@ import {
|
|
|
2
2
|
AlarmCondition,
|
|
3
3
|
AlarmType,
|
|
4
4
|
Approval,
|
|
5
|
+
DocumentDbDefaultBehavior,
|
|
6
|
+
DocumentDbUngracefulBehavior,
|
|
5
7
|
Ec2AsgCapacityMonitoringApproach,
|
|
6
8
|
EcsCapacityMonitoringApproach,
|
|
7
9
|
EksCapacityMonitoringApproach,
|
|
@@ -11,6 +13,7 @@ import {
|
|
|
11
13
|
ExecutionEventType,
|
|
12
14
|
ExecutionMode,
|
|
13
15
|
ExecutionState,
|
|
16
|
+
FailedReportErrorCode,
|
|
14
17
|
GlobalAuroraDefaultBehavior,
|
|
15
18
|
GlobalAuroraUngracefulBehavior,
|
|
16
19
|
LambdaUngracefulBehavior,
|
|
@@ -99,12 +102,73 @@ export interface GetPlanExecutionRequest {
|
|
|
99
102
|
maxResults?: number | undefined;
|
|
100
103
|
nextToken?: string | undefined;
|
|
101
104
|
}
|
|
105
|
+
export interface FailedReportOutput {
|
|
106
|
+
errorCode?: FailedReportErrorCode | undefined;
|
|
107
|
+
errorMessage?: string | undefined;
|
|
108
|
+
}
|
|
109
|
+
export interface S3ReportOutput {
|
|
110
|
+
s3ObjectKey?: string | undefined;
|
|
111
|
+
}
|
|
112
|
+
export type ReportOutput =
|
|
113
|
+
| ReportOutput.FailedReportOutputMember
|
|
114
|
+
| ReportOutput.S3ReportOutputMember
|
|
115
|
+
| ReportOutput.$UnknownMember;
|
|
116
|
+
export declare namespace ReportOutput {
|
|
117
|
+
interface S3ReportOutputMember {
|
|
118
|
+
s3ReportOutput: S3ReportOutput;
|
|
119
|
+
failedReportOutput?: never;
|
|
120
|
+
$unknown?: never;
|
|
121
|
+
}
|
|
122
|
+
interface FailedReportOutputMember {
|
|
123
|
+
s3ReportOutput?: never;
|
|
124
|
+
failedReportOutput: FailedReportOutput;
|
|
125
|
+
$unknown?: never;
|
|
126
|
+
}
|
|
127
|
+
interface $UnknownMember {
|
|
128
|
+
s3ReportOutput?: never;
|
|
129
|
+
failedReportOutput?: never;
|
|
130
|
+
$unknown: [string, any];
|
|
131
|
+
}
|
|
132
|
+
interface Visitor<T> {
|
|
133
|
+
s3ReportOutput: (value: S3ReportOutput) => T;
|
|
134
|
+
failedReportOutput: (value: FailedReportOutput) => T;
|
|
135
|
+
_: (name: string, value: any) => T;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
export interface GeneratedReport {
|
|
139
|
+
reportGenerationTime?: Date | undefined;
|
|
140
|
+
reportOutput?: ReportOutput | undefined;
|
|
141
|
+
}
|
|
102
142
|
export interface AssociatedAlarm {
|
|
103
143
|
crossAccountRole?: string | undefined;
|
|
104
144
|
externalId?: string | undefined;
|
|
105
145
|
resourceIdentifier: string | undefined;
|
|
106
146
|
alarmType: AlarmType | undefined;
|
|
107
147
|
}
|
|
148
|
+
export interface S3ReportOutputConfiguration {
|
|
149
|
+
bucketPath?: string | undefined;
|
|
150
|
+
bucketOwner?: string | undefined;
|
|
151
|
+
}
|
|
152
|
+
export type ReportOutputConfiguration =
|
|
153
|
+
| ReportOutputConfiguration.S3ConfigurationMember
|
|
154
|
+
| ReportOutputConfiguration.$UnknownMember;
|
|
155
|
+
export declare namespace ReportOutputConfiguration {
|
|
156
|
+
interface S3ConfigurationMember {
|
|
157
|
+
s3Configuration: S3ReportOutputConfiguration;
|
|
158
|
+
$unknown?: never;
|
|
159
|
+
}
|
|
160
|
+
interface $UnknownMember {
|
|
161
|
+
s3Configuration?: never;
|
|
162
|
+
$unknown: [string, any];
|
|
163
|
+
}
|
|
164
|
+
interface Visitor<T> {
|
|
165
|
+
s3Configuration: (value: S3ReportOutputConfiguration) => T;
|
|
166
|
+
_: (name: string, value: any) => T;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
export interface ReportConfiguration {
|
|
170
|
+
reportOutput?: ReportOutputConfiguration[] | undefined;
|
|
171
|
+
}
|
|
108
172
|
export interface TriggerCondition {
|
|
109
173
|
associatedAlarmName: string | undefined;
|
|
110
174
|
condition: AlarmCondition | undefined;
|
|
@@ -143,6 +207,18 @@ export interface CustomActionLambdaConfiguration {
|
|
|
143
207
|
regionToRun: RegionToRunIn | undefined;
|
|
144
208
|
ungraceful?: LambdaUngraceful | undefined;
|
|
145
209
|
}
|
|
210
|
+
export interface DocumentDbUngraceful {
|
|
211
|
+
ungraceful?: DocumentDbUngracefulBehavior | undefined;
|
|
212
|
+
}
|
|
213
|
+
export interface DocumentDbConfiguration {
|
|
214
|
+
timeoutMinutes?: number | undefined;
|
|
215
|
+
crossAccountRole?: string | undefined;
|
|
216
|
+
externalId?: string | undefined;
|
|
217
|
+
behavior: DocumentDbDefaultBehavior | undefined;
|
|
218
|
+
ungraceful?: DocumentDbUngraceful | undefined;
|
|
219
|
+
globalClusterIdentifier: string | undefined;
|
|
220
|
+
databaseClusterArns: string[] | undefined;
|
|
221
|
+
}
|
|
146
222
|
export interface Asg {
|
|
147
223
|
crossAccountRole?: string | undefined;
|
|
148
224
|
externalId?: string | undefined;
|
|
@@ -378,6 +454,7 @@ export interface UpdatePlanExecutionStepResponse {}
|
|
|
378
454
|
export type ExecutionBlockConfiguration =
|
|
379
455
|
| ExecutionBlockConfiguration.ArcRoutingControlConfigMember
|
|
380
456
|
| ExecutionBlockConfiguration.CustomActionLambdaConfigMember
|
|
457
|
+
| ExecutionBlockConfiguration.DocumentDbConfigMember
|
|
381
458
|
| ExecutionBlockConfiguration.Ec2AsgCapacityIncreaseConfigMember
|
|
382
459
|
| ExecutionBlockConfiguration.EcsCapacityIncreaseConfigMember
|
|
383
460
|
| ExecutionBlockConfiguration.EksResourceScalingConfigMember
|
|
@@ -399,6 +476,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
399
476
|
ecsCapacityIncreaseConfig?: never;
|
|
400
477
|
eksResourceScalingConfig?: never;
|
|
401
478
|
route53HealthCheckConfig?: never;
|
|
479
|
+
documentDbConfig?: never;
|
|
402
480
|
$unknown?: never;
|
|
403
481
|
}
|
|
404
482
|
interface Ec2AsgCapacityIncreaseConfigMember {
|
|
@@ -412,6 +490,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
412
490
|
ecsCapacityIncreaseConfig?: never;
|
|
413
491
|
eksResourceScalingConfig?: never;
|
|
414
492
|
route53HealthCheckConfig?: never;
|
|
493
|
+
documentDbConfig?: never;
|
|
415
494
|
$unknown?: never;
|
|
416
495
|
}
|
|
417
496
|
interface ExecutionApprovalConfigMember {
|
|
@@ -425,6 +504,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
425
504
|
ecsCapacityIncreaseConfig?: never;
|
|
426
505
|
eksResourceScalingConfig?: never;
|
|
427
506
|
route53HealthCheckConfig?: never;
|
|
507
|
+
documentDbConfig?: never;
|
|
428
508
|
$unknown?: never;
|
|
429
509
|
}
|
|
430
510
|
interface ArcRoutingControlConfigMember {
|
|
@@ -438,6 +518,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
438
518
|
ecsCapacityIncreaseConfig?: never;
|
|
439
519
|
eksResourceScalingConfig?: never;
|
|
440
520
|
route53HealthCheckConfig?: never;
|
|
521
|
+
documentDbConfig?: never;
|
|
441
522
|
$unknown?: never;
|
|
442
523
|
}
|
|
443
524
|
interface GlobalAuroraConfigMember {
|
|
@@ -451,6 +532,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
451
532
|
ecsCapacityIncreaseConfig?: never;
|
|
452
533
|
eksResourceScalingConfig?: never;
|
|
453
534
|
route53HealthCheckConfig?: never;
|
|
535
|
+
documentDbConfig?: never;
|
|
454
536
|
$unknown?: never;
|
|
455
537
|
}
|
|
456
538
|
interface ParallelConfigMember {
|
|
@@ -464,6 +546,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
464
546
|
ecsCapacityIncreaseConfig?: never;
|
|
465
547
|
eksResourceScalingConfig?: never;
|
|
466
548
|
route53HealthCheckConfig?: never;
|
|
549
|
+
documentDbConfig?: never;
|
|
467
550
|
$unknown?: never;
|
|
468
551
|
}
|
|
469
552
|
interface RegionSwitchPlanConfigMember {
|
|
@@ -477,6 +560,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
477
560
|
ecsCapacityIncreaseConfig?: never;
|
|
478
561
|
eksResourceScalingConfig?: never;
|
|
479
562
|
route53HealthCheckConfig?: never;
|
|
563
|
+
documentDbConfig?: never;
|
|
480
564
|
$unknown?: never;
|
|
481
565
|
}
|
|
482
566
|
interface EcsCapacityIncreaseConfigMember {
|
|
@@ -490,6 +574,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
490
574
|
ecsCapacityIncreaseConfig: EcsCapacityIncreaseConfiguration;
|
|
491
575
|
eksResourceScalingConfig?: never;
|
|
492
576
|
route53HealthCheckConfig?: never;
|
|
577
|
+
documentDbConfig?: never;
|
|
493
578
|
$unknown?: never;
|
|
494
579
|
}
|
|
495
580
|
interface EksResourceScalingConfigMember {
|
|
@@ -503,6 +588,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
503
588
|
ecsCapacityIncreaseConfig?: never;
|
|
504
589
|
eksResourceScalingConfig: EksResourceScalingConfiguration;
|
|
505
590
|
route53HealthCheckConfig?: never;
|
|
591
|
+
documentDbConfig?: never;
|
|
506
592
|
$unknown?: never;
|
|
507
593
|
}
|
|
508
594
|
interface Route53HealthCheckConfigMember {
|
|
@@ -516,6 +602,21 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
516
602
|
ecsCapacityIncreaseConfig?: never;
|
|
517
603
|
eksResourceScalingConfig?: never;
|
|
518
604
|
route53HealthCheckConfig: Route53HealthCheckConfiguration;
|
|
605
|
+
documentDbConfig?: never;
|
|
606
|
+
$unknown?: never;
|
|
607
|
+
}
|
|
608
|
+
interface DocumentDbConfigMember {
|
|
609
|
+
customActionLambdaConfig?: never;
|
|
610
|
+
ec2AsgCapacityIncreaseConfig?: never;
|
|
611
|
+
executionApprovalConfig?: never;
|
|
612
|
+
arcRoutingControlConfig?: never;
|
|
613
|
+
globalAuroraConfig?: never;
|
|
614
|
+
parallelConfig?: never;
|
|
615
|
+
regionSwitchPlanConfig?: never;
|
|
616
|
+
ecsCapacityIncreaseConfig?: never;
|
|
617
|
+
eksResourceScalingConfig?: never;
|
|
618
|
+
route53HealthCheckConfig?: never;
|
|
619
|
+
documentDbConfig: DocumentDbConfiguration;
|
|
519
620
|
$unknown?: never;
|
|
520
621
|
}
|
|
521
622
|
interface $UnknownMember {
|
|
@@ -529,6 +630,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
529
630
|
ecsCapacityIncreaseConfig?: never;
|
|
530
631
|
eksResourceScalingConfig?: never;
|
|
531
632
|
route53HealthCheckConfig?: never;
|
|
633
|
+
documentDbConfig?: never;
|
|
532
634
|
$unknown: [string, any];
|
|
533
635
|
}
|
|
534
636
|
interface Visitor<T> {
|
|
@@ -544,6 +646,7 @@ export declare namespace ExecutionBlockConfiguration {
|
|
|
544
646
|
ecsCapacityIncreaseConfig: (value: EcsCapacityIncreaseConfiguration) => T;
|
|
545
647
|
eksResourceScalingConfig: (value: EksResourceScalingConfiguration) => T;
|
|
546
648
|
route53HealthCheckConfig: (value: Route53HealthCheckConfiguration) => T;
|
|
649
|
+
documentDbConfig: (value: DocumentDbConfiguration) => T;
|
|
547
650
|
_: (name: string, value: any) => T;
|
|
548
651
|
}
|
|
549
652
|
}
|
|
@@ -569,6 +672,7 @@ export interface CreatePlanRequest {
|
|
|
569
672
|
recoveryTimeObjectiveMinutes?: number | undefined;
|
|
570
673
|
associatedAlarms?: Record<string, AssociatedAlarm> | undefined;
|
|
571
674
|
triggers?: Trigger[] | undefined;
|
|
675
|
+
reportConfiguration?: ReportConfiguration | undefined;
|
|
572
676
|
name: string | undefined;
|
|
573
677
|
regions: string[] | undefined;
|
|
574
678
|
recoveryApproach: RecoveryApproach | undefined;
|
|
@@ -583,6 +687,7 @@ export interface Plan {
|
|
|
583
687
|
recoveryTimeObjectiveMinutes?: number | undefined;
|
|
584
688
|
associatedAlarms?: Record<string, AssociatedAlarm> | undefined;
|
|
585
689
|
triggers?: Trigger[] | undefined;
|
|
690
|
+
reportConfiguration?: ReportConfiguration | undefined;
|
|
586
691
|
name: string | undefined;
|
|
587
692
|
regions: string[] | undefined;
|
|
588
693
|
recoveryApproach: RecoveryApproach | undefined;
|
|
@@ -599,6 +704,7 @@ export interface UpdatePlanRequest {
|
|
|
599
704
|
recoveryTimeObjectiveMinutes?: number | undefined;
|
|
600
705
|
associatedAlarms?: Record<string, AssociatedAlarm> | undefined;
|
|
601
706
|
triggers?: Trigger[] | undefined;
|
|
707
|
+
reportConfiguration?: ReportConfiguration | undefined;
|
|
602
708
|
}
|
|
603
709
|
export interface CreatePlanResponse {
|
|
604
710
|
plan?: Plan | undefined;
|
|
@@ -618,6 +724,7 @@ export interface GetPlanExecutionResponse {
|
|
|
618
724
|
stepStates?: StepState[] | undefined;
|
|
619
725
|
plan?: Plan | undefined;
|
|
620
726
|
actualRecoveryTime?: string | undefined;
|
|
727
|
+
generatedReportDetails?: GeneratedReport[] | undefined;
|
|
621
728
|
nextToken?: string | undefined;
|
|
622
729
|
}
|
|
623
730
|
export interface GetPlanInRegionResponse {
|
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
StaticErrorSchema,
|
|
3
3
|
StaticOperationSchema,
|
|
4
4
|
StaticStructureSchema,
|
|
5
|
+
StaticUnionSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
6
7
|
export declare var AbbreviatedExecution$: StaticStructureSchema;
|
|
7
8
|
export declare var AbbreviatedPlan$: StaticStructureSchema;
|
|
@@ -19,6 +20,8 @@ export declare var CreatePlanResponse$: StaticStructureSchema;
|
|
|
19
20
|
export declare var CustomActionLambdaConfiguration$: StaticStructureSchema;
|
|
20
21
|
export declare var DeletePlanRequest$: StaticStructureSchema;
|
|
21
22
|
export declare var DeletePlanResponse$: StaticStructureSchema;
|
|
23
|
+
export declare var DocumentDbConfiguration$: StaticStructureSchema;
|
|
24
|
+
export declare var DocumentDbUngraceful$: StaticStructureSchema;
|
|
22
25
|
export declare var Ec2AsgCapacityIncreaseConfiguration$: StaticStructureSchema;
|
|
23
26
|
export declare var Ec2Ungraceful$: StaticStructureSchema;
|
|
24
27
|
export declare var EcsCapacityIncreaseConfiguration$: StaticStructureSchema;
|
|
@@ -28,6 +31,8 @@ export declare var EksResourceScalingConfiguration$: StaticStructureSchema;
|
|
|
28
31
|
export declare var EksResourceScalingUngraceful$: StaticStructureSchema;
|
|
29
32
|
export declare var ExecutionApprovalConfiguration$: StaticStructureSchema;
|
|
30
33
|
export declare var ExecutionEvent$: StaticStructureSchema;
|
|
34
|
+
export declare var FailedReportOutput$: StaticStructureSchema;
|
|
35
|
+
export declare var GeneratedReport$: StaticStructureSchema;
|
|
31
36
|
export declare var GetPlanEvaluationStatusRequest$: StaticStructureSchema;
|
|
32
37
|
export declare var GetPlanEvaluationStatusResponse$: StaticStructureSchema;
|
|
33
38
|
export declare var GetPlanExecutionRequest$: StaticStructureSchema;
|
|
@@ -63,11 +68,14 @@ export declare var MinimalWorkflow$: StaticStructureSchema;
|
|
|
63
68
|
export declare var ParallelExecutionBlockConfiguration$: StaticStructureSchema;
|
|
64
69
|
export declare var Plan$: StaticStructureSchema;
|
|
65
70
|
export declare var RegionSwitchPlanConfiguration$: StaticStructureSchema;
|
|
71
|
+
export declare var ReportConfiguration$: StaticStructureSchema;
|
|
66
72
|
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
67
73
|
export declare var ResourceWarning$: StaticStructureSchema;
|
|
68
74
|
export declare var Route53HealthCheck$: StaticStructureSchema;
|
|
69
75
|
export declare var Route53HealthCheckConfiguration$: StaticStructureSchema;
|
|
70
76
|
export declare var Route53ResourceRecordSet$: StaticStructureSchema;
|
|
77
|
+
export declare var S3ReportOutput$: StaticStructureSchema;
|
|
78
|
+
export declare var S3ReportOutputConfiguration$: StaticStructureSchema;
|
|
71
79
|
export declare var Service$: StaticStructureSchema;
|
|
72
80
|
export declare var StartPlanExecutionRequest$: StaticStructureSchema;
|
|
73
81
|
export declare var StartPlanExecutionResponse$: StaticStructureSchema;
|
|
@@ -87,7 +95,9 @@ export declare var UpdatePlanRequest$: StaticStructureSchema;
|
|
|
87
95
|
export declare var UpdatePlanResponse$: StaticStructureSchema;
|
|
88
96
|
export declare var Workflow$: StaticStructureSchema;
|
|
89
97
|
export declare var ARCRegionSwitchServiceException$: StaticErrorSchema;
|
|
90
|
-
export declare var ExecutionBlockConfiguration$:
|
|
98
|
+
export declare var ExecutionBlockConfiguration$: StaticUnionSchema;
|
|
99
|
+
export declare var ReportOutput$: StaticUnionSchema;
|
|
100
|
+
export declare var ReportOutputConfiguration$: StaticUnionSchema;
|
|
91
101
|
export declare var ApprovePlanExecutionStep$: StaticOperationSchema;
|
|
92
102
|
export declare var CancelPlanExecution$: StaticOperationSchema;
|
|
93
103
|
export declare var CreatePlan$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-arc-region-switch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Arc Region Switch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.957.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-arc-region-switch",
|
|
8
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
9
|
-
"build:include:deps": "
|
|
9
|
+
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
12
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.10.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "3.957.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.957.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.957.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.957.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.957.0",
|
|
31
|
+
"@aws-sdk/types": "3.957.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.957.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.957.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.957.0",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.5",
|
|
36
|
+
"@smithy/core": "^3.20.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.8",
|
|
38
|
+
"@smithy/hash-node": "^4.2.7",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.7",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.7",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.1",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.17",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.8",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.7",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.7",
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.7",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.7",
|
|
48
|
+
"@smithy/smithy-client": "^4.10.2",
|
|
49
|
+
"@smithy/types": "^4.11.0",
|
|
50
|
+
"@smithy/url-parser": "^4.2.7",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.2.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.16",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.19",
|
|
56
|
+
"@smithy/util-endpoints": "^3.2.7",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.7",
|
|
58
|
+
"@smithy/util-retry": "^4.2.7",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.0",
|
|
60
|
-
"@smithy/util-waiter": "^4.2.
|
|
60
|
+
"@smithy/util-waiter": "^4.2.7",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|