File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-appflow/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.js36.4 KB · 1055 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 AppflowServiceException = require('./models/AppflowServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "appflow",    });};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 AppflowClient 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.defaultAppflowHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CancelFlowExecutionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "CancelFlowExecutions", {})    .n("AppflowClient", "CancelFlowExecutionsCommand")    .sc(schemas_0.CancelFlowExecutions$)    .build() {} class CreateConnectorProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "CreateConnectorProfile", {})    .n("AppflowClient", "CreateConnectorProfileCommand")    .sc(schemas_0.CreateConnectorProfile$)    .build() {} class CreateFlowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "CreateFlow", {})    .n("AppflowClient", "CreateFlowCommand")    .sc(schemas_0.CreateFlow$)    .build() {} class DeleteConnectorProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "DeleteConnectorProfile", {})    .n("AppflowClient", "DeleteConnectorProfileCommand")    .sc(schemas_0.DeleteConnectorProfile$)    .build() {} class DeleteFlowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "DeleteFlow", {})    .n("AppflowClient", "DeleteFlowCommand")    .sc(schemas_0.DeleteFlow$)    .build() {} class DescribeConnectorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "DescribeConnector", {})    .n("AppflowClient", "DescribeConnectorCommand")    .sc(schemas_0.DescribeConnector$)    .build() {} class DescribeConnectorEntityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "DescribeConnectorEntity", {})    .n("AppflowClient", "DescribeConnectorEntityCommand")    .sc(schemas_0.DescribeConnectorEntity$)    .build() {} class DescribeConnectorProfilesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "DescribeConnectorProfiles", {})    .n("AppflowClient", "DescribeConnectorProfilesCommand")    .sc(schemas_0.DescribeConnectorProfiles$)    .build() {} class DescribeConnectorsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "DescribeConnectors", {})    .n("AppflowClient", "DescribeConnectorsCommand")    .sc(schemas_0.DescribeConnectors$)    .build() {} class DescribeFlowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "DescribeFlow", {})    .n("AppflowClient", "DescribeFlowCommand")    .sc(schemas_0.DescribeFlow$)    .build() {} class DescribeFlowExecutionRecordsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "DescribeFlowExecutionRecords", {})    .n("AppflowClient", "DescribeFlowExecutionRecordsCommand")    .sc(schemas_0.DescribeFlowExecutionRecords$)    .build() {} class ListConnectorEntitiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "ListConnectorEntities", {})    .n("AppflowClient", "ListConnectorEntitiesCommand")    .sc(schemas_0.ListConnectorEntities$)    .build() {} class ListConnectorsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "ListConnectors", {})    .n("AppflowClient", "ListConnectorsCommand")    .sc(schemas_0.ListConnectors$)    .build() {} class ListFlowsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "ListFlows", {})    .n("AppflowClient", "ListFlowsCommand")    .sc(schemas_0.ListFlows$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "ListTagsForResource", {})    .n("AppflowClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class RegisterConnectorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "RegisterConnector", {})    .n("AppflowClient", "RegisterConnectorCommand")    .sc(schemas_0.RegisterConnector$)    .build() {} class ResetConnectorMetadataCacheCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "ResetConnectorMetadataCache", {})    .n("AppflowClient", "ResetConnectorMetadataCacheCommand")    .sc(schemas_0.ResetConnectorMetadataCache$)    .build() {} class StartFlowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "StartFlow", {})    .n("AppflowClient", "StartFlowCommand")    .sc(schemas_0.StartFlow$)    .build() {} class StopFlowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "StopFlow", {})    .n("AppflowClient", "StopFlowCommand")    .sc(schemas_0.StopFlow$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "TagResource", {})    .n("AppflowClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class UnregisterConnectorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "UnregisterConnector", {})    .n("AppflowClient", "UnregisterConnectorCommand")    .sc(schemas_0.UnregisterConnector$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "UntagResource", {})    .n("AppflowClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateConnectorProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "UpdateConnectorProfile", {})    .n("AppflowClient", "UpdateConnectorProfileCommand")    .sc(schemas_0.UpdateConnectorProfile$)    .build() {} class UpdateConnectorRegistrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "UpdateConnectorRegistration", {})    .n("AppflowClient", "UpdateConnectorRegistrationCommand")    .sc(schemas_0.UpdateConnectorRegistration$)    .build() {} class UpdateFlowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("SandstoneConfigurationServiceLambda", "UpdateFlow", {})    .n("AppflowClient", "UpdateFlowCommand")    .sc(schemas_0.UpdateFlow$)    .build() {} const paginateDescribeConnectorProfiles = core.createPaginator(AppflowClient, DescribeConnectorProfilesCommand, "nextToken", "nextToken", "maxResults"); const paginateDescribeConnectors = core.createPaginator(AppflowClient, DescribeConnectorsCommand, "nextToken", "nextToken", "maxResults"); const paginateDescribeFlowExecutionRecords = core.createPaginator(AppflowClient, DescribeFlowExecutionRecordsCommand, "nextToken", "nextToken", "maxResults"); const paginateListConnectors = core.createPaginator(AppflowClient, ListConnectorsCommand, "nextToken", "nextToken", "maxResults"); const paginateListFlows = core.createPaginator(AppflowClient, ListFlowsCommand, "nextToken", "nextToken", "maxResults"); const commands = {    CancelFlowExecutionsCommand,    CreateConnectorProfileCommand,    CreateFlowCommand,    DeleteConnectorProfileCommand,    DeleteFlowCommand,    DescribeConnectorCommand,    DescribeConnectorEntityCommand,    DescribeConnectorProfilesCommand,    DescribeConnectorsCommand,    DescribeFlowCommand,    DescribeFlowExecutionRecordsCommand,    ListConnectorEntitiesCommand,    ListConnectorsCommand,    ListFlowsCommand,    ListTagsForResourceCommand,    RegisterConnectorCommand,    ResetConnectorMetadataCacheCommand,    StartFlowCommand,    StopFlowCommand,    TagResourceCommand,    UnregisterConnectorCommand,    UntagResourceCommand,    UpdateConnectorProfileCommand,    UpdateConnectorRegistrationCommand,    UpdateFlowCommand,};const paginators = {    paginateDescribeConnectorProfiles,    paginateDescribeConnectors,    paginateDescribeFlowExecutionRecords,    paginateListConnectors,    paginateListFlows,};class Appflow extends AppflowClient {}client.createAggregatedClient(commands, Appflow, { paginators }); const AggregationType = {    NONE: "None",    SINGLE_FILE: "SingleFile",};const AmplitudeConnectorOperator = {    BETWEEN: "BETWEEN",};const OAuth2CustomPropType = {    AUTH_URL: "AUTH_URL",    TOKEN_URL: "TOKEN_URL",};const OAuth2GrantType = {    AUTHORIZATION_CODE: "AUTHORIZATION_CODE",    CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",    JWT_BEARER: "JWT_BEARER",};const AuthenticationType = {    APIKEY: "APIKEY",    BASIC: "BASIC",    CUSTOM: "CUSTOM",    OAUTH2: "OAUTH2",};const CatalogType = {    GLUE: "GLUE",};const ConnectionMode = {    PRIVATE: "Private",    PUBLIC: "Public",};const SalesforceDataTransferApi = {    AUTOMATIC: "AUTOMATIC",    BULKV2: "BULKV2",    REST_SYNC: "REST_SYNC",};const ConnectorProvisioningType = {    LAMBDA: "LAMBDA",};const ConnectorType = {    AMPLITUDE: "Amplitude",    CUSTOMCONNECTOR: "CustomConnector",    CUSTOMERPROFILES: "CustomerProfiles",    DATADOG: "Datadog",    DYNATRACE: "Dynatrace",    EVENTBRIDGE: "EventBridge",    GOOGLEANALYTICS: "Googleanalytics",    HONEYCODE: "Honeycode",    INFORNEXUS: "Infornexus",    LOOKOUTMETRICS: "LookoutMetrics",    MARKETO: "Marketo",    PARDOT: "Pardot",    REDSHIFT: "Redshift",    S3: "S3",    SALESFORCE: "Salesforce",    SAPODATA: "SAPOData",    SERVICENOW: "Servicenow",    SINGULAR: "Singular",    SLACK: "Slack",    SNOWFLAKE: "Snowflake",    TRENDMICRO: "Trendmicro",    UPSOLVER: "Upsolver",    VEEVA: "Veeva",    ZENDESK: "Zendesk",};const DataTransferApiType = {    ASYNC: "ASYNC",    AUTOMATIC: "AUTOMATIC",    SYNC: "SYNC",};const SupportedDataTransferType = {    FILE: "FILE",    RECORD: "RECORD",};const Operators = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    CONTAINS: "CONTAINS",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NOT_EQUAL_TO: "NOT_EQUAL_TO",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const ScheduleFrequencyType = {    BYMINUTE: "BYMINUTE",    DAILY: "DAILY",    HOURLY: "HOURLY",    MONTHLY: "MONTHLY",    ONCE: "ONCE",    WEEKLY: "WEEKLY",};const TriggerType = {    EVENT: "Event",    ONDEMAND: "OnDemand",    SCHEDULED: "Scheduled",};const WriteOperationType = {    DELETE: "DELETE",    INSERT: "INSERT",    UPDATE: "UPDATE",    UPSERT: "UPSERT",};const Operator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    CONTAINS: "CONTAINS",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NOT_EQUAL_TO: "NOT_EQUAL_TO",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const DatadogConnectorOperator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const DynatraceConnectorOperator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const GoogleAnalyticsConnectorOperator = {    BETWEEN: "BETWEEN",    PROJECTION: "PROJECTION",};const InforNexusConnectorOperator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const MarketoConnectorOperator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    DIVISION: "DIVISION",    GREATER_THAN: "GREATER_THAN",    LESS_THAN: "LESS_THAN",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const PardotConnectorOperator = {    ADDITION: "ADDITION",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const S3ConnectorOperator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NOT_EQUAL_TO: "NOT_EQUAL_TO",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const SalesforceConnectorOperator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    CONTAINS: "CONTAINS",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NOT_EQUAL_TO: "NOT_EQUAL_TO",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const SAPODataConnectorOperator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    CONTAINS: "CONTAINS",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NOT_EQUAL_TO: "NOT_EQUAL_TO",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const ServiceNowConnectorOperator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    CONTAINS: "CONTAINS",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NOT_EQUAL_TO: "NOT_EQUAL_TO",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const SingularConnectorOperator = {    ADDITION: "ADDITION",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const SlackConnectorOperator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const TrendmicroConnectorOperator = {    ADDITION: "ADDITION",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const VeevaConnectorOperator = {    ADDITION: "ADDITION",    BETWEEN: "BETWEEN",    CONTAINS: "CONTAINS",    DIVISION: "DIVISION",    EQUAL_TO: "EQUAL_TO",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NOT_EQUAL_TO: "NOT_EQUAL_TO",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const ZendeskConnectorOperator = {    ADDITION: "ADDITION",    DIVISION: "DIVISION",    GREATER_THAN: "GREATER_THAN",    MASK_ALL: "MASK_ALL",    MASK_FIRST_N: "MASK_FIRST_N",    MASK_LAST_N: "MASK_LAST_N",    MULTIPLICATION: "MULTIPLICATION",    NO_OP: "NO_OP",    PROJECTION: "PROJECTION",    SUBTRACTION: "SUBTRACTION",    VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE",    VALIDATE_NON_NULL: "VALIDATE_NON_NULL",    VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO",    VALIDATE_NUMERIC: "VALIDATE_NUMERIC",};const PrivateConnectionProvisioningFailureCause = {    ACCESS_DENIED: "ACCESS_DENIED",    CONNECTOR_AUTHENTICATION: "CONNECTOR_AUTHENTICATION",    CONNECTOR_SERVER: "CONNECTOR_SERVER",    INTERNAL_SERVER: "INTERNAL_SERVER",    VALIDATION: "VALIDATION",};const PrivateConnectionProvisioningStatus = {    CREATED: "CREATED",    FAILED: "FAILED",    PENDING: "PENDING",};const FileType = {    CSV: "CSV",    JSON: "JSON",    PARQUET: "PARQUET",};const PathPrefix = {    EXECUTION_ID: "EXECUTION_ID",    SCHEMA_VERSION: "SCHEMA_VERSION",};const PrefixFormat = {    DAY: "DAY",    HOUR: "HOUR",    MINUTE: "MINUTE",    MONTH: "MONTH",    YEAR: "YEAR",};const PrefixType = {    FILENAME: "FILENAME",    PATH: "PATH",    PATH_AND_FILENAME: "PATH_AND_FILENAME",};const S3InputFileType = {    CSV: "CSV",    JSON: "JSON",};const OperatorPropertiesKeys = {    CONCAT_FORMAT: "CONCAT_FORMAT",    DATA_TYPE: "DATA_TYPE",    DESTINATION_DATA_TYPE: "DESTINATION_DATA_TYPE",    EXCLUDE_SOURCE_FIELDS_LIST: "EXCLUDE_SOURCE_FIELDS_LIST",    INCLUDE_NEW_FIELDS: "INCLUDE_NEW_FIELDS",    LOWER_BOUND: "LOWER_BOUND",    MASK_LENGTH: "MASK_LENGTH",    MASK_VALUE: "MASK_VALUE",    MATH_OPERATION_FIELDS_ORDER: "MATH_OPERATION_FIELDS_ORDER",    ORDERED_PARTITION_KEYS_LIST: "ORDERED_PARTITION_KEYS_LIST",    SOURCE_DATA_TYPE: "SOURCE_DATA_TYPE",    SUBFIELD_CATEGORY_MAP: "SUBFIELD_CATEGORY_MAP",    TRUNCATE_LENGTH: "TRUNCATE_LENGTH",    UPPER_BOUND: "UPPER_BOUND",    VALIDATION_ACTION: "VALIDATION_ACTION",    VALUE: "VALUE",    VALUES: "VALUES",};const TaskType = {    ARITHMETIC: "Arithmetic",    FILTER: "Filter",    MAP: "Map",    MAP_ALL: "Map_all",    MASK: "Mask",    MERGE: "Merge",    PARTITION: "Partition",    PASSTHROUGH: "Passthrough",    TRUNCATE: "Truncate",    VALIDATE: "Validate",};const DataPullMode = {    COMPLETE: "Complete",    INCREMENTAL: "Incremental",};const FlowStatus = {    ACTIVE: "Active",    DELETED: "Deleted",    DEPRECATED: "Deprecated",    DRAFT: "Draft",    ERRORED: "Errored",    SUSPENDED: "Suspended",};const ExecutionStatus = {    CANCELED: "Canceled",    CANCELSTARTED: "CancelStarted",    ERROR: "Error",    INPROGRESS: "InProgress",    SUCCESSFUL: "Successful",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.AppflowServiceException = AppflowServiceException.AppflowServiceException;exports.AggregationType = AggregationType;exports.AmplitudeConnectorOperator = AmplitudeConnectorOperator;exports.Appflow = Appflow;exports.AppflowClient = AppflowClient;exports.AuthenticationType = AuthenticationType;exports.CancelFlowExecutionsCommand = CancelFlowExecutionsCommand;exports.CatalogType = CatalogType;exports.ConnectionMode = ConnectionMode;exports.ConnectorProvisioningType = ConnectorProvisioningType;exports.ConnectorType = ConnectorType;exports.CreateConnectorProfileCommand = CreateConnectorProfileCommand;exports.CreateFlowCommand = CreateFlowCommand;exports.DataPullMode = DataPullMode;exports.DataTransferApiType = DataTransferApiType;exports.DatadogConnectorOperator = DatadogConnectorOperator;exports.DeleteConnectorProfileCommand = DeleteConnectorProfileCommand;exports.DeleteFlowCommand = DeleteFlowCommand;exports.DescribeConnectorCommand = DescribeConnectorCommand;exports.DescribeConnectorEntityCommand = DescribeConnectorEntityCommand;exports.DescribeConnectorProfilesCommand = DescribeConnectorProfilesCommand;exports.DescribeConnectorsCommand = DescribeConnectorsCommand;exports.DescribeFlowCommand = DescribeFlowCommand;exports.DescribeFlowExecutionRecordsCommand = DescribeFlowExecutionRecordsCommand;exports.DynatraceConnectorOperator = DynatraceConnectorOperator;exports.ExecutionStatus = ExecutionStatus;exports.FileType = FileType;exports.FlowStatus = FlowStatus;exports.GoogleAnalyticsConnectorOperator = GoogleAnalyticsConnectorOperator;exports.InforNexusConnectorOperator = InforNexusConnectorOperator;exports.ListConnectorEntitiesCommand = ListConnectorEntitiesCommand;exports.ListConnectorsCommand = ListConnectorsCommand;exports.ListFlowsCommand = ListFlowsCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.MarketoConnectorOperator = MarketoConnectorOperator;exports.OAuth2CustomPropType = OAuth2CustomPropType;exports.OAuth2GrantType = OAuth2GrantType;exports.Operator = Operator;exports.OperatorPropertiesKeys = OperatorPropertiesKeys;exports.Operators = Operators;exports.PardotConnectorOperator = PardotConnectorOperator;exports.PathPrefix = PathPrefix;exports.PrefixFormat = PrefixFormat;exports.PrefixType = PrefixType;exports.PrivateConnectionProvisioningFailureCause = PrivateConnectionProvisioningFailureCause;exports.PrivateConnectionProvisioningStatus = PrivateConnectionProvisioningStatus;exports.RegisterConnectorCommand = RegisterConnectorCommand;exports.ResetConnectorMetadataCacheCommand = ResetConnectorMetadataCacheCommand;exports.S3ConnectorOperator = S3ConnectorOperator;exports.S3InputFileType = S3InputFileType;exports.SAPODataConnectorOperator = SAPODataConnectorOperator;exports.SalesforceConnectorOperator = SalesforceConnectorOperator;exports.SalesforceDataTransferApi = SalesforceDataTransferApi;exports.ScheduleFrequencyType = ScheduleFrequencyType;exports.ServiceNowConnectorOperator = ServiceNowConnectorOperator;exports.SingularConnectorOperator = SingularConnectorOperator;exports.SlackConnectorOperator = SlackConnectorOperator;exports.StartFlowCommand = StartFlowCommand;exports.StopFlowCommand = StopFlowCommand;exports.SupportedDataTransferType = SupportedDataTransferType;exports.TagResourceCommand = TagResourceCommand;exports.TaskType = TaskType;exports.TrendmicroConnectorOperator = TrendmicroConnectorOperator;exports.TriggerType = TriggerType;exports.UnregisterConnectorCommand = UnregisterConnectorCommand;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateConnectorProfileCommand = UpdateConnectorProfileCommand;exports.UpdateConnectorRegistrationCommand = UpdateConnectorRegistrationCommand;exports.UpdateFlowCommand = UpdateFlowCommand;exports.VeevaConnectorOperator = VeevaConnectorOperator;exports.WriteOperationType = WriteOperationType;exports.ZendeskConnectorOperator = ZendeskConnectorOperator;exports.paginateDescribeConnectorProfiles = paginateDescribeConnectorProfiles;exports.paginateDescribeConnectors = paginateDescribeConnectors;exports.paginateDescribeFlowExecutionRecords = paginateDescribeFlowExecutionRecords;exports.paginateListConnectors = paginateListConnectors;exports.paginateListFlows = paginateListFlows;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];});