File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-transfer/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.js50.8 KB · 1519 lines
'use strict'; var client$1 = require('@aws-sdk/core/client');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 TransferServiceException = require('./models/TransferServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "transfer",    });};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 TransferClient 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(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {            httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultTransferHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CreateAccessCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "CreateAccess", {})    .n("TransferClient", "CreateAccessCommand")    .sc(schemas_0.CreateAccess$)    .build() {} class CreateAgreementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "CreateAgreement", {})    .n("TransferClient", "CreateAgreementCommand")    .sc(schemas_0.CreateAgreement$)    .build() {} class CreateConnectorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "CreateConnector", {})    .n("TransferClient", "CreateConnectorCommand")    .sc(schemas_0.CreateConnector$)    .build() {} class CreateProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "CreateProfile", {})    .n("TransferClient", "CreateProfileCommand")    .sc(schemas_0.CreateProfile$)    .build() {} class CreateServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "CreateServer", {})    .n("TransferClient", "CreateServerCommand")    .sc(schemas_0.CreateServer$)    .build() {} class CreateUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "CreateUser", {})    .n("TransferClient", "CreateUserCommand")    .sc(schemas_0.CreateUser$)    .build() {} class CreateWebAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "CreateWebApp", {})    .n("TransferClient", "CreateWebAppCommand")    .sc(schemas_0.CreateWebApp$)    .build() {} class CreateWorkflowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "CreateWorkflow", {})    .n("TransferClient", "CreateWorkflowCommand")    .sc(schemas_0.CreateWorkflow$)    .build() {} class DeleteAccessCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteAccess", {})    .n("TransferClient", "DeleteAccessCommand")    .sc(schemas_0.DeleteAccess$)    .build() {} class DeleteAgreementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteAgreement", {})    .n("TransferClient", "DeleteAgreementCommand")    .sc(schemas_0.DeleteAgreement$)    .build() {} class DeleteCertificateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteCertificate", {})    .n("TransferClient", "DeleteCertificateCommand")    .sc(schemas_0.DeleteCertificate$)    .build() {} class DeleteConnectorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteConnector", {})    .n("TransferClient", "DeleteConnectorCommand")    .sc(schemas_0.DeleteConnector$)    .build() {} class DeleteHostKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteHostKey", {})    .n("TransferClient", "DeleteHostKeyCommand")    .sc(schemas_0.DeleteHostKey$)    .build() {} class DeleteProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteProfile", {})    .n("TransferClient", "DeleteProfileCommand")    .sc(schemas_0.DeleteProfile$)    .build() {} class DeleteServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteServer", {})    .n("TransferClient", "DeleteServerCommand")    .sc(schemas_0.DeleteServer$)    .build() {} class DeleteSshPublicKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteSshPublicKey", {})    .n("TransferClient", "DeleteSshPublicKeyCommand")    .sc(schemas_0.DeleteSshPublicKey$)    .build() {} class DeleteUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteUser", {})    .n("TransferClient", "DeleteUserCommand")    .sc(schemas_0.DeleteUser$)    .build() {} class DeleteWebAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteWebApp", {})    .n("TransferClient", "DeleteWebAppCommand")    .sc(schemas_0.DeleteWebApp$)    .build() {} class DeleteWebAppCustomizationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteWebAppCustomization", {})    .n("TransferClient", "DeleteWebAppCustomizationCommand")    .sc(schemas_0.DeleteWebAppCustomization$)    .build() {} class DeleteWorkflowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DeleteWorkflow", {})    .n("TransferClient", "DeleteWorkflowCommand")    .sc(schemas_0.DeleteWorkflow$)    .build() {} class DescribeAccessCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeAccess", {})    .n("TransferClient", "DescribeAccessCommand")    .sc(schemas_0.DescribeAccess$)    .build() {} class DescribeAgreementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeAgreement", {})    .n("TransferClient", "DescribeAgreementCommand")    .sc(schemas_0.DescribeAgreement$)    .build() {} class DescribeCertificateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeCertificate", {})    .n("TransferClient", "DescribeCertificateCommand")    .sc(schemas_0.DescribeCertificate$)    .build() {} class DescribeConnectorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeConnector", {})    .n("TransferClient", "DescribeConnectorCommand")    .sc(schemas_0.DescribeConnector$)    .build() {} class DescribeExecutionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeExecution", {})    .n("TransferClient", "DescribeExecutionCommand")    .sc(schemas_0.DescribeExecution$)    .build() {} class DescribeHostKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeHostKey", {})    .n("TransferClient", "DescribeHostKeyCommand")    .sc(schemas_0.DescribeHostKey$)    .build() {} class DescribeProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeProfile", {})    .n("TransferClient", "DescribeProfileCommand")    .sc(schemas_0.DescribeProfile$)    .build() {} class DescribeSecurityPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeSecurityPolicy", {})    .n("TransferClient", "DescribeSecurityPolicyCommand")    .sc(schemas_0.DescribeSecurityPolicy$)    .build() {} class DescribeServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeServer", {})    .n("TransferClient", "DescribeServerCommand")    .sc(schemas_0.DescribeServer$)    .build() {} class DescribeUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeUser", {})    .n("TransferClient", "DescribeUserCommand")    .sc(schemas_0.DescribeUser$)    .build() {} class DescribeWebAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeWebApp", {})    .n("TransferClient", "DescribeWebAppCommand")    .sc(schemas_0.DescribeWebApp$)    .build() {} class DescribeWebAppCustomizationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeWebAppCustomization", {})    .n("TransferClient", "DescribeWebAppCustomizationCommand")    .sc(schemas_0.DescribeWebAppCustomization$)    .build() {} class DescribeWorkflowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "DescribeWorkflow", {})    .n("TransferClient", "DescribeWorkflowCommand")    .sc(schemas_0.DescribeWorkflow$)    .build() {} class ImportCertificateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ImportCertificate", {})    .n("TransferClient", "ImportCertificateCommand")    .sc(schemas_0.ImportCertificate$)    .build() {} class ImportHostKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ImportHostKey", {})    .n("TransferClient", "ImportHostKeyCommand")    .sc(schemas_0.ImportHostKey$)    .build() {} class ImportSshPublicKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ImportSshPublicKey", {})    .n("TransferClient", "ImportSshPublicKeyCommand")    .sc(schemas_0.ImportSshPublicKey$)    .build() {} class ListAccessesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListAccesses", {})    .n("TransferClient", "ListAccessesCommand")    .sc(schemas_0.ListAccesses$)    .build() {} class ListAgreementsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListAgreements", {})    .n("TransferClient", "ListAgreementsCommand")    .sc(schemas_0.ListAgreements$)    .build() {} class ListCertificatesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListCertificates", {})    .n("TransferClient", "ListCertificatesCommand")    .sc(schemas_0.ListCertificates$)    .build() {} class ListConnectorsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListConnectors", {})    .n("TransferClient", "ListConnectorsCommand")    .sc(schemas_0.ListConnectors$)    .build() {} class ListExecutionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListExecutions", {})    .n("TransferClient", "ListExecutionsCommand")    .sc(schemas_0.ListExecutions$)    .build() {} class ListFileTransferResultsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListFileTransferResults", {})    .n("TransferClient", "ListFileTransferResultsCommand")    .sc(schemas_0.ListFileTransferResults$)    .build() {} class ListHostKeysCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListHostKeys", {})    .n("TransferClient", "ListHostKeysCommand")    .sc(schemas_0.ListHostKeys$)    .build() {} class ListProfilesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListProfiles", {})    .n("TransferClient", "ListProfilesCommand")    .sc(schemas_0.ListProfiles$)    .build() {} class ListSecurityPoliciesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListSecurityPolicies", {})    .n("TransferClient", "ListSecurityPoliciesCommand")    .sc(schemas_0.ListSecurityPolicies$)    .build() {} class ListServersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListServers", {})    .n("TransferClient", "ListServersCommand")    .sc(schemas_0.ListServers$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListTagsForResource", {})    .n("TransferClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class ListUsersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListUsers", {})    .n("TransferClient", "ListUsersCommand")    .sc(schemas_0.ListUsers$)    .build() {} class ListWebAppsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListWebApps", {})    .n("TransferClient", "ListWebAppsCommand")    .sc(schemas_0.ListWebApps$)    .build() {} class ListWorkflowsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "ListWorkflows", {})    .n("TransferClient", "ListWorkflowsCommand")    .sc(schemas_0.ListWorkflows$)    .build() {} class SendWorkflowStepStateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "SendWorkflowStepState", {})    .n("TransferClient", "SendWorkflowStepStateCommand")    .sc(schemas_0.SendWorkflowStepState$)    .build() {} class StartDirectoryListingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "StartDirectoryListing", {})    .n("TransferClient", "StartDirectoryListingCommand")    .sc(schemas_0.StartDirectoryListing$)    .build() {} class StartFileTransferCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "StartFileTransfer", {})    .n("TransferClient", "StartFileTransferCommand")    .sc(schemas_0.StartFileTransfer$)    .build() {} class StartRemoteDeleteCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "StartRemoteDelete", {})    .n("TransferClient", "StartRemoteDeleteCommand")    .sc(schemas_0.StartRemoteDelete$)    .build() {} class StartRemoteMoveCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "StartRemoteMove", {})    .n("TransferClient", "StartRemoteMoveCommand")    .sc(schemas_0.StartRemoteMove$)    .build() {} class StartServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "StartServer", {})    .n("TransferClient", "StartServerCommand")    .sc(schemas_0.StartServer$)    .build() {} class StopServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "StopServer", {})    .n("TransferClient", "StopServerCommand")    .sc(schemas_0.StopServer$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "TagResource", {})    .n("TransferClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class TestConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "TestConnection", {})    .n("TransferClient", "TestConnectionCommand")    .sc(schemas_0.TestConnection$)    .build() {} class TestIdentityProviderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "TestIdentityProvider", {})    .n("TransferClient", "TestIdentityProviderCommand")    .sc(schemas_0.TestIdentityProvider$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UntagResource", {})    .n("TransferClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateAccessCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UpdateAccess", {})    .n("TransferClient", "UpdateAccessCommand")    .sc(schemas_0.UpdateAccess$)    .build() {} class UpdateAgreementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UpdateAgreement", {})    .n("TransferClient", "UpdateAgreementCommand")    .sc(schemas_0.UpdateAgreement$)    .build() {} class UpdateCertificateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UpdateCertificate", {})    .n("TransferClient", "UpdateCertificateCommand")    .sc(schemas_0.UpdateCertificate$)    .build() {} class UpdateConnectorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UpdateConnector", {})    .n("TransferClient", "UpdateConnectorCommand")    .sc(schemas_0.UpdateConnector$)    .build() {} class UpdateHostKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UpdateHostKey", {})    .n("TransferClient", "UpdateHostKeyCommand")    .sc(schemas_0.UpdateHostKey$)    .build() {} class UpdateProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UpdateProfile", {})    .n("TransferClient", "UpdateProfileCommand")    .sc(schemas_0.UpdateProfile$)    .build() {} class UpdateServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UpdateServer", {})    .n("TransferClient", "UpdateServerCommand")    .sc(schemas_0.UpdateServer$)    .build() {} class UpdateUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UpdateUser", {})    .n("TransferClient", "UpdateUserCommand")    .sc(schemas_0.UpdateUser$)    .build() {} class UpdateWebAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UpdateWebApp", {})    .n("TransferClient", "UpdateWebAppCommand")    .sc(schemas_0.UpdateWebApp$)    .build() {} class UpdateWebAppCustomizationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("TransferService", "UpdateWebAppCustomization", {})    .n("TransferClient", "UpdateWebAppCustomizationCommand")    .sc(schemas_0.UpdateWebAppCustomization$)    .build() {} const paginateListAccesses = core.createPaginator(TransferClient, ListAccessesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListAgreements = core.createPaginator(TransferClient, ListAgreementsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCertificates = core.createPaginator(TransferClient, ListCertificatesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListConnectors = core.createPaginator(TransferClient, ListConnectorsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListExecutions = core.createPaginator(TransferClient, ListExecutionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListFileTransferResults = core.createPaginator(TransferClient, ListFileTransferResultsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListProfiles = core.createPaginator(TransferClient, ListProfilesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListSecurityPolicies = core.createPaginator(TransferClient, ListSecurityPoliciesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListServers = core.createPaginator(TransferClient, ListServersCommand, "NextToken", "NextToken", "MaxResults"); const paginateListTagsForResource = core.createPaginator(TransferClient, ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults"); const paginateListUsers = core.createPaginator(TransferClient, ListUsersCommand, "NextToken", "NextToken", "MaxResults"); const paginateListWebApps = core.createPaginator(TransferClient, ListWebAppsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListWorkflows = core.createPaginator(TransferClient, ListWorkflowsCommand, "NextToken", "NextToken", "MaxResults"); const checkState$1 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeServerCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.Server.State;            };            if (returnComparator() === "OFFLINE") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.Server.State;            };            if (returnComparator() === "STOP_FAILED") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForServerOffline = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 3600 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);};const waitUntilServerOffline = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 3600 };    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 DescribeServerCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.Server.State;            };            if (returnComparator() === "ONLINE") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.Server.State;            };            if (returnComparator() === "START_FAILED") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForServerOnline = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 3600 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);};const waitUntilServerOnline = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 3600 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);    return client.checkExceptions(result);}; const commands = {    CreateAccessCommand,    CreateAgreementCommand,    CreateConnectorCommand,    CreateProfileCommand,    CreateServerCommand,    CreateUserCommand,    CreateWebAppCommand,    CreateWorkflowCommand,    DeleteAccessCommand,    DeleteAgreementCommand,    DeleteCertificateCommand,    DeleteConnectorCommand,    DeleteHostKeyCommand,    DeleteProfileCommand,    DeleteServerCommand,    DeleteSshPublicKeyCommand,    DeleteUserCommand,    DeleteWebAppCommand,    DeleteWebAppCustomizationCommand,    DeleteWorkflowCommand,    DescribeAccessCommand,    DescribeAgreementCommand,    DescribeCertificateCommand,    DescribeConnectorCommand,    DescribeExecutionCommand,    DescribeHostKeyCommand,    DescribeProfileCommand,    DescribeSecurityPolicyCommand,    DescribeServerCommand,    DescribeUserCommand,    DescribeWebAppCommand,    DescribeWebAppCustomizationCommand,    DescribeWorkflowCommand,    ImportCertificateCommand,    ImportHostKeyCommand,    ImportSshPublicKeyCommand,    ListAccessesCommand,    ListAgreementsCommand,    ListCertificatesCommand,    ListConnectorsCommand,    ListExecutionsCommand,    ListFileTransferResultsCommand,    ListHostKeysCommand,    ListProfilesCommand,    ListSecurityPoliciesCommand,    ListServersCommand,    ListTagsForResourceCommand,    ListUsersCommand,    ListWebAppsCommand,    ListWorkflowsCommand,    SendWorkflowStepStateCommand,    StartDirectoryListingCommand,    StartFileTransferCommand,    StartRemoteDeleteCommand,    StartRemoteMoveCommand,    StartServerCommand,    StopServerCommand,    TagResourceCommand,    TestConnectionCommand,    TestIdentityProviderCommand,    UntagResourceCommand,    UpdateAccessCommand,    UpdateAgreementCommand,    UpdateCertificateCommand,    UpdateConnectorCommand,    UpdateHostKeyCommand,    UpdateProfileCommand,    UpdateServerCommand,    UpdateUserCommand,    UpdateWebAppCommand,    UpdateWebAppCustomizationCommand,};const paginators = {    paginateListAccesses,    paginateListAgreements,    paginateListCertificates,    paginateListConnectors,    paginateListExecutions,    paginateListFileTransferResults,    paginateListProfiles,    paginateListSecurityPolicies,    paginateListServers,    paginateListTagsForResource,    paginateListUsers,    paginateListWebApps,    paginateListWorkflows,};const waiters = {    waitUntilServerOffline,    waitUntilServerOnline,};class Transfer extends TransferClient {}client.createAggregatedClient(commands, Transfer, { paginators, waiters }); const EnforceMessageSigningType = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const PreserveFilenameType = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const AgreementStatusType = {    ACTIVE: "ACTIVE",    INACTIVE: "INACTIVE",};const CompressionEnum = {    DISABLED: "DISABLED",    ZLIB: "ZLIB",};const EncryptionAlg = {    AES128_CBC: "AES128_CBC",    AES192_CBC: "AES192_CBC",    AES256_CBC: "AES256_CBC",    DES_EDE3_CBC: "DES_EDE3_CBC",    NONE: "NONE",};const MdnResponse = {    ASYNC: "ASYNC",    NONE: "NONE",    SYNC: "SYNC",};const MdnSigningAlg = {    DEFAULT: "DEFAULT",    NONE: "NONE",    SHA1: "SHA1",    SHA256: "SHA256",    SHA384: "SHA384",    SHA512: "SHA512",};const PreserveContentType = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const SigningAlg = {    NONE: "NONE",    SHA1: "SHA1",    SHA256: "SHA256",    SHA384: "SHA384",    SHA512: "SHA512",};const As2Transport = {    HTTP: "HTTP",};const CertificateStatusType = {    ACTIVE: "ACTIVE",    INACTIVE: "INACTIVE",    PENDING_ROTATION: "PENDING_ROTATION",};const CertificateType = {    CERTIFICATE: "CERTIFICATE",    CERTIFICATE_WITH_PRIVATE_KEY: "CERTIFICATE_WITH_PRIVATE_KEY",};const CertificateUsageType = {    ENCRYPTION: "ENCRYPTION",    SIGNING: "SIGNING",    TLS: "TLS",};const ConnectorEgressType = {    SERVICE_MANAGED: "SERVICE_MANAGED",    VPC_LATTICE: "VPC_LATTICE",};const TransferTableStatus = {    COMPLETED: "COMPLETED",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    QUEUED: "QUEUED",};const ConnectorsIpAddressType = {    DUALSTACK: "DUALSTACK",    IPV4: "IPV4",};const ConnectorStatus = {    ACTIVE: "ACTIVE",    ERRORED: "ERRORED",    PENDING: "PENDING",};const OverwriteExisting = {    FALSE: "FALSE",    TRUE: "TRUE",};const MapType = {    DIRECTORY: "DIRECTORY",    FILE: "FILE",};const HomeDirectoryType = {    LOGICAL: "LOGICAL",    PATH: "PATH",};const ProfileType = {    LOCAL: "LOCAL",    PARTNER: "PARTNER",};const Domain = {    EFS: "EFS",    S3: "S3",};const EndpointType = {    PUBLIC: "PUBLIC",    VPC: "VPC",    VPC_ENDPOINT: "VPC_ENDPOINT",};const SftpAuthenticationMethods = {    PASSWORD: "PASSWORD",    PUBLIC_KEY: "PUBLIC_KEY",    PUBLIC_KEY_AND_PASSWORD: "PUBLIC_KEY_AND_PASSWORD",    PUBLIC_KEY_OR_PASSWORD: "PUBLIC_KEY_OR_PASSWORD",};const IdentityProviderType = {    API_GATEWAY: "API_GATEWAY",    AWS_DIRECTORY_SERVICE: "AWS_DIRECTORY_SERVICE",    AWS_LAMBDA: "AWS_LAMBDA",    SERVICE_MANAGED: "SERVICE_MANAGED",};const IpAddressType = {    DUALSTACK: "DUALSTACK",    IPV4: "IPV4",};const SetStatOption = {    DEFAULT: "DEFAULT",    ENABLE_NO_OP: "ENABLE_NO_OP",};const TlsSessionResumptionMode = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",    ENFORCED: "ENFORCED",};const Protocol = {    AS2: "AS2",    FTP: "FTP",    FTPS: "FTPS",    SFTP: "SFTP",};const DirectoryListingOptimization = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const WebAppVpcEndpointIpAddressType = {    DUALSTACK: "DUALSTACK",    IPV4: "IPV4",};const WebAppEndpointPolicy = {    FIPS: "FIPS",    STANDARD: "STANDARD",};const EncryptionType = {    PGP: "PGP",};const WorkflowStepType = {    COPY: "COPY",    CUSTOM: "CUSTOM",    DECRYPT: "DECRYPT",    DELETE: "DELETE",    TAG: "TAG",};const CustomStepStatus = {    FAILURE: "FAILURE",    SUCCESS: "SUCCESS",};const ExecutionErrorType = {    ALREADY_EXISTS: "ALREADY_EXISTS",    BAD_REQUEST: "BAD_REQUEST",    CUSTOM_STEP_FAILED: "CUSTOM_STEP_FAILED",    INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",    NOT_FOUND: "NOT_FOUND",    PERMISSION_DENIED: "PERMISSION_DENIED",    THROTTLED: "THROTTLED",    TIMEOUT: "TIMEOUT",};const ExecutionStatus = {    COMPLETED: "COMPLETED",    EXCEPTION: "EXCEPTION",    HANDLING_EXCEPTION: "HANDLING_EXCEPTION",    IN_PROGRESS: "IN_PROGRESS",};const SecurityPolicyProtocol = {    FTPS: "FTPS",    SFTP: "SFTP",};const SecurityPolicyResourceType = {    CONNECTOR: "CONNECTOR",    SERVER: "SERVER",};const State = {    OFFLINE: "OFFLINE",    ONLINE: "ONLINE",    STARTING: "STARTING",    START_FAILED: "START_FAILED",    STOPPING: "STOPPING",    STOP_FAILED: "STOP_FAILED",};const WebAppEndpointType = {    PUBLIC: "PUBLIC",    VPC: "VPC",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.TransferServiceException = TransferServiceException.TransferServiceException;exports.AgreementStatusType = AgreementStatusType;exports.As2Transport = As2Transport;exports.CertificateStatusType = CertificateStatusType;exports.CertificateType = CertificateType;exports.CertificateUsageType = CertificateUsageType;exports.CompressionEnum = CompressionEnum;exports.ConnectorEgressType = ConnectorEgressType;exports.ConnectorStatus = ConnectorStatus;exports.ConnectorsIpAddressType = ConnectorsIpAddressType;exports.CreateAccessCommand = CreateAccessCommand;exports.CreateAgreementCommand = CreateAgreementCommand;exports.CreateConnectorCommand = CreateConnectorCommand;exports.CreateProfileCommand = CreateProfileCommand;exports.CreateServerCommand = CreateServerCommand;exports.CreateUserCommand = CreateUserCommand;exports.CreateWebAppCommand = CreateWebAppCommand;exports.CreateWorkflowCommand = CreateWorkflowCommand;exports.CustomStepStatus = CustomStepStatus;exports.DeleteAccessCommand = DeleteAccessCommand;exports.DeleteAgreementCommand = DeleteAgreementCommand;exports.DeleteCertificateCommand = DeleteCertificateCommand;exports.DeleteConnectorCommand = DeleteConnectorCommand;exports.DeleteHostKeyCommand = DeleteHostKeyCommand;exports.DeleteProfileCommand = DeleteProfileCommand;exports.DeleteServerCommand = DeleteServerCommand;exports.DeleteSshPublicKeyCommand = DeleteSshPublicKeyCommand;exports.DeleteUserCommand = DeleteUserCommand;exports.DeleteWebAppCommand = DeleteWebAppCommand;exports.DeleteWebAppCustomizationCommand = DeleteWebAppCustomizationCommand;exports.DeleteWorkflowCommand = DeleteWorkflowCommand;exports.DescribeAccessCommand = DescribeAccessCommand;exports.DescribeAgreementCommand = DescribeAgreementCommand;exports.DescribeCertificateCommand = DescribeCertificateCommand;exports.DescribeConnectorCommand = DescribeConnectorCommand;exports.DescribeExecutionCommand = DescribeExecutionCommand;exports.DescribeHostKeyCommand = DescribeHostKeyCommand;exports.DescribeProfileCommand = DescribeProfileCommand;exports.DescribeSecurityPolicyCommand = DescribeSecurityPolicyCommand;exports.DescribeServerCommand = DescribeServerCommand;exports.DescribeUserCommand = DescribeUserCommand;exports.DescribeWebAppCommand = DescribeWebAppCommand;exports.DescribeWebAppCustomizationCommand = DescribeWebAppCustomizationCommand;exports.DescribeWorkflowCommand = DescribeWorkflowCommand;exports.DirectoryListingOptimization = DirectoryListingOptimization;exports.Domain = Domain;exports.EncryptionAlg = EncryptionAlg;exports.EncryptionType = EncryptionType;exports.EndpointType = EndpointType;exports.EnforceMessageSigningType = EnforceMessageSigningType;exports.ExecutionErrorType = ExecutionErrorType;exports.ExecutionStatus = ExecutionStatus;exports.HomeDirectoryType = HomeDirectoryType;exports.IdentityProviderType = IdentityProviderType;exports.ImportCertificateCommand = ImportCertificateCommand;exports.ImportHostKeyCommand = ImportHostKeyCommand;exports.ImportSshPublicKeyCommand = ImportSshPublicKeyCommand;exports.IpAddressType = IpAddressType;exports.ListAccessesCommand = ListAccessesCommand;exports.ListAgreementsCommand = ListAgreementsCommand;exports.ListCertificatesCommand = ListCertificatesCommand;exports.ListConnectorsCommand = ListConnectorsCommand;exports.ListExecutionsCommand = ListExecutionsCommand;exports.ListFileTransferResultsCommand = ListFileTransferResultsCommand;exports.ListHostKeysCommand = ListHostKeysCommand;exports.ListProfilesCommand = ListProfilesCommand;exports.ListSecurityPoliciesCommand = ListSecurityPoliciesCommand;exports.ListServersCommand = ListServersCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.ListUsersCommand = ListUsersCommand;exports.ListWebAppsCommand = ListWebAppsCommand;exports.ListWorkflowsCommand = ListWorkflowsCommand;exports.MapType = MapType;exports.MdnResponse = MdnResponse;exports.MdnSigningAlg = MdnSigningAlg;exports.OverwriteExisting = OverwriteExisting;exports.PreserveContentType = PreserveContentType;exports.PreserveFilenameType = PreserveFilenameType;exports.ProfileType = ProfileType;exports.Protocol = Protocol;exports.SecurityPolicyProtocol = SecurityPolicyProtocol;exports.SecurityPolicyResourceType = SecurityPolicyResourceType;exports.SendWorkflowStepStateCommand = SendWorkflowStepStateCommand;exports.SetStatOption = SetStatOption;exports.SftpAuthenticationMethods = SftpAuthenticationMethods;exports.SigningAlg = SigningAlg;exports.StartDirectoryListingCommand = StartDirectoryListingCommand;exports.StartFileTransferCommand = StartFileTransferCommand;exports.StartRemoteDeleteCommand = StartRemoteDeleteCommand;exports.StartRemoteMoveCommand = StartRemoteMoveCommand;exports.StartServerCommand = StartServerCommand;exports.State = State;exports.StopServerCommand = StopServerCommand;exports.TagResourceCommand = TagResourceCommand;exports.TestConnectionCommand = TestConnectionCommand;exports.TestIdentityProviderCommand = TestIdentityProviderCommand;exports.TlsSessionResumptionMode = TlsSessionResumptionMode;exports.Transfer = Transfer;exports.TransferClient = TransferClient;exports.TransferTableStatus = TransferTableStatus;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateAccessCommand = UpdateAccessCommand;exports.UpdateAgreementCommand = UpdateAgreementCommand;exports.UpdateCertificateCommand = UpdateCertificateCommand;exports.UpdateConnectorCommand = UpdateConnectorCommand;exports.UpdateHostKeyCommand = UpdateHostKeyCommand;exports.UpdateProfileCommand = UpdateProfileCommand;exports.UpdateServerCommand = UpdateServerCommand;exports.UpdateUserCommand = UpdateUserCommand;exports.UpdateWebAppCommand = UpdateWebAppCommand;exports.UpdateWebAppCustomizationCommand = UpdateWebAppCustomizationCommand;exports.WebAppEndpointPolicy = WebAppEndpointPolicy;exports.WebAppEndpointType = WebAppEndpointType;exports.WebAppVpcEndpointIpAddressType = WebAppVpcEndpointIpAddressType;exports.WorkflowStepType = WorkflowStepType;exports.paginateListAccesses = paginateListAccesses;exports.paginateListAgreements = paginateListAgreements;exports.paginateListCertificates = paginateListCertificates;exports.paginateListConnectors = paginateListConnectors;exports.paginateListExecutions = paginateListExecutions;exports.paginateListFileTransferResults = paginateListFileTransferResults;exports.paginateListProfiles = paginateListProfiles;exports.paginateListSecurityPolicies = paginateListSecurityPolicies;exports.paginateListServers = paginateListServers;exports.paginateListTagsForResource = paginateListTagsForResource;exports.paginateListUsers = paginateListUsers;exports.paginateListWebApps = paginateListWebApps;exports.paginateListWorkflows = paginateListWorkflows;exports.waitForServerOffline = waitForServerOffline;exports.waitForServerOnline = waitForServerOnline;exports.waitUntilServerOffline = waitUntilServerOffline;exports.waitUntilServerOnline = waitUntilServerOnline;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];});