File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-outposts/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.js33.3 KB · 954 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 OutpostsServiceException = require('./models/OutpostsServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "outposts",    });};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 OutpostsClient 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.defaultOutpostsHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CancelCapacityTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "CancelCapacityTask", {})    .n("OutpostsClient", "CancelCapacityTaskCommand")    .sc(schemas_0.CancelCapacityTask$)    .build() {} class CancelOrderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "CancelOrder", {})    .n("OutpostsClient", "CancelOrderCommand")    .sc(schemas_0.CancelOrder$)    .build() {} class CreateOrderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "CreateOrder", {})    .n("OutpostsClient", "CreateOrderCommand")    .sc(schemas_0.CreateOrder$)    .build() {} class CreateOutpostCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "CreateOutpost", {})    .n("OutpostsClient", "CreateOutpostCommand")    .sc(schemas_0.CreateOutpost$)    .build() {} class CreateRenewalCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "CreateRenewal", {})    .n("OutpostsClient", "CreateRenewalCommand")    .sc(schemas_0.CreateRenewal$)    .build() {} class CreateSiteCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "CreateSite", {})    .n("OutpostsClient", "CreateSiteCommand")    .sc(schemas_0.CreateSite$)    .build() {} class DeleteOutpostCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "DeleteOutpost", {})    .n("OutpostsClient", "DeleteOutpostCommand")    .sc(schemas_0.DeleteOutpost$)    .build() {} class DeleteSiteCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "DeleteSite", {})    .n("OutpostsClient", "DeleteSiteCommand")    .sc(schemas_0.DeleteSite$)    .build() {} class GetCapacityTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetCapacityTask", {})    .n("OutpostsClient", "GetCapacityTaskCommand")    .sc(schemas_0.GetCapacityTask$)    .build() {} class GetCatalogItemCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetCatalogItem", {})    .n("OutpostsClient", "GetCatalogItemCommand")    .sc(schemas_0.GetCatalogItem$)    .build() {} class GetConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetConnection", {})    .n("OutpostsClient", "GetConnectionCommand")    .sc(schemas_0.GetConnection$)    .build() {} class GetOrderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetOrder", {})    .n("OutpostsClient", "GetOrderCommand")    .sc(schemas_0.GetOrder$)    .build() {} class GetOutpostBillingInformationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetOutpostBillingInformation", {})    .n("OutpostsClient", "GetOutpostBillingInformationCommand")    .sc(schemas_0.GetOutpostBillingInformation$)    .build() {} class GetOutpostCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetOutpost", {})    .n("OutpostsClient", "GetOutpostCommand")    .sc(schemas_0.GetOutpost$)    .build() {} class GetOutpostInstanceTypesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetOutpostInstanceTypes", {})    .n("OutpostsClient", "GetOutpostInstanceTypesCommand")    .sc(schemas_0.GetOutpostInstanceTypes$)    .build() {} class GetOutpostSupportedInstanceTypesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetOutpostSupportedInstanceTypes", {})    .n("OutpostsClient", "GetOutpostSupportedInstanceTypesCommand")    .sc(schemas_0.GetOutpostSupportedInstanceTypes$)    .build() {} class GetRenewalPricingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetRenewalPricing", {})    .n("OutpostsClient", "GetRenewalPricingCommand")    .sc(schemas_0.GetRenewalPricing$)    .build() {} class GetSiteAddressCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetSiteAddress", {})    .n("OutpostsClient", "GetSiteAddressCommand")    .sc(schemas_0.GetSiteAddress$)    .build() {} class GetSiteCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "GetSite", {})    .n("OutpostsClient", "GetSiteCommand")    .sc(schemas_0.GetSite$)    .build() {} class ListAssetInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "ListAssetInstances", {})    .n("OutpostsClient", "ListAssetInstancesCommand")    .sc(schemas_0.ListAssetInstances$)    .build() {} class ListAssetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "ListAssets", {})    .n("OutpostsClient", "ListAssetsCommand")    .sc(schemas_0.ListAssets$)    .build() {} class ListBlockingInstancesForCapacityTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "ListBlockingInstancesForCapacityTask", {})    .n("OutpostsClient", "ListBlockingInstancesForCapacityTaskCommand")    .sc(schemas_0.ListBlockingInstancesForCapacityTask$)    .build() {} class ListCapacityTasksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "ListCapacityTasks", {})    .n("OutpostsClient", "ListCapacityTasksCommand")    .sc(schemas_0.ListCapacityTasks$)    .build() {} class ListCatalogItemsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "ListCatalogItems", {})    .n("OutpostsClient", "ListCatalogItemsCommand")    .sc(schemas_0.ListCatalogItems$)    .build() {} class ListOrdersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "ListOrders", {})    .n("OutpostsClient", "ListOrdersCommand")    .sc(schemas_0.ListOrders$)    .build() {} class ListOutpostsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "ListOutposts", {})    .n("OutpostsClient", "ListOutpostsCommand")    .sc(schemas_0.ListOutposts$)    .build() {} class ListSitesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "ListSites", {})    .n("OutpostsClient", "ListSitesCommand")    .sc(schemas_0.ListSites$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "ListTagsForResource", {})    .n("OutpostsClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class StartCapacityTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "StartCapacityTask", {})    .n("OutpostsClient", "StartCapacityTaskCommand")    .sc(schemas_0.StartCapacityTask$)    .build() {} class StartConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "StartConnection", {})    .n("OutpostsClient", "StartConnectionCommand")    .sc(schemas_0.StartConnection$)    .build() {} class StartOutpostDecommissionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "StartOutpostDecommission", {})    .n("OutpostsClient", "StartOutpostDecommissionCommand")    .sc(schemas_0.StartOutpostDecommission$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "TagResource", {})    .n("OutpostsClient", "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("OutpostsOlafService", "UntagResource", {})    .n("OutpostsClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateOutpostCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "UpdateOutpost", {})    .n("OutpostsClient", "UpdateOutpostCommand")    .sc(schemas_0.UpdateOutpost$)    .build() {} class UpdateSiteAddressCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "UpdateSiteAddress", {})    .n("OutpostsClient", "UpdateSiteAddressCommand")    .sc(schemas_0.UpdateSiteAddress$)    .build() {} class UpdateSiteCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "UpdateSite", {})    .n("OutpostsClient", "UpdateSiteCommand")    .sc(schemas_0.UpdateSite$)    .build() {} class UpdateSiteRackPhysicalPropertiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OutpostsOlafService", "UpdateSiteRackPhysicalProperties", {})    .n("OutpostsClient", "UpdateSiteRackPhysicalPropertiesCommand")    .sc(schemas_0.UpdateSiteRackPhysicalProperties$)    .build() {} const paginateGetOutpostBillingInformation = core.createPaginator(OutpostsClient, GetOutpostBillingInformationCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetOutpostInstanceTypes = core.createPaginator(OutpostsClient, GetOutpostInstanceTypesCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetOutpostSupportedInstanceTypes = core.createPaginator(OutpostsClient, GetOutpostSupportedInstanceTypesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListAssetInstances = core.createPaginator(OutpostsClient, ListAssetInstancesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListAssets = core.createPaginator(OutpostsClient, ListAssetsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListBlockingInstancesForCapacityTask = core.createPaginator(OutpostsClient, ListBlockingInstancesForCapacityTaskCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCapacityTasks = core.createPaginator(OutpostsClient, ListCapacityTasksCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCatalogItems = core.createPaginator(OutpostsClient, ListCatalogItemsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListOrders = core.createPaginator(OutpostsClient, ListOrdersCommand, "NextToken", "NextToken", "MaxResults"); const paginateListOutposts = core.createPaginator(OutpostsClient, ListOutpostsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListSites = core.createPaginator(OutpostsClient, ListSitesCommand, "NextToken", "NextToken", "MaxResults"); const commands = {    CancelCapacityTaskCommand,    CancelOrderCommand,    CreateOrderCommand,    CreateOutpostCommand,    CreateRenewalCommand,    CreateSiteCommand,    DeleteOutpostCommand,    DeleteSiteCommand,    GetCapacityTaskCommand,    GetCatalogItemCommand,    GetConnectionCommand,    GetOrderCommand,    GetOutpostCommand,    GetOutpostBillingInformationCommand,    GetOutpostInstanceTypesCommand,    GetOutpostSupportedInstanceTypesCommand,    GetRenewalPricingCommand,    GetSiteCommand,    GetSiteAddressCommand,    ListAssetInstancesCommand,    ListAssetsCommand,    ListBlockingInstancesForCapacityTaskCommand,    ListCapacityTasksCommand,    ListCatalogItemsCommand,    ListOrdersCommand,    ListOutpostsCommand,    ListSitesCommand,    ListTagsForResourceCommand,    StartCapacityTaskCommand,    StartConnectionCommand,    StartOutpostDecommissionCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateOutpostCommand,    UpdateSiteCommand,    UpdateSiteAddressCommand,    UpdateSiteRackPhysicalPropertiesCommand,};const paginators = {    paginateGetOutpostBillingInformation,    paginateGetOutpostInstanceTypes,    paginateGetOutpostSupportedInstanceTypes,    paginateListAssetInstances,    paginateListAssets,    paginateListBlockingInstancesForCapacityTask,    paginateListCapacityTasks,    paginateListCatalogItems,    paginateListOrders,    paginateListOutposts,    paginateListSites,};class Outposts extends OutpostsClient {}client.createAggregatedClient(commands, Outposts, { paginators }); const AddressType = {    OPERATING_ADDRESS: "OPERATING_ADDRESS",    SHIPPING_ADDRESS: "SHIPPING_ADDRESS",};const AssetType = {    COMPUTE: "COMPUTE",    NETWORKING: "NETWORKING",    POWERSHELF: "POWERSHELF",    STORAGE: "STORAGE",    SWITCH: "SWITCH",};const ComputeAssetState = {    ACTIVE: "ACTIVE",    INSTALLING: "INSTALLING",    ISOLATED: "ISOLATED",    RETIRING: "RETIRING",};const AWSServiceName = {    AWS: "AWS",    EC2: "EC2",    ELASTICACHE: "ELASTICACHE",    ELB: "ELB",    RDS: "RDS",    ROUTE53: "ROUTE53",};const AssetState = {    ACTIVE: "ACTIVE",    INSTALLING: "INSTALLING",    ISOLATED: "ISOLATED",    RETIRING: "RETIRING",};const BlockingResourceType = {    EC2_INSTANCE: "EC2_INSTANCE",    LGW_ROUTE_TABLE: "LGW_ROUTE_TABLE",    LGW_ROUTING_DOMAIN: "LGW_ROUTING_DOMAIN",    LGW_VIRTUAL_INTERFACE_GROUP: "LGW_VIRTUAL_INTERFACE_GROUP",    OUTPOST_ORDER_CANCELLABLE: "OUTPOST_ORDER_CANCELLABLE",    OUTPOST_ORDER_INTERVENTION_REQUIRED: "OUTPOST_ORDER_INTERVENTION_REQUIRED",    OUTPOST_RAM_SHARE: "OUTPOST_RAM_SHARE",};const ResourceType = {    ORDER: "ORDER",    OUTPOST: "OUTPOST",};const CapacityTaskFailureType = {    BLOCKING_INSTANCES_NOT_EVACUATED: "BLOCKING_INSTANCES_NOT_EVACUATED",    INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",    RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",    UNEXPECTED_ASSET_STATE: "UNEXPECTED_ASSET_STATE",    UNSUPPORTED_CAPACITY_CONFIGURATION: "UNSUPPORTED_CAPACITY_CONFIGURATION",};const CapacityTaskStatus = {    CANCELLATION_IN_PROGRESS: "CANCELLATION_IN_PROGRESS",    CANCELLED: "CANCELLED",    COMPLETED: "COMPLETED",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    REQUESTED: "REQUESTED",    WAITING_FOR_EVACUATION: "WAITING_FOR_EVACUATION",};const CatalogItemStatus = {    AVAILABLE: "AVAILABLE",    DISCONTINUED: "DISCONTINUED",};const SupportedStorageEnum = {    EBS: "EBS",    S3: "S3",};const CatalogItemClass = {    RACK: "RACK",    SERVER: "SERVER",};const PaymentOption = {    ALL_UPFRONT: "ALL_UPFRONT",    NO_UPFRONT: "NO_UPFRONT",    PARTIAL_UPFRONT: "PARTIAL_UPFRONT",};const PaymentTerm = {    FIVE_YEARS: "FIVE_YEARS",    ONE_YEAR: "ONE_YEAR",    THREE_YEARS: "THREE_YEARS",};const ShipmentCarrier = {    DBS: "DBS",    DHL: "DHL",    EXPEDITORS: "EXPEDITORS",    FEDEX: "FEDEX",    UPS: "UPS",};const LineItemStatus = {    BUILDING: "BUILDING",    CANCELLED: "CANCELLED",    DELIVERED: "DELIVERED",    ERROR: "ERROR",    INSTALLED: "INSTALLED",    INSTALLING: "INSTALLING",    PREPARING: "PREPARING",    REPLACED: "REPLACED",    SHIPPED: "SHIPPED",};const OrderType = {    OUTPOST: "OUTPOST",    REPLACEMENT: "REPLACEMENT",};const OrderStatus = {    CANCELLED: "CANCELLED",    COMPLETED: "COMPLETED",    DELIVERED: "DELIVERED",    ERROR: "ERROR",    FULFILLED: "FULFILLED",    INSTALLING: "INSTALLING",    IN_PROGRESS: "IN_PROGRESS",    PENDING: "PENDING",    PREPARING: "PREPARING",    PROCESSING: "PROCESSING",    RECEIVED: "RECEIVED",};const SupportedHardwareType = {    RACK: "RACK",    SERVER: "SERVER",};const FiberOpticCableType = {    MULTI_MODE: "MULTI_MODE",    SINGLE_MODE: "SINGLE_MODE",};const MaximumSupportedWeightLbs = {    MAX_1400_LBS: "MAX_1400_LBS",    MAX_1600_LBS: "MAX_1600_LBS",    MAX_1800_LBS: "MAX_1800_LBS",    MAX_2000_LBS: "MAX_2000_LBS",    NO_LIMIT: "NO_LIMIT",};const OpticalStandard = {    OPTIC_1000BASE_LX: "OPTIC_1000BASE_LX",    OPTIC_1000BASE_SX: "OPTIC_1000BASE_SX",    OPTIC_100GBASE_CWDM4: "OPTIC_100GBASE_CWDM4",    OPTIC_100GBASE_LR4: "OPTIC_100GBASE_LR4",    OPTIC_100GBASE_SR4: "OPTIC_100GBASE_SR4",    OPTIC_100G_PSM4_MSA: "OPTIC_100G_PSM4_MSA",    OPTIC_10GBASE_IR: "OPTIC_10GBASE_IR",    OPTIC_10GBASE_LR: "OPTIC_10GBASE_LR",    OPTIC_10GBASE_SR: "OPTIC_10GBASE_SR",    OPTIC_40GBASE_ESR: "OPTIC_40GBASE_ESR",    OPTIC_40GBASE_IR4_LR4L: "OPTIC_40GBASE_IR4_LR4L",    OPTIC_40GBASE_LR4: "OPTIC_40GBASE_LR4",    OPTIC_40GBASE_SR: "OPTIC_40GBASE_SR",};const PowerConnector = {    AH530P7W: "AH530P7W",    AH532P6W: "AH532P6W",    CS8365C: "CS8365C",    IEC309: "IEC309",    L6_30P: "L6_30P",};const PowerDrawKva = {    POWER_10_KVA: "POWER_10_KVA",    POWER_15_KVA: "POWER_15_KVA",    POWER_30_KVA: "POWER_30_KVA",    POWER_5_KVA: "POWER_5_KVA",};const PowerFeedDrop = {    ABOVE_RACK: "ABOVE_RACK",    BELOW_RACK: "BELOW_RACK",};const PowerPhase = {    SINGLE_PHASE: "SINGLE_PHASE",    THREE_PHASE: "THREE_PHASE",};const UplinkCount = {    UPLINK_COUNT_1: "UPLINK_COUNT_1",    UPLINK_COUNT_12: "UPLINK_COUNT_12",    UPLINK_COUNT_16: "UPLINK_COUNT_16",    UPLINK_COUNT_2: "UPLINK_COUNT_2",    UPLINK_COUNT_3: "UPLINK_COUNT_3",    UPLINK_COUNT_4: "UPLINK_COUNT_4",    UPLINK_COUNT_5: "UPLINK_COUNT_5",    UPLINK_COUNT_6: "UPLINK_COUNT_6",    UPLINK_COUNT_7: "UPLINK_COUNT_7",    UPLINK_COUNT_8: "UPLINK_COUNT_8",};const UplinkGbps = {    UPLINK_100G: "UPLINK_100G",    UPLINK_10G: "UPLINK_10G",    UPLINK_1G: "UPLINK_1G",    UPLINK_40G: "UPLINK_40G",};const DecommissionRequestStatus = {    BLOCKED: "BLOCKED",    REQUESTED: "REQUESTED",    SKIPPED: "SKIPPED",};const TaskActionOnBlockingInstances = {    FAIL_TASK: "FAIL_TASK",    WAIT_FOR_EVACUATION: "WAIT_FOR_EVACUATION",};const SubscriptionStatus = {    ACTIVE: "ACTIVE",    CANCELLED: "CANCELLED",    INACTIVE: "INACTIVE",    PENDING: "PENDING",};const SubscriptionType = {    CAPACITY_INCREASE: "CAPACITY_INCREASE",    ORIGINAL: "ORIGINAL",    RENEWAL: "RENEWAL",};const QuotePricingType = {    SUBSCRIPTION: "SUBSCRIPTION",};const PricingResult = {    PRICED: "PRICED",    UNABLE_TO_PRICE: "UNABLE_TO_PRICE",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.OutpostsServiceException = OutpostsServiceException.OutpostsServiceException;exports.AWSServiceName = AWSServiceName;exports.AddressType = AddressType;exports.AssetState = AssetState;exports.AssetType = AssetType;exports.BlockingResourceType = BlockingResourceType;exports.CancelCapacityTaskCommand = CancelCapacityTaskCommand;exports.CancelOrderCommand = CancelOrderCommand;exports.CapacityTaskFailureType = CapacityTaskFailureType;exports.CapacityTaskStatus = CapacityTaskStatus;exports.CatalogItemClass = CatalogItemClass;exports.CatalogItemStatus = CatalogItemStatus;exports.ComputeAssetState = ComputeAssetState;exports.CreateOrderCommand = CreateOrderCommand;exports.CreateOutpostCommand = CreateOutpostCommand;exports.CreateRenewalCommand = CreateRenewalCommand;exports.CreateSiteCommand = CreateSiteCommand;exports.DecommissionRequestStatus = DecommissionRequestStatus;exports.DeleteOutpostCommand = DeleteOutpostCommand;exports.DeleteSiteCommand = DeleteSiteCommand;exports.FiberOpticCableType = FiberOpticCableType;exports.GetCapacityTaskCommand = GetCapacityTaskCommand;exports.GetCatalogItemCommand = GetCatalogItemCommand;exports.GetConnectionCommand = GetConnectionCommand;exports.GetOrderCommand = GetOrderCommand;exports.GetOutpostBillingInformationCommand = GetOutpostBillingInformationCommand;exports.GetOutpostCommand = GetOutpostCommand;exports.GetOutpostInstanceTypesCommand = GetOutpostInstanceTypesCommand;exports.GetOutpostSupportedInstanceTypesCommand = GetOutpostSupportedInstanceTypesCommand;exports.GetRenewalPricingCommand = GetRenewalPricingCommand;exports.GetSiteAddressCommand = GetSiteAddressCommand;exports.GetSiteCommand = GetSiteCommand;exports.LineItemStatus = LineItemStatus;exports.ListAssetInstancesCommand = ListAssetInstancesCommand;exports.ListAssetsCommand = ListAssetsCommand;exports.ListBlockingInstancesForCapacityTaskCommand = ListBlockingInstancesForCapacityTaskCommand;exports.ListCapacityTasksCommand = ListCapacityTasksCommand;exports.ListCatalogItemsCommand = ListCatalogItemsCommand;exports.ListOrdersCommand = ListOrdersCommand;exports.ListOutpostsCommand = ListOutpostsCommand;exports.ListSitesCommand = ListSitesCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.MaximumSupportedWeightLbs = MaximumSupportedWeightLbs;exports.OpticalStandard = OpticalStandard;exports.OrderStatus = OrderStatus;exports.OrderType = OrderType;exports.Outposts = Outposts;exports.OutpostsClient = OutpostsClient;exports.PaymentOption = PaymentOption;exports.PaymentTerm = PaymentTerm;exports.PowerConnector = PowerConnector;exports.PowerDrawKva = PowerDrawKva;exports.PowerFeedDrop = PowerFeedDrop;exports.PowerPhase = PowerPhase;exports.PricingResult = PricingResult;exports.QuotePricingType = QuotePricingType;exports.ResourceType = ResourceType;exports.ShipmentCarrier = ShipmentCarrier;exports.StartCapacityTaskCommand = StartCapacityTaskCommand;exports.StartConnectionCommand = StartConnectionCommand;exports.StartOutpostDecommissionCommand = StartOutpostDecommissionCommand;exports.SubscriptionStatus = SubscriptionStatus;exports.SubscriptionType = SubscriptionType;exports.SupportedHardwareType = SupportedHardwareType;exports.SupportedStorageEnum = SupportedStorageEnum;exports.TagResourceCommand = TagResourceCommand;exports.TaskActionOnBlockingInstances = TaskActionOnBlockingInstances;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateOutpostCommand = UpdateOutpostCommand;exports.UpdateSiteAddressCommand = UpdateSiteAddressCommand;exports.UpdateSiteCommand = UpdateSiteCommand;exports.UpdateSiteRackPhysicalPropertiesCommand = UpdateSiteRackPhysicalPropertiesCommand;exports.UplinkCount = UplinkCount;exports.UplinkGbps = UplinkGbps;exports.paginateGetOutpostBillingInformation = paginateGetOutpostBillingInformation;exports.paginateGetOutpostInstanceTypes = paginateGetOutpostInstanceTypes;exports.paginateGetOutpostSupportedInstanceTypes = paginateGetOutpostSupportedInstanceTypes;exports.paginateListAssetInstances = paginateListAssetInstances;exports.paginateListAssets = paginateListAssets;exports.paginateListBlockingInstancesForCapacityTask = paginateListBlockingInstancesForCapacityTask;exports.paginateListCapacityTasks = paginateListCapacityTasks;exports.paginateListCatalogItems = paginateListCatalogItems;exports.paginateListOrders = paginateListOrders;exports.paginateListOutposts = paginateListOutposts;exports.paginateListSites = paginateListSites;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];});