@aws-sdk/client-ecs 3.1037.0 → 3.1039.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-es/waiters/waitForDaemonActive.js +1 -1
- package/dist-es/waiters/waitForServicesInactive.js +1 -1
- package/dist-es/waiters/waitForServicesStable.js +1 -1
- package/dist-es/waiters/waitForTasksRunning.js +1 -1
- package/dist-es/waiters/waitForTasksStopped.js +1 -1
- package/dist-types/ECS.d.ts +9 -9
- package/dist-types/ts3.4/ECS.d.ts +9 -9
- package/dist-types/ts3.4/waiters/waitForDaemonActive.d.ts +7 -3
- package/dist-types/ts3.4/waiters/waitForDaemonDeploymentStopped.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForDaemonDeploymentSuccessful.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionActive.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForServicesInactive.d.ts +7 -3
- package/dist-types/ts3.4/waiters/waitForServicesStable.d.ts +7 -3
- package/dist-types/ts3.4/waiters/waitForTasksRunning.d.ts +7 -3
- package/dist-types/ts3.4/waiters/waitForTasksStopped.d.ts +7 -3
- package/dist-types/waiters/waitForDaemonActive.d.ts +4 -3
- package/dist-types/waiters/waitForDaemonDeploymentStopped.d.ts +4 -3
- package/dist-types/waiters/waitForDaemonDeploymentSuccessful.d.ts +4 -3
- package/dist-types/waiters/waitForDaemonTaskDefinitionActive.d.ts +4 -3
- package/dist-types/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +4 -3
- package/dist-types/waiters/waitForServicesInactive.d.ts +4 -3
- package/dist-types/waiters/waitForServicesStable.d.ts +4 -3
- package/dist-types/waiters/waitForTasksRunning.d.ts +4 -3
- package/dist-types/waiters/waitForTasksStopped.d.ts +4 -3
- package/package.json +8 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeDaemonCommand } from "../commands/DescribeDaemonCommand";
|
|
2
|
+
import { DescribeDaemonCommand, } from "../commands/DescribeDaemonCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeServicesCommand } from "../commands/DescribeServicesCommand";
|
|
2
|
+
import { DescribeServicesCommand, } from "../commands/DescribeServicesCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeServicesCommand } from "../commands/DescribeServicesCommand";
|
|
2
|
+
import { DescribeServicesCommand, } from "../commands/DescribeServicesCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeTasksCommand } from "../commands/DescribeTasksCommand";
|
|
2
|
+
import { DescribeTasksCommand, } from "../commands/DescribeTasksCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeTasksCommand } from "../commands/DescribeTasksCommand";
|
|
2
|
+
import { DescribeTasksCommand, } from "../commands/DescribeTasksCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
package/dist-types/ECS.d.ts
CHANGED
|
@@ -618,55 +618,55 @@ export interface ECS {
|
|
|
618
618
|
* @param args - command input.
|
|
619
619
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
620
620
|
*/
|
|
621
|
-
waitUntilDaemonActive(args: DescribeDaemonCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult
|
|
621
|
+
waitUntilDaemonActive(args: DescribeDaemonCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult<DescribeDaemonCommandOutput>>;
|
|
622
622
|
/**
|
|
623
623
|
* @see {@link DescribeDaemonDeploymentsCommand}
|
|
624
624
|
* @param args - command input.
|
|
625
625
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
626
626
|
*/
|
|
627
|
-
waitUntilDaemonDeploymentSuccessful(args: DescribeDaemonDeploymentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult
|
|
627
|
+
waitUntilDaemonDeploymentSuccessful(args: DescribeDaemonDeploymentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult<DescribeDaemonDeploymentsCommandOutput>>;
|
|
628
628
|
/**
|
|
629
629
|
* @see {@link DescribeDaemonDeploymentsCommand}
|
|
630
630
|
* @param args - command input.
|
|
631
631
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
632
632
|
*/
|
|
633
|
-
waitUntilDaemonDeploymentStopped(args: DescribeDaemonDeploymentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult
|
|
633
|
+
waitUntilDaemonDeploymentStopped(args: DescribeDaemonDeploymentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult<DescribeDaemonDeploymentsCommandOutput>>;
|
|
634
634
|
/**
|
|
635
635
|
* @see {@link DescribeDaemonTaskDefinitionCommand}
|
|
636
636
|
* @param args - command input.
|
|
637
637
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
638
638
|
*/
|
|
639
|
-
waitUntilDaemonTaskDefinitionActive(args: DescribeDaemonTaskDefinitionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult
|
|
639
|
+
waitUntilDaemonTaskDefinitionActive(args: DescribeDaemonTaskDefinitionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult<DescribeDaemonTaskDefinitionCommandOutput>>;
|
|
640
640
|
/**
|
|
641
641
|
* @see {@link DescribeDaemonTaskDefinitionCommand}
|
|
642
642
|
* @param args - command input.
|
|
643
643
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
644
644
|
*/
|
|
645
|
-
waitUntilDaemonTaskDefinitionDeleted(args: DescribeDaemonTaskDefinitionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult
|
|
645
|
+
waitUntilDaemonTaskDefinitionDeleted(args: DescribeDaemonTaskDefinitionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult<DescribeDaemonTaskDefinitionCommandOutput>>;
|
|
646
646
|
/**
|
|
647
647
|
* @see {@link DescribeServicesCommand}
|
|
648
648
|
* @param args - command input.
|
|
649
649
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
650
650
|
*/
|
|
651
|
-
waitUntilServicesInactive(args: DescribeServicesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult
|
|
651
|
+
waitUntilServicesInactive(args: DescribeServicesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult<DescribeServicesCommandOutput>>;
|
|
652
652
|
/**
|
|
653
653
|
* @see {@link DescribeServicesCommand}
|
|
654
654
|
* @param args - command input.
|
|
655
655
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
656
656
|
*/
|
|
657
|
-
waitUntilServicesStable(args: DescribeServicesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult
|
|
657
|
+
waitUntilServicesStable(args: DescribeServicesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult<DescribeServicesCommandOutput>>;
|
|
658
658
|
/**
|
|
659
659
|
* @see {@link DescribeTasksCommand}
|
|
660
660
|
* @param args - command input.
|
|
661
661
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
662
662
|
*/
|
|
663
|
-
waitUntilTasksRunning(args: DescribeTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult
|
|
663
|
+
waitUntilTasksRunning(args: DescribeTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult<DescribeTasksCommandOutput>>;
|
|
664
664
|
/**
|
|
665
665
|
* @see {@link DescribeTasksCommand}
|
|
666
666
|
* @param args - command input.
|
|
667
667
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
668
668
|
*/
|
|
669
|
-
waitUntilTasksStopped(args: DescribeTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult
|
|
669
|
+
waitUntilTasksStopped(args: DescribeTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ECS>, "client">): Promise<WaiterResult<DescribeTasksCommandOutput>>;
|
|
670
670
|
}
|
|
671
671
|
/**
|
|
672
672
|
* <fullname>Amazon Elastic Container Service</fullname> <p>Amazon Elastic Container Service (Amazon ECS) is a highly scalable, fast, container management service. It makes it easy to run, stop, and manage Docker containers. You can host your cluster on a serverless infrastructure that's managed by Amazon ECS by launching your services or tasks on Fargate. For more control, you can host your tasks on a cluster of Amazon Elastic Compute Cloud (Amazon EC2) or External (on-premises) instances that you manage.</p> <p>Amazon ECS makes it easy to launch and stop container-based applications with simple API calls. This makes it easy to get the state of your cluster from a centralized service, and gives you access to many familiar Amazon EC2 features.</p> <p>You can use Amazon ECS to schedule the placement of containers across your cluster based on your resource needs, isolation policies, and availability requirements. With Amazon ECS, you don't need to operate your own cluster management and configuration management systems. You also don't need to worry about scaling your management infrastructure. </p>
|
|
@@ -1386,7 +1386,7 @@ export interface ECS {
|
|
|
1386
1386
|
WaiterConfiguration<ECS>,
|
|
1387
1387
|
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1388
1388
|
>
|
|
1389
|
-
): Promise<WaiterResult
|
|
1389
|
+
): Promise<WaiterResult<DescribeDaemonCommandOutput>>;
|
|
1390
1390
|
waitUntilDaemonDeploymentSuccessful(
|
|
1391
1391
|
args: DescribeDaemonDeploymentsCommandInput,
|
|
1392
1392
|
waiterConfig:
|
|
@@ -1395,7 +1395,7 @@ export interface ECS {
|
|
|
1395
1395
|
WaiterConfiguration<ECS>,
|
|
1396
1396
|
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1397
1397
|
>
|
|
1398
|
-
): Promise<WaiterResult
|
|
1398
|
+
): Promise<WaiterResult<DescribeDaemonDeploymentsCommandOutput>>;
|
|
1399
1399
|
waitUntilDaemonDeploymentStopped(
|
|
1400
1400
|
args: DescribeDaemonDeploymentsCommandInput,
|
|
1401
1401
|
waiterConfig:
|
|
@@ -1404,7 +1404,7 @@ export interface ECS {
|
|
|
1404
1404
|
WaiterConfiguration<ECS>,
|
|
1405
1405
|
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1406
1406
|
>
|
|
1407
|
-
): Promise<WaiterResult
|
|
1407
|
+
): Promise<WaiterResult<DescribeDaemonDeploymentsCommandOutput>>;
|
|
1408
1408
|
waitUntilDaemonTaskDefinitionActive(
|
|
1409
1409
|
args: DescribeDaemonTaskDefinitionCommandInput,
|
|
1410
1410
|
waiterConfig:
|
|
@@ -1413,7 +1413,7 @@ export interface ECS {
|
|
|
1413
1413
|
WaiterConfiguration<ECS>,
|
|
1414
1414
|
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1415
1415
|
>
|
|
1416
|
-
): Promise<WaiterResult
|
|
1416
|
+
): Promise<WaiterResult<DescribeDaemonTaskDefinitionCommandOutput>>;
|
|
1417
1417
|
waitUntilDaemonTaskDefinitionDeleted(
|
|
1418
1418
|
args: DescribeDaemonTaskDefinitionCommandInput,
|
|
1419
1419
|
waiterConfig:
|
|
@@ -1422,7 +1422,7 @@ export interface ECS {
|
|
|
1422
1422
|
WaiterConfiguration<ECS>,
|
|
1423
1423
|
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1424
1424
|
>
|
|
1425
|
-
): Promise<WaiterResult
|
|
1425
|
+
): Promise<WaiterResult<DescribeDaemonTaskDefinitionCommandOutput>>;
|
|
1426
1426
|
waitUntilServicesInactive(
|
|
1427
1427
|
args: DescribeServicesCommandInput,
|
|
1428
1428
|
waiterConfig:
|
|
@@ -1431,7 +1431,7 @@ export interface ECS {
|
|
|
1431
1431
|
WaiterConfiguration<ECS>,
|
|
1432
1432
|
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1433
1433
|
>
|
|
1434
|
-
): Promise<WaiterResult
|
|
1434
|
+
): Promise<WaiterResult<DescribeServicesCommandOutput>>;
|
|
1435
1435
|
waitUntilServicesStable(
|
|
1436
1436
|
args: DescribeServicesCommandInput,
|
|
1437
1437
|
waiterConfig:
|
|
@@ -1440,7 +1440,7 @@ export interface ECS {
|
|
|
1440
1440
|
WaiterConfiguration<ECS>,
|
|
1441
1441
|
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1442
1442
|
>
|
|
1443
|
-
): Promise<WaiterResult
|
|
1443
|
+
): Promise<WaiterResult<DescribeServicesCommandOutput>>;
|
|
1444
1444
|
waitUntilTasksRunning(
|
|
1445
1445
|
args: DescribeTasksCommandInput,
|
|
1446
1446
|
waiterConfig:
|
|
@@ -1449,7 +1449,7 @@ export interface ECS {
|
|
|
1449
1449
|
WaiterConfiguration<ECS>,
|
|
1450
1450
|
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1451
1451
|
>
|
|
1452
|
-
): Promise<WaiterResult
|
|
1452
|
+
): Promise<WaiterResult<DescribeTasksCommandOutput>>;
|
|
1453
1453
|
waitUntilTasksStopped(
|
|
1454
1454
|
args: DescribeTasksCommandInput,
|
|
1455
1455
|
waiterConfig:
|
|
@@ -1458,6 +1458,6 @@ export interface ECS {
|
|
|
1458
1458
|
WaiterConfiguration<ECS>,
|
|
1459
1459
|
Exclude<keyof WaiterConfiguration<ECS>, "client">
|
|
1460
1460
|
>
|
|
1461
|
-
): Promise<WaiterResult
|
|
1461
|
+
): Promise<WaiterResult<DescribeTasksCommandOutput>>;
|
|
1462
1462
|
}
|
|
1463
1463
|
export declare class ECS extends ECSClient implements ECS {}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeDaemonCommandInput,
|
|
4
|
+
DescribeDaemonCommandOutput,
|
|
5
|
+
} from "../commands/DescribeDaemonCommand";
|
|
3
6
|
import { ECSClient } from "../ECSClient";
|
|
7
|
+
import { ECSServiceException } from "../models/ECSServiceException";
|
|
4
8
|
export declare const waitForDaemonActive: (
|
|
5
9
|
params: WaiterConfiguration<ECSClient>,
|
|
6
10
|
input: DescribeDaemonCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<DescribeDaemonCommandOutput | ECSServiceException>>;
|
|
8
12
|
export declare const waitUntilDaemonActive: (
|
|
9
13
|
params: WaiterConfiguration<ECSClient>,
|
|
10
14
|
input: DescribeDaemonCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<DescribeDaemonCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeDaemonDeploymentsCommandInput,
|
|
4
|
+
DescribeDaemonDeploymentsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeDaemonDeploymentsCommand";
|
|
3
6
|
import { ECSClient } from "../ECSClient";
|
|
7
|
+
import { ECSServiceException } from "../models/ECSServiceException";
|
|
4
8
|
export declare const waitForDaemonDeploymentStopped: (
|
|
5
9
|
params: WaiterConfiguration<ECSClient>,
|
|
6
10
|
input: DescribeDaemonDeploymentsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<DescribeDaemonDeploymentsCommandOutput | ECSServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilDaemonDeploymentStopped: (
|
|
9
15
|
params: WaiterConfiguration<ECSClient>,
|
|
10
16
|
input: DescribeDaemonDeploymentsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<DescribeDaemonDeploymentsCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeDaemonDeploymentsCommandInput,
|
|
4
|
+
DescribeDaemonDeploymentsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeDaemonDeploymentsCommand";
|
|
3
6
|
import { ECSClient } from "../ECSClient";
|
|
7
|
+
import { ECSServiceException } from "../models/ECSServiceException";
|
|
4
8
|
export declare const waitForDaemonDeploymentSuccessful: (
|
|
5
9
|
params: WaiterConfiguration<ECSClient>,
|
|
6
10
|
input: DescribeDaemonDeploymentsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<DescribeDaemonDeploymentsCommandOutput | ECSServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilDaemonDeploymentSuccessful: (
|
|
9
15
|
params: WaiterConfiguration<ECSClient>,
|
|
10
16
|
input: DescribeDaemonDeploymentsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<DescribeDaemonDeploymentsCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeDaemonTaskDefinitionCommandInput,
|
|
4
|
+
DescribeDaemonTaskDefinitionCommandOutput,
|
|
5
|
+
} from "../commands/DescribeDaemonTaskDefinitionCommand";
|
|
3
6
|
import { ECSClient } from "../ECSClient";
|
|
7
|
+
import { ECSServiceException } from "../models/ECSServiceException";
|
|
4
8
|
export declare const waitForDaemonTaskDefinitionActive: (
|
|
5
9
|
params: WaiterConfiguration<ECSClient>,
|
|
6
10
|
input: DescribeDaemonTaskDefinitionCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<DescribeDaemonTaskDefinitionCommandOutput | ECSServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilDaemonTaskDefinitionActive: (
|
|
9
15
|
params: WaiterConfiguration<ECSClient>,
|
|
10
16
|
input: DescribeDaemonTaskDefinitionCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<DescribeDaemonTaskDefinitionCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeDaemonTaskDefinitionCommandInput,
|
|
4
|
+
DescribeDaemonTaskDefinitionCommandOutput,
|
|
5
|
+
} from "../commands/DescribeDaemonTaskDefinitionCommand";
|
|
3
6
|
import { ECSClient } from "../ECSClient";
|
|
7
|
+
import { ECSServiceException } from "../models/ECSServiceException";
|
|
4
8
|
export declare const waitForDaemonTaskDefinitionDeleted: (
|
|
5
9
|
params: WaiterConfiguration<ECSClient>,
|
|
6
10
|
input: DescribeDaemonTaskDefinitionCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<DescribeDaemonTaskDefinitionCommandOutput | ECSServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilDaemonTaskDefinitionDeleted: (
|
|
9
15
|
params: WaiterConfiguration<ECSClient>,
|
|
10
16
|
input: DescribeDaemonTaskDefinitionCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<DescribeDaemonTaskDefinitionCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeServicesCommandInput,
|
|
4
|
+
DescribeServicesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeServicesCommand";
|
|
3
6
|
import { ECSClient } from "../ECSClient";
|
|
7
|
+
import { ECSServiceException } from "../models/ECSServiceException";
|
|
4
8
|
export declare const waitForServicesInactive: (
|
|
5
9
|
params: WaiterConfiguration<ECSClient>,
|
|
6
10
|
input: DescribeServicesCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<DescribeServicesCommandOutput | ECSServiceException>>;
|
|
8
12
|
export declare const waitUntilServicesInactive: (
|
|
9
13
|
params: WaiterConfiguration<ECSClient>,
|
|
10
14
|
input: DescribeServicesCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<DescribeServicesCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeServicesCommandInput,
|
|
4
|
+
DescribeServicesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeServicesCommand";
|
|
3
6
|
import { ECSClient } from "../ECSClient";
|
|
7
|
+
import { ECSServiceException } from "../models/ECSServiceException";
|
|
4
8
|
export declare const waitForServicesStable: (
|
|
5
9
|
params: WaiterConfiguration<ECSClient>,
|
|
6
10
|
input: DescribeServicesCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<DescribeServicesCommandOutput | ECSServiceException>>;
|
|
8
12
|
export declare const waitUntilServicesStable: (
|
|
9
13
|
params: WaiterConfiguration<ECSClient>,
|
|
10
14
|
input: DescribeServicesCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<DescribeServicesCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeTasksCommandInput,
|
|
4
|
+
DescribeTasksCommandOutput,
|
|
5
|
+
} from "../commands/DescribeTasksCommand";
|
|
3
6
|
import { ECSClient } from "../ECSClient";
|
|
7
|
+
import { ECSServiceException } from "../models/ECSServiceException";
|
|
4
8
|
export declare const waitForTasksRunning: (
|
|
5
9
|
params: WaiterConfiguration<ECSClient>,
|
|
6
10
|
input: DescribeTasksCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<DescribeTasksCommandOutput | ECSServiceException>>;
|
|
8
12
|
export declare const waitUntilTasksRunning: (
|
|
9
13
|
params: WaiterConfiguration<ECSClient>,
|
|
10
14
|
input: DescribeTasksCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<DescribeTasksCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeTasksCommandInput,
|
|
4
|
+
DescribeTasksCommandOutput,
|
|
5
|
+
} from "../commands/DescribeTasksCommand";
|
|
3
6
|
import { ECSClient } from "../ECSClient";
|
|
7
|
+
import { ECSServiceException } from "../models/ECSServiceException";
|
|
4
8
|
export declare const waitForTasksStopped: (
|
|
5
9
|
params: WaiterConfiguration<ECSClient>,
|
|
6
10
|
input: DescribeTasksCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<DescribeTasksCommandOutput | ECSServiceException>>;
|
|
8
12
|
export declare const waitUntilTasksStopped: (
|
|
9
13
|
params: WaiterConfiguration<ECSClient>,
|
|
10
14
|
input: DescribeTasksCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<DescribeTasksCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeDaemonCommandInput } from "../commands/DescribeDaemonCommand";
|
|
2
|
+
import { type DescribeDaemonCommandInput, type DescribeDaemonCommandOutput } from "../commands/DescribeDaemonCommand";
|
|
3
3
|
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
import type { ECSServiceException } from "../models/ECSServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilDaemonActive instead. waitForDaemonActive does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForDaemonActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForDaemonActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonCommandInput) => Promise<WaiterResult<DescribeDaemonCommandOutput | ECSServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeDaemonCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilDaemonActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilDaemonActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonCommandInput) => Promise<WaiterResult<DescribeDaemonCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeDaemonDeploymentsCommandInput } from "../commands/DescribeDaemonDeploymentsCommand";
|
|
2
|
+
import { type DescribeDaemonDeploymentsCommandInput, type DescribeDaemonDeploymentsCommandOutput } from "../commands/DescribeDaemonDeploymentsCommand";
|
|
3
3
|
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
import type { ECSServiceException } from "../models/ECSServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilDaemonDeploymentStopped instead. waitForDaemonDeploymentStopped does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForDaemonDeploymentStopped: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForDaemonDeploymentStopped: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult<DescribeDaemonDeploymentsCommandOutput | ECSServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeDaemonDeploymentsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilDaemonDeploymentStopped: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilDaemonDeploymentStopped: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult<DescribeDaemonDeploymentsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeDaemonDeploymentsCommandInput } from "../commands/DescribeDaemonDeploymentsCommand";
|
|
2
|
+
import { type DescribeDaemonDeploymentsCommandInput, type DescribeDaemonDeploymentsCommandOutput } from "../commands/DescribeDaemonDeploymentsCommand";
|
|
3
3
|
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
import type { ECSServiceException } from "../models/ECSServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilDaemonDeploymentSuccessful instead. waitForDaemonDeploymentSuccessful does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForDaemonDeploymentSuccessful: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForDaemonDeploymentSuccessful: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult<DescribeDaemonDeploymentsCommandOutput | ECSServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeDaemonDeploymentsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilDaemonDeploymentSuccessful: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilDaemonDeploymentSuccessful: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonDeploymentsCommandInput) => Promise<WaiterResult<DescribeDaemonDeploymentsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeDaemonTaskDefinitionCommandInput } from "../commands/DescribeDaemonTaskDefinitionCommand";
|
|
2
|
+
import { type DescribeDaemonTaskDefinitionCommandInput, type DescribeDaemonTaskDefinitionCommandOutput } from "../commands/DescribeDaemonTaskDefinitionCommand";
|
|
3
3
|
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
import type { ECSServiceException } from "../models/ECSServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilDaemonTaskDefinitionActive instead. waitForDaemonTaskDefinitionActive does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForDaemonTaskDefinitionActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForDaemonTaskDefinitionActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult<DescribeDaemonTaskDefinitionCommandOutput | ECSServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeDaemonTaskDefinitionCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilDaemonTaskDefinitionActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilDaemonTaskDefinitionActive: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult<DescribeDaemonTaskDefinitionCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeDaemonTaskDefinitionCommandInput } from "../commands/DescribeDaemonTaskDefinitionCommand";
|
|
2
|
+
import { type DescribeDaemonTaskDefinitionCommandInput, type DescribeDaemonTaskDefinitionCommandOutput } from "../commands/DescribeDaemonTaskDefinitionCommand";
|
|
3
3
|
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
import type { ECSServiceException } from "../models/ECSServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilDaemonTaskDefinitionDeleted instead. waitForDaemonTaskDefinitionDeleted does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForDaemonTaskDefinitionDeleted: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForDaemonTaskDefinitionDeleted: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult<DescribeDaemonTaskDefinitionCommandOutput | ECSServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeDaemonTaskDefinitionCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilDaemonTaskDefinitionDeleted: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilDaemonTaskDefinitionDeleted: (params: WaiterConfiguration<ECSClient>, input: DescribeDaemonTaskDefinitionCommandInput) => Promise<WaiterResult<DescribeDaemonTaskDefinitionCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeServicesCommandInput } from "../commands/DescribeServicesCommand";
|
|
2
|
+
import { type DescribeServicesCommandInput, type DescribeServicesCommandOutput } from "../commands/DescribeServicesCommand";
|
|
3
3
|
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
import type { ECSServiceException } from "../models/ECSServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilServicesInactive instead. waitForServicesInactive does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForServicesInactive: (params: WaiterConfiguration<ECSClient>, input: DescribeServicesCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForServicesInactive: (params: WaiterConfiguration<ECSClient>, input: DescribeServicesCommandInput) => Promise<WaiterResult<DescribeServicesCommandOutput | ECSServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeServicesCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilServicesInactive: (params: WaiterConfiguration<ECSClient>, input: DescribeServicesCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilServicesInactive: (params: WaiterConfiguration<ECSClient>, input: DescribeServicesCommandInput) => Promise<WaiterResult<DescribeServicesCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeServicesCommandInput } from "../commands/DescribeServicesCommand";
|
|
2
|
+
import { type DescribeServicesCommandInput, type DescribeServicesCommandOutput } from "../commands/DescribeServicesCommand";
|
|
3
3
|
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
import type { ECSServiceException } from "../models/ECSServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilServicesStable instead. waitForServicesStable does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForServicesStable: (params: WaiterConfiguration<ECSClient>, input: DescribeServicesCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForServicesStable: (params: WaiterConfiguration<ECSClient>, input: DescribeServicesCommandInput) => Promise<WaiterResult<DescribeServicesCommandOutput | ECSServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeServicesCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilServicesStable: (params: WaiterConfiguration<ECSClient>, input: DescribeServicesCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilServicesStable: (params: WaiterConfiguration<ECSClient>, input: DescribeServicesCommandInput) => Promise<WaiterResult<DescribeServicesCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeTasksCommandInput } from "../commands/DescribeTasksCommand";
|
|
2
|
+
import { type DescribeTasksCommandInput, type DescribeTasksCommandOutput } from "../commands/DescribeTasksCommand";
|
|
3
3
|
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
import type { ECSServiceException } from "../models/ECSServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilTasksRunning instead. waitForTasksRunning does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForTasksRunning: (params: WaiterConfiguration<ECSClient>, input: DescribeTasksCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForTasksRunning: (params: WaiterConfiguration<ECSClient>, input: DescribeTasksCommandInput) => Promise<WaiterResult<DescribeTasksCommandOutput | ECSServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeTasksCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilTasksRunning: (params: WaiterConfiguration<ECSClient>, input: DescribeTasksCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilTasksRunning: (params: WaiterConfiguration<ECSClient>, input: DescribeTasksCommandInput) => Promise<WaiterResult<DescribeTasksCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeTasksCommandInput } from "../commands/DescribeTasksCommand";
|
|
2
|
+
import { type DescribeTasksCommandInput, type DescribeTasksCommandOutput } from "../commands/DescribeTasksCommand";
|
|
3
3
|
import type { ECSClient } from "../ECSClient";
|
|
4
|
+
import type { ECSServiceException } from "../models/ECSServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilTasksStopped instead. waitForTasksStopped does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForTasksStopped: (params: WaiterConfiguration<ECSClient>, input: DescribeTasksCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForTasksStopped: (params: WaiterConfiguration<ECSClient>, input: DescribeTasksCommandInput) => Promise<WaiterResult<DescribeTasksCommandOutput | ECSServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeTasksCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilTasksStopped: (params: WaiterConfiguration<ECSClient>, input: DescribeTasksCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilTasksStopped: (params: WaiterConfiguration<ECSClient>, input: DescribeTasksCommandInput) => Promise<WaiterResult<DescribeTasksCommandOutput>>;
|
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.1039.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ecs",
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.974.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.974.7",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.38",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
29
29
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.37",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
33
33
|
"@aws-sdk/types": "^3.973.8",
|
|
34
34
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.23",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.17",
|
|
38
38
|
"@smithy/core": "^3.23.17",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
43
43
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
44
|
-
"@smithy/middleware-retry": "^4.5.
|
|
44
|
+
"@smithy/middleware-retry": "^4.5.7",
|
|
45
45
|
"@smithy/middleware-serde": "^4.2.20",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.14",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
58
58
|
"@smithy/util-endpoints": "^3.4.2",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.14",
|
|
60
|
-
"@smithy/util-retry": "^4.3.
|
|
60
|
+
"@smithy/util-retry": "^4.3.6",
|
|
61
61
|
"@smithy/util-utf8": "^4.2.2",
|
|
62
|
-
"@smithy/util-waiter": "^4.
|
|
62
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
63
63
|
"tslib": "^2.6.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|