File Explorer

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

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

index.js26.7 KB · 694 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 SupplyChainServiceException = require('./models/SupplyChainServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "scn",    });};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 SupplyChainClient 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.defaultSupplyChainHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CreateBillOfMaterialsImportJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "CreateBillOfMaterialsImportJob", {})    .n("SupplyChainClient", "CreateBillOfMaterialsImportJobCommand")    .sc(schemas_0.CreateBillOfMaterialsImportJob$)    .build() {} class CreateDataIntegrationFlowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "CreateDataIntegrationFlow", {})    .n("SupplyChainClient", "CreateDataIntegrationFlowCommand")    .sc(schemas_0.CreateDataIntegrationFlow$)    .build() {} class CreateDataLakeDatasetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "CreateDataLakeDataset", {})    .n("SupplyChainClient", "CreateDataLakeDatasetCommand")    .sc(schemas_0.CreateDataLakeDataset$)    .build() {} class CreateDataLakeNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "CreateDataLakeNamespace", {})    .n("SupplyChainClient", "CreateDataLakeNamespaceCommand")    .sc(schemas_0.CreateDataLakeNamespace$)    .build() {} class CreateInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "CreateInstance", {})    .n("SupplyChainClient", "CreateInstanceCommand")    .sc(schemas_0.CreateInstance$)    .build() {} class DeleteDataIntegrationFlowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "DeleteDataIntegrationFlow", {})    .n("SupplyChainClient", "DeleteDataIntegrationFlowCommand")    .sc(schemas_0.DeleteDataIntegrationFlow$)    .build() {} class DeleteDataLakeDatasetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "DeleteDataLakeDataset", {})    .n("SupplyChainClient", "DeleteDataLakeDatasetCommand")    .sc(schemas_0.DeleteDataLakeDataset$)    .build() {} class DeleteDataLakeNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "DeleteDataLakeNamespace", {})    .n("SupplyChainClient", "DeleteDataLakeNamespaceCommand")    .sc(schemas_0.DeleteDataLakeNamespace$)    .build() {} class DeleteInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "DeleteInstance", {})    .n("SupplyChainClient", "DeleteInstanceCommand")    .sc(schemas_0.DeleteInstance$)    .build() {} class GetBillOfMaterialsImportJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "GetBillOfMaterialsImportJob", {})    .n("SupplyChainClient", "GetBillOfMaterialsImportJobCommand")    .sc(schemas_0.GetBillOfMaterialsImportJob$)    .build() {} class GetDataIntegrationEventCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "GetDataIntegrationEvent", {})    .n("SupplyChainClient", "GetDataIntegrationEventCommand")    .sc(schemas_0.GetDataIntegrationEvent$)    .build() {} class GetDataIntegrationFlowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "GetDataIntegrationFlow", {})    .n("SupplyChainClient", "GetDataIntegrationFlowCommand")    .sc(schemas_0.GetDataIntegrationFlow$)    .build() {} class GetDataIntegrationFlowExecutionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "GetDataIntegrationFlowExecution", {})    .n("SupplyChainClient", "GetDataIntegrationFlowExecutionCommand")    .sc(schemas_0.GetDataIntegrationFlowExecution$)    .build() {} class GetDataLakeDatasetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "GetDataLakeDataset", {})    .n("SupplyChainClient", "GetDataLakeDatasetCommand")    .sc(schemas_0.GetDataLakeDataset$)    .build() {} class GetDataLakeNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "GetDataLakeNamespace", {})    .n("SupplyChainClient", "GetDataLakeNamespaceCommand")    .sc(schemas_0.GetDataLakeNamespace$)    .build() {} class GetInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "GetInstance", {})    .n("SupplyChainClient", "GetInstanceCommand")    .sc(schemas_0.GetInstance$)    .build() {} class ListDataIntegrationEventsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "ListDataIntegrationEvents", {})    .n("SupplyChainClient", "ListDataIntegrationEventsCommand")    .sc(schemas_0.ListDataIntegrationEvents$)    .build() {} class ListDataIntegrationFlowExecutionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "ListDataIntegrationFlowExecutions", {})    .n("SupplyChainClient", "ListDataIntegrationFlowExecutionsCommand")    .sc(schemas_0.ListDataIntegrationFlowExecutions$)    .build() {} class ListDataIntegrationFlowsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "ListDataIntegrationFlows", {})    .n("SupplyChainClient", "ListDataIntegrationFlowsCommand")    .sc(schemas_0.ListDataIntegrationFlows$)    .build() {} class ListDataLakeDatasetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "ListDataLakeDatasets", {})    .n("SupplyChainClient", "ListDataLakeDatasetsCommand")    .sc(schemas_0.ListDataLakeDatasets$)    .build() {} class ListDataLakeNamespacesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "ListDataLakeNamespaces", {})    .n("SupplyChainClient", "ListDataLakeNamespacesCommand")    .sc(schemas_0.ListDataLakeNamespaces$)    .build() {} class ListInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "ListInstances", {})    .n("SupplyChainClient", "ListInstancesCommand")    .sc(schemas_0.ListInstances$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "ListTagsForResource", {})    .n("SupplyChainClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class SendDataIntegrationEventCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "SendDataIntegrationEvent", {})    .n("SupplyChainClient", "SendDataIntegrationEventCommand")    .sc(schemas_0.SendDataIntegrationEvent$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "TagResource", {})    .n("SupplyChainClient", "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("GalaxyPublicAPIGateway", "UntagResource", {})    .n("SupplyChainClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateDataIntegrationFlowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "UpdateDataIntegrationFlow", {})    .n("SupplyChainClient", "UpdateDataIntegrationFlowCommand")    .sc(schemas_0.UpdateDataIntegrationFlow$)    .build() {} class UpdateDataLakeDatasetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "UpdateDataLakeDataset", {})    .n("SupplyChainClient", "UpdateDataLakeDatasetCommand")    .sc(schemas_0.UpdateDataLakeDataset$)    .build() {} class UpdateDataLakeNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "UpdateDataLakeNamespace", {})    .n("SupplyChainClient", "UpdateDataLakeNamespaceCommand")    .sc(schemas_0.UpdateDataLakeNamespace$)    .build() {} class UpdateInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("GalaxyPublicAPIGateway", "UpdateInstance", {})    .n("SupplyChainClient", "UpdateInstanceCommand")    .sc(schemas_0.UpdateInstance$)    .build() {} const paginateListDataIntegrationEvents = core.createPaginator(SupplyChainClient, ListDataIntegrationEventsCommand, "nextToken", "nextToken", "maxResults"); const paginateListDataIntegrationFlowExecutions = core.createPaginator(SupplyChainClient, ListDataIntegrationFlowExecutionsCommand, "nextToken", "nextToken", "maxResults"); const paginateListDataIntegrationFlows = core.createPaginator(SupplyChainClient, ListDataIntegrationFlowsCommand, "nextToken", "nextToken", "maxResults"); const paginateListDataLakeDatasets = core.createPaginator(SupplyChainClient, ListDataLakeDatasetsCommand, "nextToken", "nextToken", "maxResults"); const paginateListDataLakeNamespaces = core.createPaginator(SupplyChainClient, ListDataLakeNamespacesCommand, "nextToken", "nextToken", "maxResults"); const paginateListInstances = core.createPaginator(SupplyChainClient, ListInstancesCommand, "nextToken", "nextToken", "maxResults"); const commands = {    CreateBillOfMaterialsImportJobCommand,    CreateDataIntegrationFlowCommand,    CreateDataLakeDatasetCommand,    CreateDataLakeNamespaceCommand,    CreateInstanceCommand,    DeleteDataIntegrationFlowCommand,    DeleteDataLakeDatasetCommand,    DeleteDataLakeNamespaceCommand,    DeleteInstanceCommand,    GetBillOfMaterialsImportJobCommand,    GetDataIntegrationEventCommand,    GetDataIntegrationFlowCommand,    GetDataIntegrationFlowExecutionCommand,    GetDataLakeDatasetCommand,    GetDataLakeNamespaceCommand,    GetInstanceCommand,    ListDataIntegrationEventsCommand,    ListDataIntegrationFlowExecutionsCommand,    ListDataIntegrationFlowsCommand,    ListDataLakeDatasetsCommand,    ListDataLakeNamespacesCommand,    ListInstancesCommand,    ListTagsForResourceCommand,    SendDataIntegrationEventCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateDataIntegrationFlowCommand,    UpdateDataLakeDatasetCommand,    UpdateDataLakeNamespaceCommand,    UpdateInstanceCommand,};const paginators = {    paginateListDataIntegrationEvents,    paginateListDataIntegrationFlowExecutions,    paginateListDataIntegrationFlows,    paginateListDataLakeDatasets,    paginateListDataLakeNamespaces,    paginateListInstances,};class SupplyChain extends SupplyChainClient {}client.createAggregatedClient(commands, SupplyChain, { paginators }); const ConfigurationJobStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    NEW: "NEW",    QUEUED: "QUEUED",    SUCCESS: "SUCCESS",};const DataIntegrationFlowFieldPriorityDedupeSortOrder = {    ASC: "ASC",    DESC: "DESC",};const DataIntegrationFlowDedupeStrategyType = {    FIELD_PRIORITY: "FIELD_PRIORITY",};const DataIntegrationFlowLoadType = {    INCREMENTAL: "INCREMENTAL",    REPLACE: "REPLACE",};const DataIntegrationFlowFileType = {    CSV: "CSV",    JSON: "JSON",    PARQUET: "PARQUET",};const DataIntegrationFlowSourceType = {    DATASET: "DATASET",    S3: "S3",};const DataIntegrationFlowTargetType = {    DATASET: "DATASET",    S3: "S3",};const DataIntegrationFlowTransformationType = {    NONE: "NONE",    SQL: "SQL",};const DataLakeDatasetPartitionTransformType = {    DAY: "DAY",    HOUR: "HOUR",    IDENTITY: "IDENTITY",    MONTH: "MONTH",    YEAR: "YEAR",};const DataLakeDatasetSchemaFieldType = {    DOUBLE: "DOUBLE",    INT: "INT",    LONG: "LONG",    STRING: "STRING",    TIMESTAMP: "TIMESTAMP",};const InstanceState = {    ACTIVE: "Active",    CREATE_FAILED: "CreateFailed",    DELETED: "Deleted",    DELETE_FAILED: "DeleteFailed",    DELETING: "Deleting",    INITIALIZING: "Initializing",};const DataIntegrationEventDatasetLoadStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    SUCCEEDED: "SUCCEEDED",};const DataIntegrationEventDatasetOperationType = {    APPEND: "APPEND",    DELETE: "DELETE",    UPSERT: "UPSERT",};const DataIntegrationEventType = {    DATASET: "scn.data.dataset",    FORECAST: "scn.data.forecast",    INBOUND_ORDER: "scn.data.inboundorder",    INBOUND_ORDER_LINE: "scn.data.inboundorderline",    INBOUND_ORDER_LINE_SCHEDULE: "scn.data.inboundorderlineschedule",    INVENTORY_LEVEL: "scn.data.inventorylevel",    OUTBOUND_ORDER_LINE: "scn.data.outboundorderline",    OUTBOUND_SHIPMENT: "scn.data.outboundshipment",    PROCESS_HEADER: "scn.data.processheader",    PROCESS_OPERATION: "scn.data.processoperation",    PROCESS_PRODUCT: "scn.data.processproduct",    RESERVATION: "scn.data.reservation",    SHIPMENT: "scn.data.shipment",    SHIPMENT_STOP: "scn.data.shipmentstop",    SHIPMENT_STOP_ORDER: "scn.data.shipmentstoporder",    SUPPLY_PLAN: "scn.data.supplyplan",};const DataIntegrationFlowExecutionStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    SUCCEEDED: "SUCCEEDED",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.SupplyChainServiceException = SupplyChainServiceException.SupplyChainServiceException;exports.ConfigurationJobStatus = ConfigurationJobStatus;exports.CreateBillOfMaterialsImportJobCommand = CreateBillOfMaterialsImportJobCommand;exports.CreateDataIntegrationFlowCommand = CreateDataIntegrationFlowCommand;exports.CreateDataLakeDatasetCommand = CreateDataLakeDatasetCommand;exports.CreateDataLakeNamespaceCommand = CreateDataLakeNamespaceCommand;exports.CreateInstanceCommand = CreateInstanceCommand;exports.DataIntegrationEventDatasetLoadStatus = DataIntegrationEventDatasetLoadStatus;exports.DataIntegrationEventDatasetOperationType = DataIntegrationEventDatasetOperationType;exports.DataIntegrationEventType = DataIntegrationEventType;exports.DataIntegrationFlowDedupeStrategyType = DataIntegrationFlowDedupeStrategyType;exports.DataIntegrationFlowExecutionStatus = DataIntegrationFlowExecutionStatus;exports.DataIntegrationFlowFieldPriorityDedupeSortOrder = DataIntegrationFlowFieldPriorityDedupeSortOrder;exports.DataIntegrationFlowFileType = DataIntegrationFlowFileType;exports.DataIntegrationFlowLoadType = DataIntegrationFlowLoadType;exports.DataIntegrationFlowSourceType = DataIntegrationFlowSourceType;exports.DataIntegrationFlowTargetType = DataIntegrationFlowTargetType;exports.DataIntegrationFlowTransformationType = DataIntegrationFlowTransformationType;exports.DataLakeDatasetPartitionTransformType = DataLakeDatasetPartitionTransformType;exports.DataLakeDatasetSchemaFieldType = DataLakeDatasetSchemaFieldType;exports.DeleteDataIntegrationFlowCommand = DeleteDataIntegrationFlowCommand;exports.DeleteDataLakeDatasetCommand = DeleteDataLakeDatasetCommand;exports.DeleteDataLakeNamespaceCommand = DeleteDataLakeNamespaceCommand;exports.DeleteInstanceCommand = DeleteInstanceCommand;exports.GetBillOfMaterialsImportJobCommand = GetBillOfMaterialsImportJobCommand;exports.GetDataIntegrationEventCommand = GetDataIntegrationEventCommand;exports.GetDataIntegrationFlowCommand = GetDataIntegrationFlowCommand;exports.GetDataIntegrationFlowExecutionCommand = GetDataIntegrationFlowExecutionCommand;exports.GetDataLakeDatasetCommand = GetDataLakeDatasetCommand;exports.GetDataLakeNamespaceCommand = GetDataLakeNamespaceCommand;exports.GetInstanceCommand = GetInstanceCommand;exports.InstanceState = InstanceState;exports.ListDataIntegrationEventsCommand = ListDataIntegrationEventsCommand;exports.ListDataIntegrationFlowExecutionsCommand = ListDataIntegrationFlowExecutionsCommand;exports.ListDataIntegrationFlowsCommand = ListDataIntegrationFlowsCommand;exports.ListDataLakeDatasetsCommand = ListDataLakeDatasetsCommand;exports.ListDataLakeNamespacesCommand = ListDataLakeNamespacesCommand;exports.ListInstancesCommand = ListInstancesCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.SendDataIntegrationEventCommand = SendDataIntegrationEventCommand;exports.SupplyChain = SupplyChain;exports.SupplyChainClient = SupplyChainClient;exports.TagResourceCommand = TagResourceCommand;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateDataIntegrationFlowCommand = UpdateDataIntegrationFlowCommand;exports.UpdateDataLakeDatasetCommand = UpdateDataLakeDatasetCommand;exports.UpdateDataLakeNamespaceCommand = UpdateDataLakeNamespaceCommand;exports.UpdateInstanceCommand = UpdateInstanceCommand;exports.paginateListDataIntegrationEvents = paginateListDataIntegrationEvents;exports.paginateListDataIntegrationFlowExecutions = paginateListDataIntegrationFlowExecutions;exports.paginateListDataIntegrationFlows = paginateListDataIntegrationFlows;exports.paginateListDataLakeDatasets = paginateListDataLakeDatasets;exports.paginateListDataLakeNamespaces = paginateListDataLakeNamespaces;exports.paginateListInstances = paginateListInstances;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];});