File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-databrew/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.js30.8 KB · 920 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 DataBrewServiceException = require('./models/DataBrewServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "databrew",    });};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 DataBrewClient 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.getOmitRetryHeadersPlugin(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.defaultDataBrewHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class BatchDeleteRecipeVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "BatchDeleteRecipeVersion", {})    .n("DataBrewClient", "BatchDeleteRecipeVersionCommand")    .sc(schemas_0.BatchDeleteRecipeVersion$)    .build() {} class CreateDatasetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "CreateDataset", {})    .n("DataBrewClient", "CreateDatasetCommand")    .sc(schemas_0.CreateDataset$)    .build() {} class CreateProfileJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "CreateProfileJob", {})    .n("DataBrewClient", "CreateProfileJobCommand")    .sc(schemas_0.CreateProfileJob$)    .build() {} class CreateProjectCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "CreateProject", {})    .n("DataBrewClient", "CreateProjectCommand")    .sc(schemas_0.CreateProject$)    .build() {} class CreateRecipeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "CreateRecipe", {})    .n("DataBrewClient", "CreateRecipeCommand")    .sc(schemas_0.CreateRecipe$)    .build() {} class CreateRecipeJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "CreateRecipeJob", {})    .n("DataBrewClient", "CreateRecipeJobCommand")    .sc(schemas_0.CreateRecipeJob$)    .build() {} class CreateRulesetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "CreateRuleset", {})    .n("DataBrewClient", "CreateRulesetCommand")    .sc(schemas_0.CreateRuleset$)    .build() {} class CreateScheduleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "CreateSchedule", {})    .n("DataBrewClient", "CreateScheduleCommand")    .sc(schemas_0.CreateSchedule$)    .build() {} class DeleteDatasetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DeleteDataset", {})    .n("DataBrewClient", "DeleteDatasetCommand")    .sc(schemas_0.DeleteDataset$)    .build() {} class DeleteJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DeleteJob", {})    .n("DataBrewClient", "DeleteJobCommand")    .sc(schemas_0.DeleteJob$)    .build() {} class DeleteProjectCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DeleteProject", {})    .n("DataBrewClient", "DeleteProjectCommand")    .sc(schemas_0.DeleteProject$)    .build() {} class DeleteRecipeVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DeleteRecipeVersion", {})    .n("DataBrewClient", "DeleteRecipeVersionCommand")    .sc(schemas_0.DeleteRecipeVersion$)    .build() {} class DeleteRulesetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DeleteRuleset", {})    .n("DataBrewClient", "DeleteRulesetCommand")    .sc(schemas_0.DeleteRuleset$)    .build() {} class DeleteScheduleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DeleteSchedule", {})    .n("DataBrewClient", "DeleteScheduleCommand")    .sc(schemas_0.DeleteSchedule$)    .build() {} class DescribeDatasetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DescribeDataset", {})    .n("DataBrewClient", "DescribeDatasetCommand")    .sc(schemas_0.DescribeDataset$)    .build() {} class DescribeJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DescribeJob", {})    .n("DataBrewClient", "DescribeJobCommand")    .sc(schemas_0.DescribeJob$)    .build() {} class DescribeJobRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DescribeJobRun", {})    .n("DataBrewClient", "DescribeJobRunCommand")    .sc(schemas_0.DescribeJobRun$)    .build() {} class DescribeProjectCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DescribeProject", {})    .n("DataBrewClient", "DescribeProjectCommand")    .sc(schemas_0.DescribeProject$)    .build() {} class DescribeRecipeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DescribeRecipe", {})    .n("DataBrewClient", "DescribeRecipeCommand")    .sc(schemas_0.DescribeRecipe$)    .build() {} class DescribeRulesetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DescribeRuleset", {})    .n("DataBrewClient", "DescribeRulesetCommand")    .sc(schemas_0.DescribeRuleset$)    .build() {} class DescribeScheduleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "DescribeSchedule", {})    .n("DataBrewClient", "DescribeScheduleCommand")    .sc(schemas_0.DescribeSchedule$)    .build() {} class ListDatasetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "ListDatasets", {})    .n("DataBrewClient", "ListDatasetsCommand")    .sc(schemas_0.ListDatasets$)    .build() {} class ListJobRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "ListJobRuns", {})    .n("DataBrewClient", "ListJobRunsCommand")    .sc(schemas_0.ListJobRuns$)    .build() {} class ListJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "ListJobs", {})    .n("DataBrewClient", "ListJobsCommand")    .sc(schemas_0.ListJobs$)    .build() {} class ListProjectsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "ListProjects", {})    .n("DataBrewClient", "ListProjectsCommand")    .sc(schemas_0.ListProjects$)    .build() {} class ListRecipesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "ListRecipes", {})    .n("DataBrewClient", "ListRecipesCommand")    .sc(schemas_0.ListRecipes$)    .build() {} class ListRecipeVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "ListRecipeVersions", {})    .n("DataBrewClient", "ListRecipeVersionsCommand")    .sc(schemas_0.ListRecipeVersions$)    .build() {} class ListRulesetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "ListRulesets", {})    .n("DataBrewClient", "ListRulesetsCommand")    .sc(schemas_0.ListRulesets$)    .build() {} class ListSchedulesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "ListSchedules", {})    .n("DataBrewClient", "ListSchedulesCommand")    .sc(schemas_0.ListSchedules$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "ListTagsForResource", {})    .n("DataBrewClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class PublishRecipeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "PublishRecipe", {})    .n("DataBrewClient", "PublishRecipeCommand")    .sc(schemas_0.PublishRecipe$)    .build() {} class SendProjectSessionActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "SendProjectSessionAction", {})    .n("DataBrewClient", "SendProjectSessionActionCommand")    .sc(schemas_0.SendProjectSessionAction$)    .build() {} class StartJobRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "StartJobRun", {})    .n("DataBrewClient", "StartJobRunCommand")    .sc(schemas_0.StartJobRun$)    .build() {} class StartProjectSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "StartProjectSession", {})    .n("DataBrewClient", "StartProjectSessionCommand")    .sc(schemas_0.StartProjectSession$)    .build() {} class StopJobRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "StopJobRun", {})    .n("DataBrewClient", "StopJobRunCommand")    .sc(schemas_0.StopJobRun$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "TagResource", {})    .n("DataBrewClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "UntagResource", {})    .n("DataBrewClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateDatasetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "UpdateDataset", {})    .n("DataBrewClient", "UpdateDatasetCommand")    .sc(schemas_0.UpdateDataset$)    .build() {} class UpdateProfileJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "UpdateProfileJob", {})    .n("DataBrewClient", "UpdateProfileJobCommand")    .sc(schemas_0.UpdateProfileJob$)    .build() {} class UpdateProjectCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "UpdateProject", {})    .n("DataBrewClient", "UpdateProjectCommand")    .sc(schemas_0.UpdateProject$)    .build() {} class UpdateRecipeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "UpdateRecipe", {})    .n("DataBrewClient", "UpdateRecipeCommand")    .sc(schemas_0.UpdateRecipe$)    .build() {} class UpdateRecipeJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "UpdateRecipeJob", {})    .n("DataBrewClient", "UpdateRecipeJobCommand")    .sc(schemas_0.UpdateRecipeJob$)    .build() {} class UpdateRulesetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "UpdateRuleset", {})    .n("DataBrewClient", "UpdateRulesetCommand")    .sc(schemas_0.UpdateRuleset$)    .build() {} class UpdateScheduleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlueDataBrew", "UpdateSchedule", {})    .n("DataBrewClient", "UpdateScheduleCommand")    .sc(schemas_0.UpdateSchedule$)    .build() {} const paginateListDatasets = core.createPaginator(DataBrewClient, ListDatasetsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListJobRuns = core.createPaginator(DataBrewClient, ListJobRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListJobs = core.createPaginator(DataBrewClient, ListJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListProjects = core.createPaginator(DataBrewClient, ListProjectsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRecipes = core.createPaginator(DataBrewClient, ListRecipesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRecipeVersions = core.createPaginator(DataBrewClient, ListRecipeVersionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRulesets = core.createPaginator(DataBrewClient, ListRulesetsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListSchedules = core.createPaginator(DataBrewClient, ListSchedulesCommand, "NextToken", "NextToken", "MaxResults"); const commands = {    BatchDeleteRecipeVersionCommand,    CreateDatasetCommand,    CreateProfileJobCommand,    CreateProjectCommand,    CreateRecipeCommand,    CreateRecipeJobCommand,    CreateRulesetCommand,    CreateScheduleCommand,    DeleteDatasetCommand,    DeleteJobCommand,    DeleteProjectCommand,    DeleteRecipeVersionCommand,    DeleteRulesetCommand,    DeleteScheduleCommand,    DescribeDatasetCommand,    DescribeJobCommand,    DescribeJobRunCommand,    DescribeProjectCommand,    DescribeRecipeCommand,    DescribeRulesetCommand,    DescribeScheduleCommand,    ListDatasetsCommand,    ListJobRunsCommand,    ListJobsCommand,    ListProjectsCommand,    ListRecipesCommand,    ListRecipeVersionsCommand,    ListRulesetsCommand,    ListSchedulesCommand,    ListTagsForResourceCommand,    PublishRecipeCommand,    SendProjectSessionActionCommand,    StartJobRunCommand,    StartProjectSessionCommand,    StopJobRunCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateDatasetCommand,    UpdateProfileJobCommand,    UpdateProjectCommand,    UpdateRecipeCommand,    UpdateRecipeJobCommand,    UpdateRulesetCommand,    UpdateScheduleCommand,};const paginators = {    paginateListDatasets,    paginateListJobRuns,    paginateListJobs,    paginateListProjects,    paginateListRecipes,    paginateListRecipeVersions,    paginateListRulesets,    paginateListSchedules,};class DataBrew extends DataBrewClient {}client.createAggregatedClient(commands, DataBrew, { paginators }); const AnalyticsMode = {    DISABLE: "DISABLE",    ENABLE: "ENABLE",};const InputFormat = {    CSV: "CSV",    EXCEL: "EXCEL",    JSON: "JSON",    ORC: "ORC",    PARQUET: "PARQUET",};const Order = {    ASCENDING: "ASCENDING",    DESCENDING: "DESCENDING",};const OrderedBy = {    LAST_MODIFIED_DATE: "LAST_MODIFIED_DATE",};const ParameterType = {    Datetime: "Datetime",    Number: "Number",    String: "String",};const EncryptionMode = {    SSEKMS: "SSE-KMS",    SSES3: "SSE-S3",};const SampleMode = {    CUSTOM_ROWS: "CUSTOM_ROWS",    FULL_DATASET: "FULL_DATASET",};const LogSubscription = {    DISABLE: "DISABLE",    ENABLE: "ENABLE",};const ValidationMode = {    CHECK_ALL: "CHECK_ALL",};const SampleType = {    FIRST_N: "FIRST_N",    LAST_N: "LAST_N",    RANDOM: "RANDOM",};const DatabaseOutputMode = {    NEW_TABLE: "NEW_TABLE",};const CompressionFormat = {    BROTLI: "BROTLI",    BZIP2: "BZIP2",    DEFLATE: "DEFLATE",    GZIP: "GZIP",    LZ4: "LZ4",    LZO: "LZO",    SNAPPY: "SNAPPY",    ZLIB: "ZLIB",    ZSTD: "ZSTD",};const OutputFormat = {    AVRO: "AVRO",    CSV: "CSV",    GLUEPARQUET: "GLUEPARQUET",    JSON: "JSON",    ORC: "ORC",    PARQUET: "PARQUET",    TABLEAUHYPER: "TABLEAUHYPER",    XML: "XML",};const ThresholdType = {    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL",};const ThresholdUnit = {    COUNT: "COUNT",    PERCENTAGE: "PERCENTAGE",};const Source = {    DATABASE: "DATABASE",    DATACATALOG: "DATA-CATALOG",    S3: "S3",};const JobType = {    PROFILE: "PROFILE",    RECIPE: "RECIPE",};const JobRunState = {    FAILED: "FAILED",    RUNNING: "RUNNING",    STARTING: "STARTING",    STOPPED: "STOPPED",    STOPPING: "STOPPING",    SUCCEEDED: "SUCCEEDED",    TIMEOUT: "TIMEOUT",};const SessionStatus = {    ASSIGNED: "ASSIGNED",    FAILED: "FAILED",    INITIALIZING: "INITIALIZING",    PROVISIONING: "PROVISIONING",    READY: "READY",    RECYCLING: "RECYCLING",    ROTATING: "ROTATING",    TERMINATED: "TERMINATED",    TERMINATING: "TERMINATING",    UPDATING: "UPDATING",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.DataBrewServiceException = DataBrewServiceException.DataBrewServiceException;exports.AnalyticsMode = AnalyticsMode;exports.BatchDeleteRecipeVersionCommand = BatchDeleteRecipeVersionCommand;exports.CompressionFormat = CompressionFormat;exports.CreateDatasetCommand = CreateDatasetCommand;exports.CreateProfileJobCommand = CreateProfileJobCommand;exports.CreateProjectCommand = CreateProjectCommand;exports.CreateRecipeCommand = CreateRecipeCommand;exports.CreateRecipeJobCommand = CreateRecipeJobCommand;exports.CreateRulesetCommand = CreateRulesetCommand;exports.CreateScheduleCommand = CreateScheduleCommand;exports.DataBrew = DataBrew;exports.DataBrewClient = DataBrewClient;exports.DatabaseOutputMode = DatabaseOutputMode;exports.DeleteDatasetCommand = DeleteDatasetCommand;exports.DeleteJobCommand = DeleteJobCommand;exports.DeleteProjectCommand = DeleteProjectCommand;exports.DeleteRecipeVersionCommand = DeleteRecipeVersionCommand;exports.DeleteRulesetCommand = DeleteRulesetCommand;exports.DeleteScheduleCommand = DeleteScheduleCommand;exports.DescribeDatasetCommand = DescribeDatasetCommand;exports.DescribeJobCommand = DescribeJobCommand;exports.DescribeJobRunCommand = DescribeJobRunCommand;exports.DescribeProjectCommand = DescribeProjectCommand;exports.DescribeRecipeCommand = DescribeRecipeCommand;exports.DescribeRulesetCommand = DescribeRulesetCommand;exports.DescribeScheduleCommand = DescribeScheduleCommand;exports.EncryptionMode = EncryptionMode;exports.InputFormat = InputFormat;exports.JobRunState = JobRunState;exports.JobType = JobType;exports.ListDatasetsCommand = ListDatasetsCommand;exports.ListJobRunsCommand = ListJobRunsCommand;exports.ListJobsCommand = ListJobsCommand;exports.ListProjectsCommand = ListProjectsCommand;exports.ListRecipeVersionsCommand = ListRecipeVersionsCommand;exports.ListRecipesCommand = ListRecipesCommand;exports.ListRulesetsCommand = ListRulesetsCommand;exports.ListSchedulesCommand = ListSchedulesCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.LogSubscription = LogSubscription;exports.Order = Order;exports.OrderedBy = OrderedBy;exports.OutputFormat = OutputFormat;exports.ParameterType = ParameterType;exports.PublishRecipeCommand = PublishRecipeCommand;exports.SampleMode = SampleMode;exports.SampleType = SampleType;exports.SendProjectSessionActionCommand = SendProjectSessionActionCommand;exports.SessionStatus = SessionStatus;exports.Source = Source;exports.StartJobRunCommand = StartJobRunCommand;exports.StartProjectSessionCommand = StartProjectSessionCommand;exports.StopJobRunCommand = StopJobRunCommand;exports.TagResourceCommand = TagResourceCommand;exports.ThresholdType = ThresholdType;exports.ThresholdUnit = ThresholdUnit;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateDatasetCommand = UpdateDatasetCommand;exports.UpdateProfileJobCommand = UpdateProfileJobCommand;exports.UpdateProjectCommand = UpdateProjectCommand;exports.UpdateRecipeCommand = UpdateRecipeCommand;exports.UpdateRecipeJobCommand = UpdateRecipeJobCommand;exports.UpdateRulesetCommand = UpdateRulesetCommand;exports.UpdateScheduleCommand = UpdateScheduleCommand;exports.ValidationMode = ValidationMode;exports.paginateListDatasets = paginateListDatasets;exports.paginateListJobRuns = paginateListJobRuns;exports.paginateListJobs = paginateListJobs;exports.paginateListProjects = paginateListProjects;exports.paginateListRecipeVersions = paginateListRecipeVersions;exports.paginateListRecipes = paginateListRecipes;exports.paginateListRulesets = paginateListRulesets;exports.paginateListSchedules = paginateListSchedules;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];});