Initial
This commit is contained in:
4
resources/app/node_modules/@aws-sdk/client-s3/dist-es/waiters/index.js
generated
vendored
Normal file
4
resources/app/node_modules/@aws-sdk/client-s3/dist-es/waiters/index.js
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
export * from "./waitForBucketExists";
|
||||
export * from "./waitForBucketNotExists";
|
||||
export * from "./waitForObjectExists";
|
||||
export * from "./waitForObjectNotExists";
|
||||
26
resources/app/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js
generated
vendored
Normal file
26
resources/app/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
||||
import { HeadBucketCommand } from "../commands/HeadBucketCommand";
|
||||
const checkState = async (client, input) => {
|
||||
let reason;
|
||||
try {
|
||||
const result = await client.send(new HeadBucketCommand(input));
|
||||
reason = result;
|
||||
return { state: WaiterState.SUCCESS, reason };
|
||||
}
|
||||
catch (exception) {
|
||||
reason = exception;
|
||||
if (exception.name && exception.name == "NotFound") {
|
||||
return { state: WaiterState.RETRY, reason };
|
||||
}
|
||||
}
|
||||
return { state: WaiterState.RETRY, reason };
|
||||
};
|
||||
export const waitForBucketExists = async (params, input) => {
|
||||
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
||||
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
||||
};
|
||||
export const waitUntilBucketExists = async (params, input) => {
|
||||
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
||||
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
||||
return checkExceptions(result);
|
||||
};
|
||||
25
resources/app/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js
generated
vendored
Normal file
25
resources/app/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
||||
import { HeadBucketCommand } from "../commands/HeadBucketCommand";
|
||||
const checkState = async (client, input) => {
|
||||
let reason;
|
||||
try {
|
||||
const result = await client.send(new HeadBucketCommand(input));
|
||||
reason = result;
|
||||
}
|
||||
catch (exception) {
|
||||
reason = exception;
|
||||
if (exception.name && exception.name == "NotFound") {
|
||||
return { state: WaiterState.SUCCESS, reason };
|
||||
}
|
||||
}
|
||||
return { state: WaiterState.RETRY, reason };
|
||||
};
|
||||
export const waitForBucketNotExists = async (params, input) => {
|
||||
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
||||
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
||||
};
|
||||
export const waitUntilBucketNotExists = async (params, input) => {
|
||||
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
||||
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
||||
return checkExceptions(result);
|
||||
};
|
||||
26
resources/app/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js
generated
vendored
Normal file
26
resources/app/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
||||
import { HeadObjectCommand } from "../commands/HeadObjectCommand";
|
||||
const checkState = async (client, input) => {
|
||||
let reason;
|
||||
try {
|
||||
const result = await client.send(new HeadObjectCommand(input));
|
||||
reason = result;
|
||||
return { state: WaiterState.SUCCESS, reason };
|
||||
}
|
||||
catch (exception) {
|
||||
reason = exception;
|
||||
if (exception.name && exception.name == "NotFound") {
|
||||
return { state: WaiterState.RETRY, reason };
|
||||
}
|
||||
}
|
||||
return { state: WaiterState.RETRY, reason };
|
||||
};
|
||||
export const waitForObjectExists = async (params, input) => {
|
||||
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
||||
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
||||
};
|
||||
export const waitUntilObjectExists = async (params, input) => {
|
||||
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
||||
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
||||
return checkExceptions(result);
|
||||
};
|
||||
25
resources/app/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js
generated
vendored
Normal file
25
resources/app/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
||||
import { HeadObjectCommand } from "../commands/HeadObjectCommand";
|
||||
const checkState = async (client, input) => {
|
||||
let reason;
|
||||
try {
|
||||
const result = await client.send(new HeadObjectCommand(input));
|
||||
reason = result;
|
||||
}
|
||||
catch (exception) {
|
||||
reason = exception;
|
||||
if (exception.name && exception.name == "NotFound") {
|
||||
return { state: WaiterState.SUCCESS, reason };
|
||||
}
|
||||
}
|
||||
return { state: WaiterState.RETRY, reason };
|
||||
};
|
||||
export const waitForObjectNotExists = async (params, input) => {
|
||||
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
||||
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
||||
};
|
||||
export const waitUntilObjectNotExists = async (params, input) => {
|
||||
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
||||
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
||||
return checkExceptions(result);
|
||||
};
|
||||
Reference in New Issue
Block a user