@aws-sdk/client-marketplace-catalog 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/CancelChangeSetCommand.d.ts +7 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +4 -0
- package/dist-types/commands/DescribeChangeSetCommand.d.ts +30 -0
- package/dist-types/commands/DescribeEntityCommand.d.ts +10 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +6 -0
- package/dist-types/commands/ListChangeSetsCommand.d.ts +20 -0
- package/dist-types/commands/ListEntitiesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +4 -0
- package/dist-types/commands/StartChangeSetCommand.d.ts +7 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/package.json +16 -16
|
@@ -35,6 +35,11 @@ export interface CancelChangeSetCommandOutput extends CancelChangeSetResponse, _
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CancelChangeSetCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // CancelChangeSetResponse
|
|
39
|
+
* // ChangeSetId: "STRING_VALUE",
|
|
40
|
+
* // ChangeSetArn: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
40
45
|
* @param CancelChangeSetCommandInput - {@link CancelChangeSetCommandInput}
|
|
@@ -66,6 +71,8 @@ export interface CancelChangeSetCommandOutput extends CancelChangeSetResponse, _
|
|
|
66
71
|
* <p>An error occurred during validation.</p>
|
|
67
72
|
* <p>HTTP status code: 422</p>
|
|
68
73
|
*
|
|
74
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
69
76
|
*
|
|
70
77
|
*/
|
|
71
78
|
export declare class CancelChangeSetCommand extends $Command<CancelChangeSetCommandInput, CancelChangeSetCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteResourcePolicyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteResourcePolicyCommandInput - {@link DeleteResourcePolicyCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
60
62
|
* <p>An error occurred during validation.</p>
|
|
61
63
|
* <p>HTTP status code: 422</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -32,6 +32,34 @@ export interface DescribeChangeSetCommandOutput extends DescribeChangeSetRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeChangeSetCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeChangeSetResponse
|
|
36
|
+
* // ChangeSetId: "STRING_VALUE",
|
|
37
|
+
* // ChangeSetArn: "STRING_VALUE",
|
|
38
|
+
* // ChangeSetName: "STRING_VALUE",
|
|
39
|
+
* // StartTime: "STRING_VALUE",
|
|
40
|
+
* // EndTime: "STRING_VALUE",
|
|
41
|
+
* // Status: "PREPARING" || "APPLYING" || "SUCCEEDED" || "CANCELLED" || "FAILED",
|
|
42
|
+
* // FailureCode: "CLIENT_ERROR" || "SERVER_FAULT",
|
|
43
|
+
* // FailureDescription: "STRING_VALUE",
|
|
44
|
+
* // ChangeSet: [ // ChangeSetDescription
|
|
45
|
+
* // { // ChangeSummary
|
|
46
|
+
* // ChangeType: "STRING_VALUE",
|
|
47
|
+
* // Entity: { // Entity
|
|
48
|
+
* // Type: "STRING_VALUE", // required
|
|
49
|
+
* // Identifier: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // Details: "STRING_VALUE",
|
|
52
|
+
* // ErrorDetailList: [ // ErrorDetailList
|
|
53
|
+
* // { // ErrorDetail
|
|
54
|
+
* // ErrorCode: "STRING_VALUE",
|
|
55
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // ChangeName: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
35
63
|
* ```
|
|
36
64
|
*
|
|
37
65
|
* @param DescribeChangeSetCommandInput - {@link DescribeChangeSetCommandInput}
|
|
@@ -60,6 +88,8 @@ export interface DescribeChangeSetCommandOutput extends DescribeChangeSetRespons
|
|
|
60
88
|
* <p>An error occurred during validation.</p>
|
|
61
89
|
* <p>HTTP status code: 422</p>
|
|
62
90
|
*
|
|
91
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
63
93
|
*
|
|
64
94
|
*/
|
|
65
95
|
export declare class DescribeChangeSetCommand extends $Command<DescribeChangeSetCommandInput, DescribeChangeSetCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -32,6 +32,14 @@ export interface DescribeEntityCommandOutput extends DescribeEntityResponse, __M
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeEntityCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeEntityResponse
|
|
36
|
+
* // EntityType: "STRING_VALUE",
|
|
37
|
+
* // EntityIdentifier: "STRING_VALUE",
|
|
38
|
+
* // EntityArn: "STRING_VALUE",
|
|
39
|
+
* // LastModifiedDate: "STRING_VALUE",
|
|
40
|
+
* // Details: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
35
43
|
* ```
|
|
36
44
|
*
|
|
37
45
|
* @param DescribeEntityCommandInput - {@link DescribeEntityCommandInput}
|
|
@@ -63,6 +71,8 @@ export interface DescribeEntityCommandOutput extends DescribeEntityResponse, __M
|
|
|
63
71
|
* <p>An error occurred during validation.</p>
|
|
64
72
|
* <p>HTTP status code: 422</p>
|
|
65
73
|
*
|
|
74
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
66
76
|
*
|
|
67
77
|
*/
|
|
68
78
|
export declare class DescribeEntityCommand extends $Command<DescribeEntityCommandInput, DescribeEntityCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetResourcePolicyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetResourcePolicyResponse
|
|
36
|
+
* // Policy: "STRING_VALUE",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param GetResourcePolicyCommandInput - {@link GetResourcePolicyCommandInput}
|
|
@@ -60,6 +64,8 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
60
64
|
* <p>An error occurred during validation.</p>
|
|
61
65
|
* <p>HTTP status code: 422</p>
|
|
62
66
|
*
|
|
67
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
63
69
|
*
|
|
64
70
|
*/
|
|
65
71
|
export declare class GetResourcePolicyCommand extends $Command<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -50,6 +50,24 @@ export interface ListChangeSetsCommandOutput extends ListChangeSetsResponse, __M
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new ListChangeSetsCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // { // ListChangeSetsResponse
|
|
54
|
+
* // ChangeSetSummaryList: [ // ChangeSetSummaryList
|
|
55
|
+
* // { // ChangeSetSummaryListItem
|
|
56
|
+
* // ChangeSetId: "STRING_VALUE",
|
|
57
|
+
* // ChangeSetArn: "STRING_VALUE",
|
|
58
|
+
* // ChangeSetName: "STRING_VALUE",
|
|
59
|
+
* // StartTime: "STRING_VALUE",
|
|
60
|
+
* // EndTime: "STRING_VALUE",
|
|
61
|
+
* // Status: "PREPARING" || "APPLYING" || "SUCCEEDED" || "CANCELLED" || "FAILED",
|
|
62
|
+
* // EntityIdList: [ // ResourceIdList
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // FailureCode: "CLIENT_ERROR" || "SERVER_FAULT",
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // NextToken: "STRING_VALUE",
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
53
71
|
* ```
|
|
54
72
|
*
|
|
55
73
|
* @param ListChangeSetsCommandInput - {@link ListChangeSetsCommandInput}
|
|
@@ -74,6 +92,8 @@ export interface ListChangeSetsCommandOutput extends ListChangeSetsResponse, __M
|
|
|
74
92
|
* <p>An error occurred during validation.</p>
|
|
75
93
|
* <p>HTTP status code: 422</p>
|
|
76
94
|
*
|
|
95
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
77
97
|
*
|
|
78
98
|
*/
|
|
79
99
|
export declare class ListChangeSetsCommand extends $Command<ListChangeSetsCommandInput, ListChangeSetsCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -47,6 +47,20 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new ListEntitiesCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // ListEntitiesResponse
|
|
51
|
+
* // EntitySummaryList: [ // EntitySummaryList
|
|
52
|
+
* // { // EntitySummary
|
|
53
|
+
* // Name: "STRING_VALUE",
|
|
54
|
+
* // EntityType: "STRING_VALUE",
|
|
55
|
+
* // EntityId: "STRING_VALUE",
|
|
56
|
+
* // EntityArn: "STRING_VALUE",
|
|
57
|
+
* // LastModifiedDate: "STRING_VALUE",
|
|
58
|
+
* // Visibility: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // NextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
50
64
|
* ```
|
|
51
65
|
*
|
|
52
66
|
* @param ListEntitiesCommandInput - {@link ListEntitiesCommandInput}
|
|
@@ -75,6 +89,8 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad
|
|
|
75
89
|
* <p>An error occurred during validation.</p>
|
|
76
90
|
* <p>HTTP status code: 422</p>
|
|
77
91
|
*
|
|
92
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
78
94
|
*
|
|
79
95
|
*/
|
|
80
96
|
export declare class ListEntitiesCommand extends $Command<ListEntitiesCommandInput, ListEntitiesCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -31,6 +31,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // ResourceArn: "STRING_VALUE",
|
|
36
|
+
* // Tags: [ // TagList
|
|
37
|
+
* // { // Tag
|
|
38
|
+
* // Key: "STRING_VALUE", // required
|
|
39
|
+
* // Value: "STRING_VALUE", // required
|
|
40
|
+
* // },
|
|
41
|
+
* // ],
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
34
44
|
* ```
|
|
35
45
|
*
|
|
36
46
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -59,6 +69,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
59
69
|
* <p>An error occurred during validation.</p>
|
|
60
70
|
* <p>HTTP status code: 422</p>
|
|
61
71
|
*
|
|
72
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
62
74
|
*
|
|
63
75
|
*/
|
|
64
76
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new PutResourcePolicyCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param PutResourcePolicyCommandInput - {@link PutResourcePolicyCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
|
|
|
61
63
|
* <p>An error occurred during validation.</p>
|
|
62
64
|
* <p>HTTP status code: 422</p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class PutResourcePolicyCommand extends $Command<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -68,6 +68,11 @@ export interface StartChangeSetCommandOutput extends StartChangeSetResponse, __M
|
|
|
68
68
|
* };
|
|
69
69
|
* const command = new StartChangeSetCommand(input);
|
|
70
70
|
* const response = await client.send(command);
|
|
71
|
+
* // { // StartChangeSetResponse
|
|
72
|
+
* // ChangeSetId: "STRING_VALUE",
|
|
73
|
+
* // ChangeSetArn: "STRING_VALUE",
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
71
76
|
* ```
|
|
72
77
|
*
|
|
73
78
|
* @param StartChangeSetCommandInput - {@link StartChangeSetCommandInput}
|
|
@@ -102,6 +107,8 @@ export interface StartChangeSetCommandOutput extends StartChangeSetResponse, __M
|
|
|
102
107
|
* <p>An error occurred during validation.</p>
|
|
103
108
|
* <p>HTTP status code: 422</p>
|
|
104
109
|
*
|
|
110
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
111
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
105
112
|
*
|
|
106
113
|
*/
|
|
107
114
|
export declare class StartChangeSetCommand extends $Command<StartChangeSetCommandInput, StartChangeSetCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new TagResourceCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -65,6 +67,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
65
67
|
* <p>An error occurred during validation.</p>
|
|
66
68
|
* <p>HTTP status code: 422</p>
|
|
67
69
|
*
|
|
70
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
68
72
|
*
|
|
69
73
|
*/
|
|
70
74
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -62,6 +64,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
62
64
|
* <p>An error occurred during validation.</p>
|
|
63
65
|
* <p>HTTP status code: 422</p>
|
|
64
66
|
*
|
|
67
|
+
* @throws {@link MarketplaceCatalogServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
65
69
|
*
|
|
66
70
|
*/
|
|
67
71
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MarketplaceCatalogClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-marketplace-catalog",
|
|
3
3
|
"description": "AWS SDK for JavaScript Marketplace Catalog 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",
|