@aws-sdk/client-ecs 3.185.0 → 3.188.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/CHANGELOG.md +16 -0
- package/dist-es/ECS.js +210 -217
- package/dist-es/ECSClient.js +22 -28
- package/dist-es/commands/CreateCapacityProviderCommand.js +21 -28
- package/dist-es/commands/CreateClusterCommand.js +21 -28
- package/dist-es/commands/CreateServiceCommand.js +21 -28
- package/dist-es/commands/CreateTaskSetCommand.js +21 -28
- package/dist-es/commands/DeleteAccountSettingCommand.js +21 -28
- package/dist-es/commands/DeleteAttributesCommand.js +21 -28
- package/dist-es/commands/DeleteCapacityProviderCommand.js +21 -28
- package/dist-es/commands/DeleteClusterCommand.js +21 -28
- package/dist-es/commands/DeleteServiceCommand.js +21 -28
- package/dist-es/commands/DeleteTaskSetCommand.js +21 -28
- package/dist-es/commands/DeregisterContainerInstanceCommand.js +21 -28
- package/dist-es/commands/DeregisterTaskDefinitionCommand.js +21 -28
- package/dist-es/commands/DescribeCapacityProvidersCommand.js +21 -28
- package/dist-es/commands/DescribeClustersCommand.js +21 -28
- package/dist-es/commands/DescribeContainerInstancesCommand.js +21 -28
- package/dist-es/commands/DescribeServicesCommand.js +21 -28
- package/dist-es/commands/DescribeTaskDefinitionCommand.js +21 -28
- package/dist-es/commands/DescribeTaskSetsCommand.js +21 -28
- package/dist-es/commands/DescribeTasksCommand.js +21 -28
- package/dist-es/commands/DiscoverPollEndpointCommand.js +21 -28
- package/dist-es/commands/ExecuteCommandCommand.js +21 -28
- package/dist-es/commands/ListAccountSettingsCommand.js +21 -28
- package/dist-es/commands/ListAttributesCommand.js +21 -28
- package/dist-es/commands/ListClustersCommand.js +21 -28
- package/dist-es/commands/ListContainerInstancesCommand.js +21 -28
- package/dist-es/commands/ListServicesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListTaskDefinitionFamiliesCommand.js +21 -28
- package/dist-es/commands/ListTaskDefinitionsCommand.js +21 -28
- package/dist-es/commands/ListTasksCommand.js +21 -28
- package/dist-es/commands/PutAccountSettingCommand.js +21 -28
- package/dist-es/commands/PutAccountSettingDefaultCommand.js +21 -28
- package/dist-es/commands/PutAttributesCommand.js +21 -28
- package/dist-es/commands/PutClusterCapacityProvidersCommand.js +21 -28
- package/dist-es/commands/RegisterContainerInstanceCommand.js +21 -28
- package/dist-es/commands/RegisterTaskDefinitionCommand.js +21 -28
- package/dist-es/commands/RunTaskCommand.js +21 -28
- package/dist-es/commands/StartTaskCommand.js +21 -28
- package/dist-es/commands/StopTaskCommand.js +21 -28
- package/dist-es/commands/SubmitAttachmentStateChangesCommand.js +21 -28
- package/dist-es/commands/SubmitContainerStateChangeCommand.js +21 -28
- package/dist-es/commands/SubmitTaskStateChangeCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateCapacityProviderCommand.js +21 -28
- package/dist-es/commands/UpdateClusterCommand.js +21 -28
- package/dist-es/commands/UpdateClusterSettingsCommand.js +21 -28
- package/dist-es/commands/UpdateContainerAgentCommand.js +21 -28
- package/dist-es/commands/UpdateContainerInstancesStateCommand.js +21 -28
- package/dist-es/commands/UpdateServiceCommand.js +21 -28
- package/dist-es/commands/UpdateServicePrimaryTaskSetCommand.js +21 -28
- package/dist-es/commands/UpdateTaskSetCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ECSServiceException.js +5 -10
- package/dist-es/models/models_0.js +818 -449
- package/dist-es/pagination/ListAccountSettingsPaginator.js +25 -68
- package/dist-es/pagination/ListAttributesPaginator.js +25 -68
- package/dist-es/pagination/ListClustersPaginator.js +25 -68
- package/dist-es/pagination/ListContainerInstancesPaginator.js +25 -68
- package/dist-es/pagination/ListServicesPaginator.js +25 -68
- package/dist-es/pagination/ListTaskDefinitionFamiliesPaginator.js +25 -68
- package/dist-es/pagination/ListTaskDefinitionsPaginator.js +25 -68
- package/dist-es/pagination/ListTasksPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +4630 -5279
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForServicesInactive.js +47 -88
- package/dist-es/waiters/waitForServicesStable.js +72 -123
- package/dist-es/waiters/waitForTasksRunning.js +63 -114
- package/dist-es/waiters/waitForTasksStopped.js +36 -67
- package/dist-types/models/models_0.d.ts +13 -8
- package/package.json +34 -34
|
@@ -1,120 +1,69 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator, __read, __spreadArray, __values } from "tslib";
|
|
2
1
|
import { checkExceptions, createWaiter, WaiterState } from "@aws-sdk/util-waiter";
|
|
3
2
|
import { DescribeTasksCommand } from "../commands/DescribeTasksCommand";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
});
|
|
21
|
-
return projection_3;
|
|
22
|
-
};
|
|
23
|
-
try {
|
|
24
|
-
for (_a = __values(returnComparator()), _b = _a.next(); !_b.done; _b = _a.next()) {
|
|
25
|
-
anyStringEq_4 = _b.value;
|
|
26
|
-
if (anyStringEq_4 == "STOPPED") {
|
|
27
|
-
return [2, { state: WaiterState.FAILURE, reason: reason }];
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
32
|
-
finally {
|
|
33
|
-
try {
|
|
34
|
-
if (_b && !_b.done && (_g = _a.return)) _g.call(_a);
|
|
35
|
-
}
|
|
36
|
-
finally { if (e_1) throw e_1.error; }
|
|
37
|
-
}
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
const result = await client.send(new DescribeTasksCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
const flat_1 = [].concat(...result.tasks);
|
|
11
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
12
|
+
return element_2.lastStatus;
|
|
13
|
+
});
|
|
14
|
+
return projection_3;
|
|
15
|
+
};
|
|
16
|
+
for (const anyStringEq_4 of returnComparator()) {
|
|
17
|
+
if (anyStringEq_4 == "STOPPED") {
|
|
18
|
+
return { state: WaiterState.FAILURE, reason };
|
|
38
19
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
57
|
-
finally {
|
|
58
|
-
try {
|
|
59
|
-
if (_d && !_d.done && (_h = _c.return)) _h.call(_c);
|
|
60
|
-
}
|
|
61
|
-
finally { if (e_2) throw e_2.error; }
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
catch (e) { }
|
|
65
|
-
try {
|
|
66
|
-
returnComparator = function () {
|
|
67
|
-
var flat_1 = [].concat.apply([], __spreadArray([], __read(result_1.tasks), false));
|
|
68
|
-
var projection_3 = flat_1.map(function (element_2) {
|
|
69
|
-
return element_2.lastStatus;
|
|
70
|
-
});
|
|
71
|
-
return projection_3;
|
|
72
|
-
};
|
|
73
|
-
allStringEq_5 = returnComparator().length > 0;
|
|
74
|
-
try {
|
|
75
|
-
for (_e = __values(returnComparator()), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
76
|
-
element_4 = _f.value;
|
|
77
|
-
allStringEq_5 = allStringEq_5 && element_4 == "RUNNING";
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
81
|
-
finally {
|
|
82
|
-
try {
|
|
83
|
-
if (_f && !_f.done && (_j = _e.return)) _j.call(_e);
|
|
84
|
-
}
|
|
85
|
-
finally { if (e_3) throw e_3.error; }
|
|
86
|
-
}
|
|
87
|
-
if (allStringEq_5) {
|
|
88
|
-
return [2, { state: WaiterState.SUCCESS, reason: reason }];
|
|
89
|
-
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
catch (e) { }
|
|
23
|
+
try {
|
|
24
|
+
const returnComparator = () => {
|
|
25
|
+
const flat_1 = [].concat(...result.failures);
|
|
26
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
27
|
+
return element_2.reason;
|
|
28
|
+
});
|
|
29
|
+
return projection_3;
|
|
30
|
+
};
|
|
31
|
+
for (const anyStringEq_4 of returnComparator()) {
|
|
32
|
+
if (anyStringEq_4 == "MISSING") {
|
|
33
|
+
return { state: WaiterState.FAILURE, reason };
|
|
90
34
|
}
|
|
91
|
-
|
|
92
|
-
return [3, 3];
|
|
93
|
-
case 2:
|
|
94
|
-
exception_1 = _k.sent();
|
|
95
|
-
reason = exception_1;
|
|
96
|
-
return [3, 3];
|
|
97
|
-
case 3: return [2, { state: WaiterState.RETRY, reason: reason }];
|
|
35
|
+
}
|
|
98
36
|
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
case 1:
|
|
116
|
-
result = _a.sent();
|
|
117
|
-
return [2, checkExceptions(result)];
|
|
37
|
+
catch (e) { }
|
|
38
|
+
try {
|
|
39
|
+
const returnComparator = () => {
|
|
40
|
+
const flat_1 = [].concat(...result.tasks);
|
|
41
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
42
|
+
return element_2.lastStatus;
|
|
43
|
+
});
|
|
44
|
+
return projection_3;
|
|
45
|
+
};
|
|
46
|
+
let allStringEq_5 = returnComparator().length > 0;
|
|
47
|
+
for (const element_4 of returnComparator()) {
|
|
48
|
+
allStringEq_5 = allStringEq_5 && element_4 == "RUNNING";
|
|
49
|
+
}
|
|
50
|
+
if (allStringEq_5) {
|
|
51
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
52
|
+
}
|
|
118
53
|
}
|
|
119
|
-
|
|
120
|
-
}
|
|
54
|
+
catch (e) { }
|
|
55
|
+
}
|
|
56
|
+
catch (exception) {
|
|
57
|
+
reason = exception;
|
|
58
|
+
}
|
|
59
|
+
return { state: WaiterState.RETRY, reason };
|
|
60
|
+
};
|
|
61
|
+
export const waitForTasksRunning = async (params, input) => {
|
|
62
|
+
const serviceDefaults = { minDelay: 6, maxDelay: 120 };
|
|
63
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
64
|
+
};
|
|
65
|
+
export const waitUntilTasksRunning = async (params, input) => {
|
|
66
|
+
const serviceDefaults = { minDelay: 6, maxDelay: 120 };
|
|
67
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
68
|
+
return checkExceptions(result);
|
|
69
|
+
};
|
|
@@ -1,70 +1,39 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator, __read, __spreadArray, __values } from "tslib";
|
|
2
1
|
import { checkExceptions, createWaiter, WaiterState } from "@aws-sdk/util-waiter";
|
|
3
2
|
import { DescribeTasksCommand } from "../commands/DescribeTasksCommand";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
try {
|
|
25
|
-
for (_a = __values(returnComparator()), _b = _a.next(); !_b.done; _b = _a.next()) {
|
|
26
|
-
element_4 = _b.value;
|
|
27
|
-
allStringEq_5 = allStringEq_5 && element_4 == "STOPPED";
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
31
|
-
finally {
|
|
32
|
-
try {
|
|
33
|
-
if (_b && !_b.done && (_c = _a.return)) _c.call(_a);
|
|
34
|
-
}
|
|
35
|
-
finally { if (e_1) throw e_1.error; }
|
|
36
|
-
}
|
|
37
|
-
if (allStringEq_5) {
|
|
38
|
-
return [2, { state: WaiterState.SUCCESS, reason: reason }];
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
catch (e) { }
|
|
42
|
-
return [3, 3];
|
|
43
|
-
case 2:
|
|
44
|
-
exception_1 = _d.sent();
|
|
45
|
-
reason = exception_1;
|
|
46
|
-
return [3, 3];
|
|
47
|
-
case 3: return [2, { state: WaiterState.RETRY, reason: reason }];
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
const result = await client.send(new DescribeTasksCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
const flat_1 = [].concat(...result.tasks);
|
|
11
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
12
|
+
return element_2.lastStatus;
|
|
13
|
+
});
|
|
14
|
+
return projection_3;
|
|
15
|
+
};
|
|
16
|
+
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
+
for (const element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && element_4 == "STOPPED";
|
|
19
|
+
}
|
|
20
|
+
if (allStringEq_5) {
|
|
21
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
22
|
+
}
|
|
48
23
|
}
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
case 1:
|
|
66
|
-
result = _a.sent();
|
|
67
|
-
return [2, checkExceptions(result)];
|
|
68
|
-
}
|
|
69
|
-
});
|
|
70
|
-
}); };
|
|
24
|
+
catch (e) { }
|
|
25
|
+
}
|
|
26
|
+
catch (exception) {
|
|
27
|
+
reason = exception;
|
|
28
|
+
}
|
|
29
|
+
return { state: WaiterState.RETRY, reason };
|
|
30
|
+
};
|
|
31
|
+
export const waitForTasksStopped = async (params, input) => {
|
|
32
|
+
const serviceDefaults = { minDelay: 6, maxDelay: 120 };
|
|
33
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
34
|
+
};
|
|
35
|
+
export const waitUntilTasksStopped = async (params, input) => {
|
|
36
|
+
const serviceDefaults = { minDelay: 6, maxDelay: 120 };
|
|
37
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
38
|
+
return checkExceptions(result);
|
|
39
|
+
};
|
|
@@ -58,14 +58,21 @@ export interface ManagedScaling {
|
|
|
58
58
|
*/
|
|
59
59
|
targetCapacity?: number;
|
|
60
60
|
/**
|
|
61
|
-
* <p>The minimum number of
|
|
62
|
-
*
|
|
61
|
+
* <p>The minimum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale
|
|
62
|
+
* in process is not affected by this parameter If this parameter is omitted, the default
|
|
63
|
+
* value of <code>1</code> is used.</p>
|
|
64
|
+
* <p>When additional capacity is required, Amazon ECS will scale up the minimum scaling step
|
|
65
|
+
* size even if the actual demand is less than the minimum scaling step size.</p>
|
|
66
|
+
* <p>If you use a capacity provider with an Auto Scaling group configured with more than
|
|
67
|
+
* one Amazon EC2 instance type or Availability Zone, Amazon ECS will scale up by the exact minimum
|
|
68
|
+
* scaling step size value and will ignore both the maximum scaling step size as well as
|
|
69
|
+
* the capacity demand.</p>
|
|
63
70
|
*/
|
|
64
71
|
minimumScalingStepSize?: number;
|
|
65
72
|
/**
|
|
66
|
-
* <p>The maximum number of
|
|
67
|
-
*
|
|
68
|
-
* used.</p>
|
|
73
|
+
* <p>The maximum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale
|
|
74
|
+
* in process is not affected by this parameter. If this parameter is omitted, the default
|
|
75
|
+
* value of <code>10000</code> is used.</p>
|
|
69
76
|
*/
|
|
70
77
|
maximumScalingStepSize?: number;
|
|
71
78
|
/**
|
|
@@ -2003,9 +2010,7 @@ export interface Service {
|
|
|
2003
2010
|
*/
|
|
2004
2011
|
schedulingStrategy?: SchedulingStrategy | string;
|
|
2005
2012
|
/**
|
|
2006
|
-
* <p>The deployment controller type the service is using.
|
|
2007
|
-
* API, this field is omitted if the service uses the <code>ECS</code> deployment
|
|
2008
|
-
* controller type.</p>
|
|
2013
|
+
* <p>The deployment controller type the service is using. </p>
|
|
2009
2014
|
*/
|
|
2010
2015
|
deploymentController?: DeploymentController;
|
|
2011
2016
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ecs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.188.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,42 +19,42 @@
|
|
|
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-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
52
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
53
|
-
"@aws-sdk/util-waiter": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.188.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.188.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.188.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.188.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.188.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.188.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.188.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.188.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.188.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.188.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.188.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.188.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.188.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.188.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.188.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.188.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.188.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.188.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.188.0",
|
|
41
|
+
"@aws-sdk/types": "3.188.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.188.0",
|
|
43
|
+
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
44
|
+
"@aws-sdk/util-base64-node": "3.188.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.188.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.188.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.188.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.188.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.188.0",
|
|
51
|
+
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
52
|
+
"@aws-sdk/util-utf8-node": "3.188.0",
|
|
53
|
+
"@aws-sdk/util-waiter": "3.188.0",
|
|
54
54
|
"tslib": "^2.3.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
57
|
+
"@aws-sdk/service-client-documentation-generator": "3.188.0",
|
|
58
58
|
"@tsconfig/recommended": "1.0.1",
|
|
59
59
|
"@types/node": "^12.7.5",
|
|
60
60
|
"concurrently": "7.0.0",
|