@aws-sdk/client-resource-groups 3.890.0 → 3.893.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/CancelTagSyncTaskCommand.d.ts +2 -0
- package/dist-types/commands/CreateGroupCommand.d.ts +2 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +2 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +2 -0
- package/dist-types/commands/GetGroupCommand.d.ts +2 -0
- package/dist-types/commands/GetGroupConfigurationCommand.d.ts +2 -0
- package/dist-types/commands/GetGroupQueryCommand.d.ts +2 -0
- package/dist-types/commands/GetTagSyncTaskCommand.d.ts +2 -0
- package/dist-types/commands/GetTagsCommand.d.ts +2 -0
- package/dist-types/commands/GroupResourcesCommand.d.ts +2 -0
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +2 -0
- package/dist-types/commands/ListGroupingStatusesCommand.d.ts +2 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagSyncTasksCommand.d.ts +2 -0
- package/dist-types/commands/PutGroupConfigurationCommand.d.ts +2 -0
- package/dist-types/commands/SearchResourcesCommand.d.ts +2 -0
- package/dist-types/commands/StartTagSyncTaskCommand.d.ts +2 -0
- package/dist-types/commands/TagCommand.d.ts +2 -0
- package/dist-types/commands/UngroupResourcesCommand.d.ts +2 -0
- package/dist-types/commands/UntagCommand.d.ts +2 -0
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +2 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +2 -0
- package/dist-types/commands/UpdateGroupQueryCommand.d.ts +2 -0
- package/package.json +19 -19
|
@@ -48,6 +48,8 @@ declare const CancelTagSyncTaskCommand_base: {
|
|
|
48
48
|
* ```javascript
|
|
49
49
|
* import { ResourceGroupsClient, CancelTagSyncTaskCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
50
50
|
* // const { ResourceGroupsClient, CancelTagSyncTaskCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
51
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
52
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
51
53
|
* const client = new ResourceGroupsClient(config);
|
|
52
54
|
* const input = { // CancelTagSyncTaskInput
|
|
53
55
|
* TaskArn: "STRING_VALUE", // required
|
|
@@ -48,6 +48,8 @@ declare const CreateGroupCommand_base: {
|
|
|
48
48
|
* ```javascript
|
|
49
49
|
* import { ResourceGroupsClient, CreateGroupCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
50
50
|
* // const { ResourceGroupsClient, CreateGroupCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
51
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
52
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
51
53
|
* const client = new ResourceGroupsClient(config);
|
|
52
54
|
* const input = { // CreateGroupInput
|
|
53
55
|
* Name: "STRING_VALUE", // required
|
|
@@ -45,6 +45,8 @@ declare const DeleteGroupCommand_base: {
|
|
|
45
45
|
* ```javascript
|
|
46
46
|
* import { ResourceGroupsClient, DeleteGroupCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
47
47
|
* // const { ResourceGroupsClient, DeleteGroupCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
48
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
49
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
48
50
|
* const client = new ResourceGroupsClient(config);
|
|
49
51
|
* const input = { // DeleteGroupInput
|
|
50
52
|
* GroupName: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const GetAccountSettingsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ResourceGroupsClient, GetAccountSettingsCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
35
35
|
* // const { ResourceGroupsClient, GetAccountSettingsCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
36
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
37
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
36
38
|
* const client = new ResourceGroupsClient(config);
|
|
37
39
|
* const input = {};
|
|
38
40
|
* const command = new GetAccountSettingsCommand(input);
|
|
@@ -44,6 +44,8 @@ declare const GetGroupCommand_base: {
|
|
|
44
44
|
* ```javascript
|
|
45
45
|
* import { ResourceGroupsClient, GetGroupCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
46
46
|
* // const { ResourceGroupsClient, GetGroupCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
47
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
48
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
47
49
|
* const client = new ResourceGroupsClient(config);
|
|
48
50
|
* const input = { // GetGroupInput
|
|
49
51
|
* GroupName: "STRING_VALUE",
|
|
@@ -45,6 +45,8 @@ declare const GetGroupConfigurationCommand_base: {
|
|
|
45
45
|
* ```javascript
|
|
46
46
|
* import { ResourceGroupsClient, GetGroupConfigurationCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
47
47
|
* // const { ResourceGroupsClient, GetGroupConfigurationCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
48
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
49
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
48
50
|
* const client = new ResourceGroupsClient(config);
|
|
49
51
|
* const input = { // GetGroupConfigurationInput
|
|
50
52
|
* Group: "STRING_VALUE",
|
|
@@ -46,6 +46,8 @@ declare const GetGroupQueryCommand_base: {
|
|
|
46
46
|
* ```javascript
|
|
47
47
|
* import { ResourceGroupsClient, GetGroupQueryCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
48
48
|
* // const { ResourceGroupsClient, GetGroupQueryCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
49
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
50
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
49
51
|
* const client = new ResourceGroupsClient(config);
|
|
50
52
|
* const input = { // GetGroupQueryInput
|
|
51
53
|
* GroupName: "STRING_VALUE",
|
|
@@ -43,6 +43,8 @@ declare const GetTagSyncTaskCommand_base: {
|
|
|
43
43
|
* ```javascript
|
|
44
44
|
* import { ResourceGroupsClient, GetTagSyncTaskCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
45
45
|
* // const { ResourceGroupsClient, GetTagSyncTaskCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
46
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
47
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
46
48
|
* const client = new ResourceGroupsClient(config);
|
|
47
49
|
* const input = { // GetTagSyncTaskInput
|
|
48
50
|
* TaskArn: "STRING_VALUE", // required
|
|
@@ -45,6 +45,8 @@ declare const GetTagsCommand_base: {
|
|
|
45
45
|
* ```javascript
|
|
46
46
|
* import { ResourceGroupsClient, GetTagsCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
47
47
|
* // const { ResourceGroupsClient, GetTagsCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
48
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
49
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
48
50
|
* const client = new ResourceGroupsClient(config);
|
|
49
51
|
* const input = { // GetTagsInput
|
|
50
52
|
* Arn: "STRING_VALUE", // required
|
|
@@ -66,6 +66,8 @@ declare const GroupResourcesCommand_base: {
|
|
|
66
66
|
* ```javascript
|
|
67
67
|
* import { ResourceGroupsClient, GroupResourcesCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
68
68
|
* // const { ResourceGroupsClient, GroupResourcesCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
69
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
70
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
69
71
|
* const client = new ResourceGroupsClient(config);
|
|
70
72
|
* const input = { // GroupResourcesInput
|
|
71
73
|
* Group: "STRING_VALUE", // required
|
|
@@ -60,6 +60,8 @@ declare const ListGroupResourcesCommand_base: {
|
|
|
60
60
|
* ```javascript
|
|
61
61
|
* import { ResourceGroupsClient, ListGroupResourcesCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
62
62
|
* // const { ResourceGroupsClient, ListGroupResourcesCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
63
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
64
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
63
65
|
* const client = new ResourceGroupsClient(config);
|
|
64
66
|
* const input = { // ListGroupResourcesInput
|
|
65
67
|
* GroupName: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const ListGroupingStatusesCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { ResourceGroupsClient, ListGroupingStatusesCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
36
36
|
* // const { ResourceGroupsClient, ListGroupingStatusesCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
37
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
38
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
37
39
|
* const client = new ResourceGroupsClient(config);
|
|
38
40
|
* const input = { // ListGroupingStatusesInput
|
|
39
41
|
* Group: "STRING_VALUE", // required
|
|
@@ -44,6 +44,8 @@ declare const ListGroupsCommand_base: {
|
|
|
44
44
|
* ```javascript
|
|
45
45
|
* import { ResourceGroupsClient, ListGroupsCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
46
46
|
* // const { ResourceGroupsClient, ListGroupsCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
47
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
48
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
47
49
|
* const client = new ResourceGroupsClient(config);
|
|
48
50
|
* const input = { // ListGroupsInput
|
|
49
51
|
* Filters: [ // GroupFilterList
|
|
@@ -44,6 +44,8 @@ declare const ListTagSyncTasksCommand_base: {
|
|
|
44
44
|
* ```javascript
|
|
45
45
|
* import { ResourceGroupsClient, ListTagSyncTasksCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
46
46
|
* // const { ResourceGroupsClient, ListTagSyncTasksCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
47
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
48
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
47
49
|
* const client = new ResourceGroupsClient(config);
|
|
48
50
|
* const input = { // ListTagSyncTasksInput
|
|
49
51
|
* Filters: [ // ListTagSyncTasksFilterList
|
|
@@ -46,6 +46,8 @@ declare const PutGroupConfigurationCommand_base: {
|
|
|
46
46
|
* ```javascript
|
|
47
47
|
* import { ResourceGroupsClient, PutGroupConfigurationCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
48
48
|
* // const { ResourceGroupsClient, PutGroupConfigurationCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
49
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
50
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
49
51
|
* const client = new ResourceGroupsClient(config);
|
|
50
52
|
* const input = { // PutGroupConfigurationInput
|
|
51
53
|
* Group: "STRING_VALUE",
|
|
@@ -61,6 +61,8 @@ declare const SearchResourcesCommand_base: {
|
|
|
61
61
|
* ```javascript
|
|
62
62
|
* import { ResourceGroupsClient, SearchResourcesCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
63
63
|
* // const { ResourceGroupsClient, SearchResourcesCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
64
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
65
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
64
66
|
* const client = new ResourceGroupsClient(config);
|
|
65
67
|
* const input = { // SearchResourcesInput
|
|
66
68
|
* ResourceQuery: { // ResourceQuery
|
|
@@ -57,6 +57,8 @@ declare const StartTagSyncTaskCommand_base: {
|
|
|
57
57
|
* ```javascript
|
|
58
58
|
* import { ResourceGroupsClient, StartTagSyncTaskCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
59
59
|
* // const { ResourceGroupsClient, StartTagSyncTaskCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
60
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
61
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
60
62
|
* const client = new ResourceGroupsClient(config);
|
|
61
63
|
* const input = { // StartTagSyncTaskInput
|
|
62
64
|
* Group: "STRING_VALUE", // required
|
|
@@ -51,6 +51,8 @@ declare const TagCommand_base: {
|
|
|
51
51
|
* ```javascript
|
|
52
52
|
* import { ResourceGroupsClient, TagCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
53
53
|
* // const { ResourceGroupsClient, TagCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
54
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
55
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
54
56
|
* const client = new ResourceGroupsClient(config);
|
|
55
57
|
* const input = { // TagInput
|
|
56
58
|
* Arn: "STRING_VALUE", // required
|
|
@@ -47,6 +47,8 @@ declare const UngroupResourcesCommand_base: {
|
|
|
47
47
|
* ```javascript
|
|
48
48
|
* import { ResourceGroupsClient, UngroupResourcesCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
49
49
|
* // const { ResourceGroupsClient, UngroupResourcesCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
50
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
51
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
50
52
|
* const client = new ResourceGroupsClient(config);
|
|
51
53
|
* const input = { // UngroupResourcesInput
|
|
52
54
|
* Group: "STRING_VALUE", // required
|
|
@@ -44,6 +44,8 @@ declare const UntagCommand_base: {
|
|
|
44
44
|
* ```javascript
|
|
45
45
|
* import { ResourceGroupsClient, UntagCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
46
46
|
* // const { ResourceGroupsClient, UntagCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
47
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
48
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
47
49
|
* const client = new ResourceGroupsClient(config);
|
|
48
50
|
* const input = { // UntagInput
|
|
49
51
|
* Arn: "STRING_VALUE", // required
|
|
@@ -37,6 +37,8 @@ declare const UpdateAccountSettingsCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { ResourceGroupsClient, UpdateAccountSettingsCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
39
39
|
* // const { ResourceGroupsClient, UpdateAccountSettingsCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
40
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
41
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
40
42
|
* const client = new ResourceGroupsClient(config);
|
|
41
43
|
* const input = { // UpdateAccountSettingsInput
|
|
42
44
|
* GroupLifecycleEventsDesiredStatus: "ACTIVE" || "INACTIVE",
|
|
@@ -45,6 +45,8 @@ declare const UpdateGroupCommand_base: {
|
|
|
45
45
|
* ```javascript
|
|
46
46
|
* import { ResourceGroupsClient, UpdateGroupCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
47
47
|
* // const { ResourceGroupsClient, UpdateGroupCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
48
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
49
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
48
50
|
* const client = new ResourceGroupsClient(config);
|
|
49
51
|
* const input = { // UpdateGroupInput
|
|
50
52
|
* GroupName: "STRING_VALUE",
|
|
@@ -45,6 +45,8 @@ declare const UpdateGroupQueryCommand_base: {
|
|
|
45
45
|
* ```javascript
|
|
46
46
|
* import { ResourceGroupsClient, UpdateGroupQueryCommand } from "@aws-sdk/client-resource-groups"; // ES Modules import
|
|
47
47
|
* // const { ResourceGroupsClient, UpdateGroupQueryCommand } = require("@aws-sdk/client-resource-groups"); // CommonJS import
|
|
48
|
+
* // import type { ResourceGroupsClientConfig } from "@aws-sdk/client-resource-groups";
|
|
49
|
+
* const config = {}; // type is ResourceGroupsClientConfig
|
|
48
50
|
* const client = new ResourceGroupsClient(config);
|
|
49
51
|
* const input = { // UpdateGroupQueryInput
|
|
50
52
|
* GroupName: "STRING_VALUE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resource-groups",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resource Groups Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.893.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-resource-groups",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.893.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
30
|
+
"@aws-sdk/types": "3.893.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.2",
|
|
35
|
-
"@smithy/core": "^3.11.
|
|
35
|
+
"@smithy/core": "^3.11.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
37
37
|
"@smithy/hash-node": "^4.1.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.2.2",
|
|
45
45
|
"@smithy/node-http-handler": "^4.2.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.2.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.6.
|
|
47
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
48
48
|
"@smithy/types": "^4.5.0",
|
|
49
49
|
"@smithy/url-parser": "^4.1.1",
|
|
50
50
|
"@smithy/util-base64": "^4.1.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
55
55
|
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
|
-
"@smithy/util-retry": "^4.1.
|
|
57
|
+
"@smithy/util-retry": "^4.1.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.1.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|