@aws-sdk/client-glacier 3.958.0 → 3.964.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-cjs/index.js
CHANGED
|
@@ -1509,7 +1509,7 @@ const paginateListVaults = core.createPaginator(GlacierClient, ListVaultsCommand
|
|
|
1509
1509
|
const checkState$1 = async (client, input) => {
|
|
1510
1510
|
let reason;
|
|
1511
1511
|
try {
|
|
1512
|
-
|
|
1512
|
+
let result = await client.send(new DescribeVaultCommand(input));
|
|
1513
1513
|
reason = result;
|
|
1514
1514
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
1515
1515
|
}
|
|
@@ -1534,7 +1534,7 @@ const waitUntilVaultExists = async (params, input) => {
|
|
|
1534
1534
|
const checkState = async (client, input) => {
|
|
1535
1535
|
let reason;
|
|
1536
1536
|
try {
|
|
1537
|
-
|
|
1537
|
+
let result = await client.send(new DescribeVaultCommand(input));
|
|
1538
1538
|
reason = result;
|
|
1539
1539
|
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
1540
1540
|
}
|
|
@@ -3,7 +3,7 @@ import { DescribeVaultCommand } from "../commands/DescribeVaultCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeVaultCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
return { state: WaiterState.SUCCESS, reason };
|
|
9
9
|
}
|
|
@@ -3,7 +3,7 @@ import { DescribeVaultCommand } from "../commands/DescribeVaultCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new DescribeVaultCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
return { state: WaiterState.RETRY, reason };
|
|
9
9
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glacier",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glacier Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.964.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-glacier",
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
26
|
"@aws-sdk/body-checksum-browser": "3.957.0",
|
|
27
27
|
"@aws-sdk/body-checksum-node": "3.957.0",
|
|
28
|
-
"@aws-sdk/core": "3.
|
|
29
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
28
|
+
"@aws-sdk/core": "3.964.0",
|
|
29
|
+
"@aws-sdk/credential-provider-node": "3.964.0",
|
|
30
30
|
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
31
31
|
"@aws-sdk/middleware-logger": "3.957.0",
|
|
32
32
|
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|
|
33
33
|
"@aws-sdk/middleware-sdk-glacier": "3.957.0",
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.964.0",
|
|
35
35
|
"@aws-sdk/region-config-resolver": "3.957.0",
|
|
36
36
|
"@aws-sdk/types": "3.957.0",
|
|
37
37
|
"@aws-sdk/util-endpoints": "3.957.0",
|
|
38
38
|
"@aws-sdk/util-user-agent-browser": "3.957.0",
|
|
39
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
39
|
+
"@aws-sdk/util-user-agent-node": "3.964.0",
|
|
40
40
|
"@smithy/config-resolver": "^4.4.5",
|
|
41
41
|
"@smithy/core": "^3.20.0",
|
|
42
42
|
"@smithy/fetch-http-handler": "^5.3.8",
|