@aws-sdk/client-ssm 3.211.0 → 3.212.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/SSM.js +45 -0
- package/dist-cjs/commands/DeleteResourcePolicyCommand.js +46 -0
- package/dist-cjs/commands/DescribeOpsItemsCommand.js +3 -3
- package/dist-cjs/commands/GetResourcePoliciesCommand.js +46 -0
- package/dist-cjs/commands/PutResourcePolicyCommand.js +46 -0
- package/dist-cjs/commands/UpdateAssociationCommand.js +3 -3
- package/dist-cjs/commands/UpdateAssociationStatusCommand.js +3 -3
- package/dist-cjs/commands/UpdateDocumentCommand.js +3 -3
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +58 -44
- package/dist-cjs/models/models_1.js +80 -106
- package/dist-cjs/models/models_2.js +101 -1
- package/dist-cjs/pagination/GetResourcePoliciesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +356 -115
- package/dist-es/SSM.js +45 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +42 -0
- package/dist-es/commands/DescribeOpsItemsCommand.js +1 -1
- package/dist-es/commands/GetResourcePoliciesCommand.js +42 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +42 -0
- package/dist-es/commands/UpdateAssociationCommand.js +1 -1
- package/dist-es/commands/UpdateAssociationStatusCommand.js +1 -1
- package/dist-es/commands/UpdateDocumentCommand.js +1 -1
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +47 -34
- package/dist-es/models/models_1.js +65 -90
- package/dist-es/models/models_2.js +90 -1
- package/dist-es/pagination/GetResourcePoliciesPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +342 -107
- package/dist-types/SSM.d.ts +28 -0
- package/dist-types/SSMClient.d.ts +5 -2
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +40 -0
- package/dist-types/commands/DescribeOpsItemsCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +37 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +41 -0
- package/dist-types/commands/UpdateAssociationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAssociationStatusCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDocumentCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +105 -223
- package/dist-types/models/models_1.d.ts +385 -324
- package/dist-types/models/models_2.d.ts +343 -3
- package/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/SSM.d.ts +51 -0
- package/dist-types/ts3.4/SSMClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -66
- package/dist-types/ts3.4/models/models_1.d.ts +122 -104
- package/dist-types/ts3.4/models/models_2.d.ts +110 -1
- package/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
- package/package.json +29 -29
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import {
|
|
3
3
|
AlarmConfiguration,
|
|
4
|
+
AssociationComplianceSeverity,
|
|
5
|
+
AssociationDescription,
|
|
6
|
+
AssociationStatus,
|
|
7
|
+
AssociationSyncCompliance,
|
|
8
|
+
AttachmentsSource,
|
|
9
|
+
DocumentDescription,
|
|
10
|
+
DocumentFormat,
|
|
11
|
+
InstanceAssociationOutputLocation,
|
|
4
12
|
LoggingInfo,
|
|
5
13
|
MaintenanceWindowTaskCutoffBehavior,
|
|
6
14
|
MaintenanceWindowTaskParameterValueExpression,
|
|
@@ -8,7 +16,6 @@ import {
|
|
|
8
16
|
OperatingSystem,
|
|
9
17
|
OpsItemDataValue,
|
|
10
18
|
OpsItemNotification,
|
|
11
|
-
OpsItemStatus,
|
|
12
19
|
PatchAction,
|
|
13
20
|
PatchComplianceLevel,
|
|
14
21
|
PatchFilterGroup,
|
|
@@ -17,6 +24,7 @@ import {
|
|
|
17
24
|
RelatedOpsItem,
|
|
18
25
|
ResourceDataSyncSource,
|
|
19
26
|
Target,
|
|
27
|
+
TargetLocation,
|
|
20
28
|
} from "./models_0";
|
|
21
29
|
import {
|
|
22
30
|
DocumentReviewCommentSource,
|
|
@@ -24,10 +32,92 @@ import {
|
|
|
24
32
|
InventoryGroup,
|
|
25
33
|
MaintenanceWindowTaskInvocationParameters,
|
|
26
34
|
OpsFilter,
|
|
35
|
+
OpsItemStatus,
|
|
27
36
|
OpsResultAttribute,
|
|
28
37
|
ResultAttribute,
|
|
29
38
|
} from "./models_1";
|
|
30
39
|
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
40
|
+
export declare class InvalidUpdate extends __BaseException {
|
|
41
|
+
readonly name: "InvalidUpdate";
|
|
42
|
+
readonly $fault: "client";
|
|
43
|
+
Message?: string;
|
|
44
|
+
constructor(opts: __ExceptionOptionType<InvalidUpdate, __BaseException>);
|
|
45
|
+
}
|
|
46
|
+
export interface UpdateAssociationRequest {
|
|
47
|
+
AssociationId: string | undefined;
|
|
48
|
+
Parameters?: Record<string, string[]>;
|
|
49
|
+
DocumentVersion?: string;
|
|
50
|
+
ScheduleExpression?: string;
|
|
51
|
+
OutputLocation?: InstanceAssociationOutputLocation;
|
|
52
|
+
Name?: string;
|
|
53
|
+
Targets?: Target[];
|
|
54
|
+
AssociationName?: string;
|
|
55
|
+
AssociationVersion?: string;
|
|
56
|
+
AutomationTargetParameterName?: string;
|
|
57
|
+
MaxErrors?: string;
|
|
58
|
+
MaxConcurrency?: string;
|
|
59
|
+
ComplianceSeverity?: AssociationComplianceSeverity | string;
|
|
60
|
+
SyncCompliance?: AssociationSyncCompliance | string;
|
|
61
|
+
ApplyOnlyAtCronInterval?: boolean;
|
|
62
|
+
CalendarNames?: string[];
|
|
63
|
+
TargetLocations?: TargetLocation[];
|
|
64
|
+
ScheduleOffset?: number;
|
|
65
|
+
TargetMaps?: Record<string, string[]>[];
|
|
66
|
+
AlarmConfiguration?: AlarmConfiguration;
|
|
67
|
+
}
|
|
68
|
+
export interface UpdateAssociationResult {
|
|
69
|
+
AssociationDescription?: AssociationDescription;
|
|
70
|
+
}
|
|
71
|
+
export declare class StatusUnchanged extends __BaseException {
|
|
72
|
+
readonly name: "StatusUnchanged";
|
|
73
|
+
readonly $fault: "client";
|
|
74
|
+
constructor(opts: __ExceptionOptionType<StatusUnchanged, __BaseException>);
|
|
75
|
+
}
|
|
76
|
+
export interface UpdateAssociationStatusRequest {
|
|
77
|
+
Name: string | undefined;
|
|
78
|
+
InstanceId: string | undefined;
|
|
79
|
+
AssociationStatus: AssociationStatus | undefined;
|
|
80
|
+
}
|
|
81
|
+
export interface UpdateAssociationStatusResult {
|
|
82
|
+
AssociationDescription?: AssociationDescription;
|
|
83
|
+
}
|
|
84
|
+
export declare class DocumentVersionLimitExceeded extends __BaseException {
|
|
85
|
+
readonly name: "DocumentVersionLimitExceeded";
|
|
86
|
+
readonly $fault: "client";
|
|
87
|
+
Message?: string;
|
|
88
|
+
constructor(
|
|
89
|
+
opts: __ExceptionOptionType<DocumentVersionLimitExceeded, __BaseException>
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
export declare class DuplicateDocumentContent extends __BaseException {
|
|
93
|
+
readonly name: "DuplicateDocumentContent";
|
|
94
|
+
readonly $fault: "client";
|
|
95
|
+
Message?: string;
|
|
96
|
+
constructor(
|
|
97
|
+
opts: __ExceptionOptionType<DuplicateDocumentContent, __BaseException>
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
export declare class DuplicateDocumentVersionName extends __BaseException {
|
|
101
|
+
readonly name: "DuplicateDocumentVersionName";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
Message?: string;
|
|
104
|
+
constructor(
|
|
105
|
+
opts: __ExceptionOptionType<DuplicateDocumentVersionName, __BaseException>
|
|
106
|
+
);
|
|
107
|
+
}
|
|
108
|
+
export interface UpdateDocumentRequest {
|
|
109
|
+
Content: string | undefined;
|
|
110
|
+
Attachments?: AttachmentsSource[];
|
|
111
|
+
Name: string | undefined;
|
|
112
|
+
DisplayName?: string;
|
|
113
|
+
VersionName?: string;
|
|
114
|
+
DocumentVersion?: string;
|
|
115
|
+
DocumentFormat?: DocumentFormat | string;
|
|
116
|
+
TargetType?: string;
|
|
117
|
+
}
|
|
118
|
+
export interface UpdateDocumentResult {
|
|
119
|
+
DocumentDescription?: DocumentDescription;
|
|
120
|
+
}
|
|
31
121
|
export interface UpdateDocumentDefaultVersionRequest {
|
|
32
122
|
Name: string | undefined;
|
|
33
123
|
DocumentVersion: string | undefined;
|
|
@@ -164,6 +254,7 @@ export interface UpdateOpsItemRequest {
|
|
|
164
254
|
ActualEndTime?: Date;
|
|
165
255
|
PlannedStartTime?: Date;
|
|
166
256
|
PlannedEndTime?: Date;
|
|
257
|
+
OpsItemArn?: string;
|
|
167
258
|
}
|
|
168
259
|
export interface UpdateOpsItemResponse {}
|
|
169
260
|
export declare class OpsMetadataKeyLimitExceededException extends __BaseException {
|
|
@@ -264,6 +355,24 @@ export interface GetOpsSummaryRequest {
|
|
|
264
355
|
NextToken?: string;
|
|
265
356
|
MaxResults?: number;
|
|
266
357
|
}
|
|
358
|
+
export declare const UpdateAssociationRequestFilterSensitiveLog: (
|
|
359
|
+
obj: UpdateAssociationRequest
|
|
360
|
+
) => any;
|
|
361
|
+
export declare const UpdateAssociationResultFilterSensitiveLog: (
|
|
362
|
+
obj: UpdateAssociationResult
|
|
363
|
+
) => any;
|
|
364
|
+
export declare const UpdateAssociationStatusRequestFilterSensitiveLog: (
|
|
365
|
+
obj: UpdateAssociationStatusRequest
|
|
366
|
+
) => any;
|
|
367
|
+
export declare const UpdateAssociationStatusResultFilterSensitiveLog: (
|
|
368
|
+
obj: UpdateAssociationStatusResult
|
|
369
|
+
) => any;
|
|
370
|
+
export declare const UpdateDocumentRequestFilterSensitiveLog: (
|
|
371
|
+
obj: UpdateDocumentRequest
|
|
372
|
+
) => any;
|
|
373
|
+
export declare const UpdateDocumentResultFilterSensitiveLog: (
|
|
374
|
+
obj: UpdateDocumentResult
|
|
375
|
+
) => any;
|
|
267
376
|
export declare const UpdateDocumentDefaultVersionRequestFilterSensitiveLog: (
|
|
268
377
|
obj: UpdateDocumentDefaultVersionRequest
|
|
269
378
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetResourcePoliciesCommandInput,
|
|
4
|
+
GetResourcePoliciesCommandOutput,
|
|
5
|
+
} from "../commands/GetResourcePoliciesCommand";
|
|
6
|
+
import { SSMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetResourcePolicies(
|
|
8
|
+
config: SSMPaginationConfiguration,
|
|
9
|
+
input: GetResourcePoliciesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetResourcePoliciesCommandOutput>;
|
|
@@ -32,6 +32,7 @@ export * from "./GetInventorySchemaPaginator";
|
|
|
32
32
|
export * from "./GetOpsSummaryPaginator";
|
|
33
33
|
export * from "./GetParameterHistoryPaginator";
|
|
34
34
|
export * from "./GetParametersByPathPaginator";
|
|
35
|
+
export * from "./GetResourcePoliciesPaginator";
|
|
35
36
|
export * from "./ListAssociationVersionsPaginator";
|
|
36
37
|
export * from "./ListAssociationsPaginator";
|
|
37
38
|
export * from "./ListCommandInvocationsPaginator";
|
|
@@ -95,6 +95,10 @@ import {
|
|
|
95
95
|
DeleteResourceDataSyncCommandInput,
|
|
96
96
|
DeleteResourceDataSyncCommandOutput,
|
|
97
97
|
} from "../commands/DeleteResourceDataSyncCommand";
|
|
98
|
+
import {
|
|
99
|
+
DeleteResourcePolicyCommandInput,
|
|
100
|
+
DeleteResourcePolicyCommandOutput,
|
|
101
|
+
} from "../commands/DeleteResourcePolicyCommand";
|
|
98
102
|
import {
|
|
99
103
|
DeregisterManagedInstanceCommandInput,
|
|
100
104
|
DeregisterManagedInstanceCommandOutput,
|
|
@@ -335,6 +339,10 @@ import {
|
|
|
335
339
|
GetPatchBaselineForPatchGroupCommandInput,
|
|
336
340
|
GetPatchBaselineForPatchGroupCommandOutput,
|
|
337
341
|
} from "../commands/GetPatchBaselineForPatchGroupCommand";
|
|
342
|
+
import {
|
|
343
|
+
GetResourcePoliciesCommandInput,
|
|
344
|
+
GetResourcePoliciesCommandOutput,
|
|
345
|
+
} from "../commands/GetResourcePoliciesCommand";
|
|
338
346
|
import {
|
|
339
347
|
GetServiceSettingCommandInput,
|
|
340
348
|
GetServiceSettingCommandOutput,
|
|
@@ -423,6 +431,10 @@ import {
|
|
|
423
431
|
PutParameterCommandInput,
|
|
424
432
|
PutParameterCommandOutput,
|
|
425
433
|
} from "../commands/PutParameterCommand";
|
|
434
|
+
import {
|
|
435
|
+
PutResourcePolicyCommandInput,
|
|
436
|
+
PutResourcePolicyCommandOutput,
|
|
437
|
+
} from "../commands/PutResourcePolicyCommand";
|
|
426
438
|
import {
|
|
427
439
|
RegisterDefaultPatchBaselineCommandInput,
|
|
428
440
|
RegisterDefaultPatchBaselineCommandOutput,
|
|
@@ -635,6 +647,10 @@ export declare const serializeAws_json1_1DeleteResourceDataSyncCommand: (
|
|
|
635
647
|
input: DeleteResourceDataSyncCommandInput,
|
|
636
648
|
context: __SerdeContext
|
|
637
649
|
) => Promise<__HttpRequest>;
|
|
650
|
+
export declare const serializeAws_json1_1DeleteResourcePolicyCommand: (
|
|
651
|
+
input: DeleteResourcePolicyCommandInput,
|
|
652
|
+
context: __SerdeContext
|
|
653
|
+
) => Promise<__HttpRequest>;
|
|
638
654
|
export declare const serializeAws_json1_1DeregisterManagedInstanceCommand: (
|
|
639
655
|
input: DeregisterManagedInstanceCommandInput,
|
|
640
656
|
context: __SerdeContext
|
|
@@ -875,6 +891,10 @@ export declare const serializeAws_json1_1GetPatchBaselineForPatchGroupCommand: (
|
|
|
875
891
|
input: GetPatchBaselineForPatchGroupCommandInput,
|
|
876
892
|
context: __SerdeContext
|
|
877
893
|
) => Promise<__HttpRequest>;
|
|
894
|
+
export declare const serializeAws_json1_1GetResourcePoliciesCommand: (
|
|
895
|
+
input: GetResourcePoliciesCommandInput,
|
|
896
|
+
context: __SerdeContext
|
|
897
|
+
) => Promise<__HttpRequest>;
|
|
878
898
|
export declare const serializeAws_json1_1GetServiceSettingCommand: (
|
|
879
899
|
input: GetServiceSettingCommandInput,
|
|
880
900
|
context: __SerdeContext
|
|
@@ -963,6 +983,10 @@ export declare const serializeAws_json1_1PutParameterCommand: (
|
|
|
963
983
|
input: PutParameterCommandInput,
|
|
964
984
|
context: __SerdeContext
|
|
965
985
|
) => Promise<__HttpRequest>;
|
|
986
|
+
export declare const serializeAws_json1_1PutResourcePolicyCommand: (
|
|
987
|
+
input: PutResourcePolicyCommandInput,
|
|
988
|
+
context: __SerdeContext
|
|
989
|
+
) => Promise<__HttpRequest>;
|
|
966
990
|
export declare const serializeAws_json1_1RegisterDefaultPatchBaselineCommand: (
|
|
967
991
|
input: RegisterDefaultPatchBaselineCommandInput,
|
|
968
992
|
context: __SerdeContext
|
|
@@ -1175,6 +1199,10 @@ export declare const deserializeAws_json1_1DeleteResourceDataSyncCommand: (
|
|
|
1175
1199
|
output: __HttpResponse,
|
|
1176
1200
|
context: __SerdeContext
|
|
1177
1201
|
) => Promise<DeleteResourceDataSyncCommandOutput>;
|
|
1202
|
+
export declare const deserializeAws_json1_1DeleteResourcePolicyCommand: (
|
|
1203
|
+
output: __HttpResponse,
|
|
1204
|
+
context: __SerdeContext
|
|
1205
|
+
) => Promise<DeleteResourcePolicyCommandOutput>;
|
|
1178
1206
|
export declare const deserializeAws_json1_1DeregisterManagedInstanceCommand: (
|
|
1179
1207
|
output: __HttpResponse,
|
|
1180
1208
|
context: __SerdeContext
|
|
@@ -1415,6 +1443,10 @@ export declare const deserializeAws_json1_1GetPatchBaselineForPatchGroupCommand:
|
|
|
1415
1443
|
output: __HttpResponse,
|
|
1416
1444
|
context: __SerdeContext
|
|
1417
1445
|
) => Promise<GetPatchBaselineForPatchGroupCommandOutput>;
|
|
1446
|
+
export declare const deserializeAws_json1_1GetResourcePoliciesCommand: (
|
|
1447
|
+
output: __HttpResponse,
|
|
1448
|
+
context: __SerdeContext
|
|
1449
|
+
) => Promise<GetResourcePoliciesCommandOutput>;
|
|
1418
1450
|
export declare const deserializeAws_json1_1GetServiceSettingCommand: (
|
|
1419
1451
|
output: __HttpResponse,
|
|
1420
1452
|
context: __SerdeContext
|
|
@@ -1503,6 +1535,10 @@ export declare const deserializeAws_json1_1PutParameterCommand: (
|
|
|
1503
1535
|
output: __HttpResponse,
|
|
1504
1536
|
context: __SerdeContext
|
|
1505
1537
|
) => Promise<PutParameterCommandOutput>;
|
|
1538
|
+
export declare const deserializeAws_json1_1PutResourcePolicyCommand: (
|
|
1539
|
+
output: __HttpResponse,
|
|
1540
|
+
context: __SerdeContext
|
|
1541
|
+
) => Promise<PutResourcePolicyCommandOutput>;
|
|
1506
1542
|
export declare const deserializeAws_json1_1RegisterDefaultPatchBaselineCommand: (
|
|
1507
1543
|
output: __HttpResponse,
|
|
1508
1544
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.212.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",
|
|
@@ -19,39 +19,39 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.212.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.212.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.212.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.212.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.212.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.212.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.212.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.212.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.212.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.212.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.212.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.212.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.212.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.212.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.212.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.212.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.212.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.212.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.212.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.212.0",
|
|
42
|
+
"@aws-sdk/types": "3.212.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.212.0",
|
|
44
44
|
"@aws-sdk/util-base64": "3.208.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.212.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.212.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.212.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.212.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.212.0",
|
|
52
52
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
53
53
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
54
|
-
"@aws-sdk/util-waiter": "3.
|
|
54
|
+
"@aws-sdk/util-waiter": "3.212.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|
|
57
57
|
},
|