File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-glacier/dist-cjs

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

index.js26.2 KB · 745 lines
'use strict'; var client$1 = require('@aws-sdk/core/client');var middlewareSdkGlacier = require('@aws-sdk/middleware-sdk-glacier');var core = require('@smithy/core');var client = require('@smithy/core/client');var config = require('@smithy/core/config');var endpoints = require('@smithy/core/endpoints');var protocols = require('@smithy/core/protocols');var retry = require('@smithy/core/retry');var schema = require('@smithy/core/schema');var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');var runtimeConfig = require('./runtimeConfig');var schemas_0 = require('./schemas/schemas_0');var errors = require('./models/errors');var GlacierServiceException = require('./models/GlacierServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "glacier",    });};const commonParams = {    UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },    Endpoint: { type: "builtInParams", name: "endpoint" },    Region: { type: "builtInParams", name: "region" },    UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },}; const getHttpAuthExtensionConfiguration = (runtimeConfig) => {    const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;    let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;    let _credentials = runtimeConfig.credentials;    return {        setHttpAuthScheme(httpAuthScheme) {            const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);            if (index === -1) {                _httpAuthSchemes.push(httpAuthScheme);            }            else {                _httpAuthSchemes.splice(index, 1, httpAuthScheme);            }        },        httpAuthSchemes() {            return _httpAuthSchemes;        },        setHttpAuthSchemeProvider(httpAuthSchemeProvider) {            _httpAuthSchemeProvider = httpAuthSchemeProvider;        },        httpAuthSchemeProvider() {            return _httpAuthSchemeProvider;        },        setCredentials(credentials) {            _credentials = credentials;        },        credentials() {            return _credentials;        },    };};const resolveHttpAuthRuntimeConfig = (config) => {    return {        httpAuthSchemes: config.httpAuthSchemes(),        httpAuthSchemeProvider: config.httpAuthSchemeProvider(),        credentials: config.credentials(),    };}; const resolveRuntimeExtensions = (runtimeConfig, extensions) => {    const extensionConfiguration = Object.assign(client$1.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));    extensions.forEach((extension) => extension.configure(extensionConfiguration));    return Object.assign(runtimeConfig, client$1.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));}; class GlacierClient extends client.Client {    config;    constructor(...[configuration]) {        const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});        super(_config_0);        this.initConfig = _config_0;        const _config_1 = resolveClientEndpointParameters(_config_0);        const _config_2 = client$1.resolveUserAgentConfig(_config_1);        const _config_3 = retry.resolveRetryConfig(_config_2);        const _config_4 = config.resolveRegionConfig(_config_3);        const _config_5 = client$1.resolveHostHeaderConfig(_config_4);        const _config_6 = endpoints.resolveEndpointConfig(_config_5);        const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);        const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);        this.config = _config_8;        this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));        this.middlewareStack.use(client$1.getUserAgentPlugin(this.config));        this.middlewareStack.use(retry.getRetryPlugin(this.config));        this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));        this.middlewareStack.use(client$1.getHostHeaderPlugin(this.config));        this.middlewareStack.use(client$1.getLoggerPlugin(this.config));        this.middlewareStack.use(client$1.getRecursionDetectionPlugin(this.config));        this.middlewareStack.use(middlewareSdkGlacier.getGlacierPlugin(this.config));        this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {            httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultGlacierHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AbortMultipartUploadCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "AbortMultipartUpload", {})    .n("GlacierClient", "AbortMultipartUploadCommand")    .sc(schemas_0.AbortMultipartUpload$)    .build() {} class AbortVaultLockCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "AbortVaultLock", {})    .n("GlacierClient", "AbortVaultLockCommand")    .sc(schemas_0.AbortVaultLock$)    .build() {} class AddTagsToVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "AddTagsToVault", {})    .n("GlacierClient", "AddTagsToVaultCommand")    .sc(schemas_0.AddTagsToVault$)    .build() {} class CompleteMultipartUploadCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "CompleteMultipartUpload", {})    .n("GlacierClient", "CompleteMultipartUploadCommand")    .sc(schemas_0.CompleteMultipartUpload$)    .build() {} class CompleteVaultLockCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "CompleteVaultLock", {})    .n("GlacierClient", "CompleteVaultLockCommand")    .sc(schemas_0.CompleteVaultLock$)    .build() {} class CreateVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "CreateVault", {})    .n("GlacierClient", "CreateVaultCommand")    .sc(schemas_0.CreateVault$)    .build() {} class DeleteArchiveCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "DeleteArchive", {})    .n("GlacierClient", "DeleteArchiveCommand")    .sc(schemas_0.DeleteArchive$)    .build() {} class DeleteVaultAccessPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "DeleteVaultAccessPolicy", {})    .n("GlacierClient", "DeleteVaultAccessPolicyCommand")    .sc(schemas_0.DeleteVaultAccessPolicy$)    .build() {} class DeleteVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "DeleteVault", {})    .n("GlacierClient", "DeleteVaultCommand")    .sc(schemas_0.DeleteVault$)    .build() {} class DeleteVaultNotificationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "DeleteVaultNotifications", {})    .n("GlacierClient", "DeleteVaultNotificationsCommand")    .sc(schemas_0.DeleteVaultNotifications$)    .build() {} class DescribeJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "DescribeJob", {})    .n("GlacierClient", "DescribeJobCommand")    .sc(schemas_0.DescribeJob$)    .build() {} class DescribeVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "DescribeVault", {})    .n("GlacierClient", "DescribeVaultCommand")    .sc(schemas_0.DescribeVault$)    .build() {} class GetDataRetrievalPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "GetDataRetrievalPolicy", {})    .n("GlacierClient", "GetDataRetrievalPolicyCommand")    .sc(schemas_0.GetDataRetrievalPolicy$)    .build() {} class GetJobOutputCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "GetJobOutput", {})    .n("GlacierClient", "GetJobOutputCommand")    .sc(schemas_0.GetJobOutput$)    .build() {} class GetVaultAccessPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "GetVaultAccessPolicy", {})    .n("GlacierClient", "GetVaultAccessPolicyCommand")    .sc(schemas_0.GetVaultAccessPolicy$)    .build() {} class GetVaultLockCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "GetVaultLock", {})    .n("GlacierClient", "GetVaultLockCommand")    .sc(schemas_0.GetVaultLock$)    .build() {} class GetVaultNotificationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "GetVaultNotifications", {})    .n("GlacierClient", "GetVaultNotificationsCommand")    .sc(schemas_0.GetVaultNotifications$)    .build() {} class InitiateJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "InitiateJob", {})    .n("GlacierClient", "InitiateJobCommand")    .sc(schemas_0.InitiateJob$)    .build() {} class InitiateMultipartUploadCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "InitiateMultipartUpload", {})    .n("GlacierClient", "InitiateMultipartUploadCommand")    .sc(schemas_0.InitiateMultipartUpload$)    .build() {} class InitiateVaultLockCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "InitiateVaultLock", {})    .n("GlacierClient", "InitiateVaultLockCommand")    .sc(schemas_0.InitiateVaultLock$)    .build() {} class ListJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "ListJobs", {})    .n("GlacierClient", "ListJobsCommand")    .sc(schemas_0.ListJobs$)    .build() {} class ListMultipartUploadsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "ListMultipartUploads", {})    .n("GlacierClient", "ListMultipartUploadsCommand")    .sc(schemas_0.ListMultipartUploads$)    .build() {} class ListPartsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "ListParts", {})    .n("GlacierClient", "ListPartsCommand")    .sc(schemas_0.ListParts$)    .build() {} class ListProvisionedCapacityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "ListProvisionedCapacity", {})    .n("GlacierClient", "ListProvisionedCapacityCommand")    .sc(schemas_0.ListProvisionedCapacity$)    .build() {} class ListTagsForVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "ListTagsForVault", {})    .n("GlacierClient", "ListTagsForVaultCommand")    .sc(schemas_0.ListTagsForVault$)    .build() {} class ListVaultsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "ListVaults", {})    .n("GlacierClient", "ListVaultsCommand")    .sc(schemas_0.ListVaults$)    .build() {} class PurchaseProvisionedCapacityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "PurchaseProvisionedCapacity", {})    .n("GlacierClient", "PurchaseProvisionedCapacityCommand")    .sc(schemas_0.PurchaseProvisionedCapacity$)    .build() {} class RemoveTagsFromVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "RemoveTagsFromVault", {})    .n("GlacierClient", "RemoveTagsFromVaultCommand")    .sc(schemas_0.RemoveTagsFromVault$)    .build() {} class SetDataRetrievalPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "SetDataRetrievalPolicy", {})    .n("GlacierClient", "SetDataRetrievalPolicyCommand")    .sc(schemas_0.SetDataRetrievalPolicy$)    .build() {} class SetVaultAccessPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "SetVaultAccessPolicy", {})    .n("GlacierClient", "SetVaultAccessPolicyCommand")    .sc(schemas_0.SetVaultAccessPolicy$)    .build() {} class SetVaultNotificationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "SetVaultNotifications", {})    .n("GlacierClient", "SetVaultNotificationsCommand")    .sc(schemas_0.SetVaultNotifications$)    .build() {} class UploadArchiveCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "UploadArchive", {})    .n("GlacierClient", "UploadArchiveCommand")    .sc(schemas_0.UploadArchive$)    .build() {} class UploadMultipartPartCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Glacier", "UploadMultipartPart", {})    .n("GlacierClient", "UploadMultipartPartCommand")    .sc(schemas_0.UploadMultipartPart$)    .build() {} const paginateListJobs = core.createPaginator(GlacierClient, ListJobsCommand, "marker", "Marker", "limit"); const paginateListMultipartUploads = core.createPaginator(GlacierClient, ListMultipartUploadsCommand, "marker", "Marker", "limit"); const paginateListParts = core.createPaginator(GlacierClient, ListPartsCommand, "marker", "Marker", "limit"); const paginateListVaults = core.createPaginator(GlacierClient, ListVaultsCommand, "marker", "Marker", "limit"); const checkState$1 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeVaultCommand(input));        reason = result;        return { state: client.WaiterState.SUCCESS, reason };    }    catch (exception) {        reason = exception;        if (exception.name === "ResourceNotFoundException") {            return { state: client.WaiterState.RETRY, reason };        }    }    return { state: client.WaiterState.RETRY, reason };};const waitForVaultExists = async (params, input) => {    const serviceDefaults = { minDelay: 3, maxDelay: 120 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);};const waitUntilVaultExists = async (params, input) => {    const serviceDefaults = { minDelay: 3, maxDelay: 120 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);    return client.checkExceptions(result);}; const checkState = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeVaultCommand(input));        reason = result;        return { state: client.WaiterState.RETRY, reason };    }    catch (exception) {        reason = exception;        if (exception.name === "ResourceNotFoundException") {            return { state: client.WaiterState.SUCCESS, reason };        }    }    return { state: client.WaiterState.RETRY, reason };};const waitForVaultNotExists = async (params, input) => {    const serviceDefaults = { minDelay: 3, maxDelay: 120 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);};const waitUntilVaultNotExists = async (params, input) => {    const serviceDefaults = { minDelay: 3, maxDelay: 120 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);    return client.checkExceptions(result);}; const commands = {    AbortMultipartUploadCommand,    AbortVaultLockCommand,    AddTagsToVaultCommand,    CompleteMultipartUploadCommand,    CompleteVaultLockCommand,    CreateVaultCommand,    DeleteArchiveCommand,    DeleteVaultCommand,    DeleteVaultAccessPolicyCommand,    DeleteVaultNotificationsCommand,    DescribeJobCommand,    DescribeVaultCommand,    GetDataRetrievalPolicyCommand,    GetJobOutputCommand,    GetVaultAccessPolicyCommand,    GetVaultLockCommand,    GetVaultNotificationsCommand,    InitiateJobCommand,    InitiateMultipartUploadCommand,    InitiateVaultLockCommand,    ListJobsCommand,    ListMultipartUploadsCommand,    ListPartsCommand,    ListProvisionedCapacityCommand,    ListTagsForVaultCommand,    ListVaultsCommand,    PurchaseProvisionedCapacityCommand,    RemoveTagsFromVaultCommand,    SetDataRetrievalPolicyCommand,    SetVaultAccessPolicyCommand,    SetVaultNotificationsCommand,    UploadArchiveCommand,    UploadMultipartPartCommand,};const paginators = {    paginateListJobs,    paginateListMultipartUploads,    paginateListParts,    paginateListVaults,};const waiters = {    waitUntilVaultExists,    waitUntilVaultNotExists,};class Glacier extends GlacierClient {}client.createAggregatedClient(commands, Glacier, { paginators, waiters }); const Type = {    AmazonCustomerByEmail: "AmazonCustomerByEmail",    CanonicalUser: "CanonicalUser",    Group: "Group",};const Permission = {    FULL_CONTROL: "FULL_CONTROL",    READ: "READ",    READ_ACP: "READ_ACP",    WRITE: "WRITE",    WRITE_ACP: "WRITE_ACP",};const ActionCode = {    ArchiveRetrieval: "ArchiveRetrieval",    InventoryRetrieval: "InventoryRetrieval",    Select: "Select",};const CannedACL = {    AuthenticatedRead: "authenticated-read",    AwsExecRead: "aws-exec-read",    BucketOwnerFullControl: "bucket-owner-full-control",    BucketOwnerRead: "bucket-owner-read",    Private: "private",    PublicRead: "public-read",    PublicReadWrite: "public-read-write",};const FileHeaderInfo = {    Ignore: "IGNORE",    None: "NONE",    Use: "USE",};const QuoteFields = {    Always: "ALWAYS",    AsNeeded: "ASNEEDED",};const EncryptionType = {    KMS: "aws:kms",    S3: "AES256",};const StorageClass = {    ReducedRedundancy: "REDUCED_REDUNDANCY",    Standard: "STANDARD",    StandardInfrequentAccess: "STANDARD_IA",};const ExpressionType = {    SQL: "SQL",};const StatusCode = {    Failed: "Failed",    InProgress: "InProgress",    Succeeded: "Succeeded",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.GlacierServiceException = GlacierServiceException.GlacierServiceException;exports.AbortMultipartUploadCommand = AbortMultipartUploadCommand;exports.AbortVaultLockCommand = AbortVaultLockCommand;exports.ActionCode = ActionCode;exports.AddTagsToVaultCommand = AddTagsToVaultCommand;exports.CannedACL = CannedACL;exports.CompleteMultipartUploadCommand = CompleteMultipartUploadCommand;exports.CompleteVaultLockCommand = CompleteVaultLockCommand;exports.CreateVaultCommand = CreateVaultCommand;exports.DeleteArchiveCommand = DeleteArchiveCommand;exports.DeleteVaultAccessPolicyCommand = DeleteVaultAccessPolicyCommand;exports.DeleteVaultCommand = DeleteVaultCommand;exports.DeleteVaultNotificationsCommand = DeleteVaultNotificationsCommand;exports.DescribeJobCommand = DescribeJobCommand;exports.DescribeVaultCommand = DescribeVaultCommand;exports.EncryptionType = EncryptionType;exports.ExpressionType = ExpressionType;exports.FileHeaderInfo = FileHeaderInfo;exports.GetDataRetrievalPolicyCommand = GetDataRetrievalPolicyCommand;exports.GetJobOutputCommand = GetJobOutputCommand;exports.GetVaultAccessPolicyCommand = GetVaultAccessPolicyCommand;exports.GetVaultLockCommand = GetVaultLockCommand;exports.GetVaultNotificationsCommand = GetVaultNotificationsCommand;exports.Glacier = Glacier;exports.GlacierClient = GlacierClient;exports.InitiateJobCommand = InitiateJobCommand;exports.InitiateMultipartUploadCommand = InitiateMultipartUploadCommand;exports.InitiateVaultLockCommand = InitiateVaultLockCommand;exports.ListJobsCommand = ListJobsCommand;exports.ListMultipartUploadsCommand = ListMultipartUploadsCommand;exports.ListPartsCommand = ListPartsCommand;exports.ListProvisionedCapacityCommand = ListProvisionedCapacityCommand;exports.ListTagsForVaultCommand = ListTagsForVaultCommand;exports.ListVaultsCommand = ListVaultsCommand;exports.Permission = Permission;exports.PurchaseProvisionedCapacityCommand = PurchaseProvisionedCapacityCommand;exports.QuoteFields = QuoteFields;exports.RemoveTagsFromVaultCommand = RemoveTagsFromVaultCommand;exports.SetDataRetrievalPolicyCommand = SetDataRetrievalPolicyCommand;exports.SetVaultAccessPolicyCommand = SetVaultAccessPolicyCommand;exports.SetVaultNotificationsCommand = SetVaultNotificationsCommand;exports.StatusCode = StatusCode;exports.StorageClass = StorageClass;exports.Type = Type;exports.UploadArchiveCommand = UploadArchiveCommand;exports.UploadMultipartPartCommand = UploadMultipartPartCommand;exports.paginateListJobs = paginateListJobs;exports.paginateListMultipartUploads = paginateListMultipartUploads;exports.paginateListParts = paginateListParts;exports.paginateListVaults = paginateListVaults;exports.waitForVaultExists = waitForVaultExists;exports.waitForVaultNotExists = waitForVaultNotExists;exports.waitUntilVaultExists = waitUntilVaultExists;exports.waitUntilVaultNotExists = waitUntilVaultNotExists;Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: schemas_0['__proto__']    }); Object.keys(schemas_0).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];});Object.prototype.hasOwnProperty.call(errors, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: errors['__proto__']    }); Object.keys(errors).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];});