@aws-sdk/client-organizations 3.321.1 → 3.326.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/commands/AcceptHandshakeCommand.d.ts +32 -0
- package/dist-types/commands/AttachPolicyCommand.d.ts +4 -0
- package/dist-types/commands/CancelHandshakeCommand.d.ts +32 -0
- package/dist-types/commands/CloseAccountCommand.d.ts +4 -0
- package/dist-types/commands/CreateAccountCommand.d.ts +15 -0
- package/dist-types/commands/CreateGovCloudAccountCommand.d.ts +15 -0
- package/dist-types/commands/CreateOrganizationCommand.d.ts +19 -0
- package/dist-types/commands/CreateOrganizationalUnitCommand.d.ts +10 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeclineHandshakeCommand.d.ts +32 -0
- package/dist-types/commands/DeleteOrganizationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteOrganizationalUnitCommand.d.ts +4 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterDelegatedAdministratorCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAccountCommand.d.ts +14 -0
- package/dist-types/commands/DescribeCreateAccountStatusCommand.d.ts +15 -0
- package/dist-types/commands/DescribeEffectivePolicyCommand.d.ts +11 -0
- package/dist-types/commands/DescribeHandshakeCommand.d.ts +32 -0
- package/dist-types/commands/DescribeOrganizationCommand.d.ts +19 -0
- package/dist-types/commands/DescribeOrganizationalUnitCommand.d.ts +10 -0
- package/dist-types/commands/DescribePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeResourcePolicyCommand.d.ts +12 -0
- package/dist-types/commands/DetachPolicyCommand.d.ts +4 -0
- package/dist-types/commands/DisableAWSServiceAccessCommand.d.ts +4 -0
- package/dist-types/commands/DisablePolicyTypeCommand.d.ts +16 -0
- package/dist-types/commands/EnableAWSServiceAccessCommand.d.ts +4 -0
- package/dist-types/commands/EnableAllFeaturesCommand.d.ts +32 -0
- package/dist-types/commands/EnablePolicyTypeCommand.d.ts +16 -0
- package/dist-types/commands/InviteAccountToOrganizationCommand.d.ts +32 -0
- package/dist-types/commands/LeaveOrganizationCommand.d.ts +4 -0
- package/dist-types/commands/ListAWSServiceAccessForOrganizationCommand.d.ts +12 -0
- package/dist-types/commands/ListAccountsCommand.d.ts +17 -0
- package/dist-types/commands/ListAccountsForParentCommand.d.ts +17 -0
- package/dist-types/commands/ListChildrenCommand.d.ts +12 -0
- package/dist-types/commands/ListCreateAccountStatusCommand.d.ts +18 -0
- package/dist-types/commands/ListDelegatedAdministratorsCommand.d.ts +18 -0
- package/dist-types/commands/ListDelegatedServicesForAccountCommand.d.ts +12 -0
- package/dist-types/commands/ListHandshakesForAccountCommand.d.ts +35 -0
- package/dist-types/commands/ListHandshakesForOrganizationCommand.d.ts +35 -0
- package/dist-types/commands/ListOrganizationalUnitsForParentCommand.d.ts +13 -0
- package/dist-types/commands/ListParentsCommand.d.ts +12 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/ListPoliciesForTargetCommand.d.ts +16 -0
- package/dist-types/commands/ListRootsCommand.d.ts +19 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/ListTargetsForPolicyCommand.d.ts +14 -0
- package/dist-types/commands/MoveAccountCommand.d.ts +4 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +12 -0
- package/dist-types/commands/RegisterDelegatedAdministratorCommand.d.ts +4 -0
- package/dist-types/commands/RemoveAccountFromOrganizationCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateOrganizationalUnitCommand.d.ts +10 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +16 -0
- package/package.json +16 -16
|
@@ -46,6 +46,20 @@ export interface ListPoliciesForTargetCommandOutput extends ListPoliciesForTarge
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new ListPoliciesForTargetCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // ListPoliciesForTargetResponse
|
|
50
|
+
* // Policies: [ // Policies
|
|
51
|
+
* // { // PolicySummary
|
|
52
|
+
* // Id: "STRING_VALUE",
|
|
53
|
+
* // Arn: "STRING_VALUE",
|
|
54
|
+
* // Name: "STRING_VALUE",
|
|
55
|
+
* // Description: "STRING_VALUE",
|
|
56
|
+
* // Type: "SERVICE_CONTROL_POLICY" || "TAG_POLICY" || "BACKUP_POLICY" || "AISERVICES_OPT_OUT_POLICY",
|
|
57
|
+
* // AwsManaged: true || false,
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // NextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
49
63
|
* ```
|
|
50
64
|
*
|
|
51
65
|
* @param ListPoliciesForTargetCommandInput - {@link ListPoliciesForTargetCommandInput}
|
|
@@ -187,6 +201,8 @@ export interface ListPoliciesForTargetCommandOutput extends ListPoliciesForTarge
|
|
|
187
201
|
* @throws {@link UnsupportedAPIEndpointException} (client fault)
|
|
188
202
|
* <p>This action isn't available in the current Amazon Web Services Region.</p>
|
|
189
203
|
*
|
|
204
|
+
* @throws {@link OrganizationsServiceException}
|
|
205
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
190
206
|
*
|
|
191
207
|
* @example To retrieve a list policies attached to a root, OU, or account
|
|
192
208
|
* ```javascript
|
|
@@ -49,6 +49,23 @@ export interface ListRootsCommandOutput extends ListRootsResponse, __MetadataBea
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new ListRootsCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // ListRootsResponse
|
|
53
|
+
* // Roots: [ // Roots
|
|
54
|
+
* // { // Root
|
|
55
|
+
* // Id: "STRING_VALUE",
|
|
56
|
+
* // Arn: "STRING_VALUE",
|
|
57
|
+
* // Name: "STRING_VALUE",
|
|
58
|
+
* // PolicyTypes: [ // PolicyTypes
|
|
59
|
+
* // { // PolicyTypeSummary
|
|
60
|
+
* // Type: "SERVICE_CONTROL_POLICY" || "TAG_POLICY" || "BACKUP_POLICY" || "AISERVICES_OPT_OUT_POLICY",
|
|
61
|
+
* // Status: "ENABLED" || "PENDING_ENABLE" || "PENDING_DISABLE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // NextToken: "STRING_VALUE",
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
52
69
|
* ```
|
|
53
70
|
*
|
|
54
71
|
* @param ListRootsCommandInput - {@link ListRootsCommandInput}
|
|
@@ -183,6 +200,8 @@ export interface ListRootsCommandOutput extends ListRootsResponse, __MetadataBea
|
|
|
183
200
|
* <i>Organizations User Guide.</i>
|
|
184
201
|
* </p>
|
|
185
202
|
*
|
|
203
|
+
* @throws {@link OrganizationsServiceException}
|
|
204
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
186
205
|
*
|
|
187
206
|
* @example To retrieve a list of roots in the organization
|
|
188
207
|
* ```javascript
|
|
@@ -49,6 +49,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new ListTagsForResourceCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // ListTagsForResourceResponse
|
|
53
|
+
* // Tags: [ // Tags
|
|
54
|
+
* // { // Tag
|
|
55
|
+
* // Key: "STRING_VALUE", // required
|
|
56
|
+
* // Value: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // NextToken: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
52
62
|
* ```
|
|
53
63
|
*
|
|
54
64
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -187,6 +197,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
187
197
|
* <i>Organizations User Guide.</i>
|
|
188
198
|
* </p>
|
|
189
199
|
*
|
|
200
|
+
* @throws {@link OrganizationsServiceException}
|
|
201
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
190
202
|
*
|
|
191
203
|
*/
|
|
192
204
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -44,6 +44,18 @@ export interface ListTargetsForPolicyCommandOutput extends ListTargetsForPolicyR
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new ListTargetsForPolicyCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // ListTargetsForPolicyResponse
|
|
48
|
+
* // Targets: [ // PolicyTargets
|
|
49
|
+
* // { // PolicyTargetSummary
|
|
50
|
+
* // TargetId: "STRING_VALUE",
|
|
51
|
+
* // Arn: "STRING_VALUE",
|
|
52
|
+
* // Name: "STRING_VALUE",
|
|
53
|
+
* // Type: "ACCOUNT" || "ORGANIZATIONAL_UNIT" || "ROOT",
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // NextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
47
59
|
* ```
|
|
48
60
|
*
|
|
49
61
|
* @param ListTargetsForPolicyCommandInput - {@link ListTargetsForPolicyCommandInput}
|
|
@@ -184,6 +196,8 @@ export interface ListTargetsForPolicyCommandOutput extends ListTargetsForPolicyR
|
|
|
184
196
|
* @throws {@link UnsupportedAPIEndpointException} (client fault)
|
|
185
197
|
* <p>This action isn't available in the current Amazon Web Services Region.</p>
|
|
186
198
|
*
|
|
199
|
+
* @throws {@link OrganizationsServiceException}
|
|
200
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
187
201
|
*
|
|
188
202
|
* @example To retrieve a list of roots, OUs, and accounts to which a policy is attached
|
|
189
203
|
* ```javascript
|
|
@@ -35,6 +35,8 @@ export interface MoveAccountCommandOutput extends __MetadataBearer {
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new MoveAccountCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param MoveAccountCommandInput - {@link MoveAccountCommandInput}
|
|
@@ -189,6 +191,8 @@ export interface MoveAccountCommandOutput extends __MetadataBearer {
|
|
|
189
191
|
* <i>Organizations User Guide.</i>
|
|
190
192
|
* </p>
|
|
191
193
|
*
|
|
194
|
+
* @throws {@link OrganizationsServiceException}
|
|
195
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
192
196
|
*
|
|
193
197
|
* @example To move an OU or account to another OU or the root
|
|
194
198
|
* ```javascript
|
|
@@ -38,6 +38,16 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new PutResourcePolicyCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // PutResourcePolicyResponse
|
|
42
|
+
* // ResourcePolicy: { // ResourcePolicy
|
|
43
|
+
* // ResourcePolicySummary: { // ResourcePolicySummary
|
|
44
|
+
* // Id: "STRING_VALUE",
|
|
45
|
+
* // Arn: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // Content: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
41
51
|
* ```
|
|
42
52
|
*
|
|
43
53
|
* @param PutResourcePolicyCommandInput - {@link PutResourcePolicyCommandInput}
|
|
@@ -376,6 +386,8 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
|
|
|
376
386
|
* @throws {@link UnsupportedAPIEndpointException} (client fault)
|
|
377
387
|
* <p>This action isn't available in the current Amazon Web Services Region.</p>
|
|
378
388
|
*
|
|
389
|
+
* @throws {@link OrganizationsServiceException}
|
|
390
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
379
391
|
*
|
|
380
392
|
*/
|
|
381
393
|
export declare class PutResourcePolicyCommand extends $Command<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -40,6 +40,8 @@ export interface RegisterDelegatedAdministratorCommandOutput extends __MetadataB
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new RegisterDelegatedAdministratorCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
43
45
|
* ```
|
|
44
46
|
*
|
|
45
47
|
* @param RegisterDelegatedAdministratorCommandInput - {@link RegisterDelegatedAdministratorCommandInput}
|
|
@@ -387,6 +389,8 @@ export interface RegisterDelegatedAdministratorCommandOutput extends __MetadataB
|
|
|
387
389
|
* @throws {@link UnsupportedAPIEndpointException} (client fault)
|
|
388
390
|
* <p>This action isn't available in the current Amazon Web Services Region.</p>
|
|
389
391
|
*
|
|
392
|
+
* @throws {@link OrganizationsServiceException}
|
|
393
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
390
394
|
*
|
|
391
395
|
*/
|
|
392
396
|
export declare class RegisterDelegatedAdministratorCommand extends $Command<RegisterDelegatedAdministratorCommandInput, RegisterDelegatedAdministratorCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -68,6 +68,8 @@ export interface RemoveAccountFromOrganizationCommandOutput extends __MetadataBe
|
|
|
68
68
|
* };
|
|
69
69
|
* const command = new RemoveAccountFromOrganizationCommand(input);
|
|
70
70
|
* const response = await client.send(command);
|
|
71
|
+
* // {};
|
|
72
|
+
*
|
|
71
73
|
* ```
|
|
72
74
|
*
|
|
73
75
|
* @param RemoveAccountFromOrganizationCommandInput - {@link RemoveAccountFromOrganizationCommandInput}
|
|
@@ -413,6 +415,8 @@ export interface RemoveAccountFromOrganizationCommandOutput extends __MetadataBe
|
|
|
413
415
|
* <i>Organizations User Guide.</i>
|
|
414
416
|
* </p>
|
|
415
417
|
*
|
|
418
|
+
* @throws {@link OrganizationsServiceException}
|
|
419
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
416
420
|
*
|
|
417
421
|
* @example To remove an account from an organization as the master account
|
|
418
422
|
* ```javascript
|
|
@@ -53,6 +53,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new TagResourceCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // {};
|
|
57
|
+
*
|
|
56
58
|
* ```
|
|
57
59
|
*
|
|
58
60
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -392,6 +394,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
392
394
|
* <i>Organizations User Guide.</i>
|
|
393
395
|
* </p>
|
|
394
396
|
*
|
|
397
|
+
* @throws {@link OrganizationsServiceException}
|
|
398
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
395
399
|
*
|
|
396
400
|
*/
|
|
397
401
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -50,6 +50,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new UntagResourceCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // {};
|
|
54
|
+
*
|
|
53
55
|
* ```
|
|
54
56
|
*
|
|
55
57
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -389,6 +391,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
389
391
|
* <i>Organizations User Guide.</i>
|
|
390
392
|
* </p>
|
|
391
393
|
*
|
|
394
|
+
* @throws {@link OrganizationsServiceException}
|
|
395
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
392
396
|
*
|
|
393
397
|
*/
|
|
394
398
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -35,6 +35,14 @@ export interface UpdateOrganizationalUnitCommandOutput extends UpdateOrganizatio
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UpdateOrganizationalUnitCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // UpdateOrganizationalUnitResponse
|
|
39
|
+
* // OrganizationalUnit: { // OrganizationalUnit
|
|
40
|
+
* // Id: "STRING_VALUE",
|
|
41
|
+
* // Arn: "STRING_VALUE",
|
|
42
|
+
* // Name: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
38
46
|
* ```
|
|
39
47
|
*
|
|
40
48
|
* @param UpdateOrganizationalUnitCommandInput - {@link UpdateOrganizationalUnitCommandInput}
|
|
@@ -180,6 +188,8 @@ export interface UpdateOrganizationalUnitCommandOutput extends UpdateOrganizatio
|
|
|
180
188
|
* <i>Organizations User Guide.</i>
|
|
181
189
|
* </p>
|
|
182
190
|
*
|
|
191
|
+
* @throws {@link OrganizationsServiceException}
|
|
192
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
183
193
|
*
|
|
184
194
|
* @example To rename an organizational unit
|
|
185
195
|
* ```javascript
|
|
@@ -37,6 +37,20 @@ export interface UpdatePolicyCommandOutput extends UpdatePolicyResponse, __Metad
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new UpdatePolicyCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // UpdatePolicyResponse
|
|
41
|
+
* // Policy: { // Policy
|
|
42
|
+
* // PolicySummary: { // PolicySummary
|
|
43
|
+
* // Id: "STRING_VALUE",
|
|
44
|
+
* // Arn: "STRING_VALUE",
|
|
45
|
+
* // Name: "STRING_VALUE",
|
|
46
|
+
* // Description: "STRING_VALUE",
|
|
47
|
+
* // Type: "SERVICE_CONTROL_POLICY" || "TAG_POLICY" || "BACKUP_POLICY" || "AISERVICES_OPT_OUT_POLICY",
|
|
48
|
+
* // AwsManaged: true || false,
|
|
49
|
+
* // },
|
|
50
|
+
* // Content: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
40
54
|
* ```
|
|
41
55
|
*
|
|
42
56
|
* @param UpdatePolicyCommandInput - {@link UpdatePolicyCommandInput}
|
|
@@ -392,6 +406,8 @@ export interface UpdatePolicyCommandOutput extends UpdatePolicyResponse, __Metad
|
|
|
392
406
|
* @throws {@link UnsupportedAPIEndpointException} (client fault)
|
|
393
407
|
* <p>This action isn't available in the current Amazon Web Services Region.</p>
|
|
394
408
|
*
|
|
409
|
+
* @throws {@link OrganizationsServiceException}
|
|
410
|
+
* <p>Base exception class for all service exceptions from Organizations service.</p>
|
|
395
411
|
*
|
|
396
412
|
* @example To update the details of a policy
|
|
397
413
|
* ```javascript
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-organizations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Organizations Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.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,33 +21,33 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|