File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-budgets/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.4 KB · 703 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 BudgetsServiceException = require('./models/BudgetsServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "budgets",    });};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 BudgetsClient 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.defaultBudgetsHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CreateBudgetActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "CreateBudgetAction", {})    .n("BudgetsClient", "CreateBudgetActionCommand")    .sc(schemas_0.CreateBudgetAction$)    .build() {} class CreateBudgetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "CreateBudget", {})    .n("BudgetsClient", "CreateBudgetCommand")    .sc(schemas_0.CreateBudget$)    .build() {} class CreateNotificationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "CreateNotification", {})    .n("BudgetsClient", "CreateNotificationCommand")    .sc(schemas_0.CreateNotification$)    .build() {} class CreateSubscriberCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "CreateSubscriber", {})    .n("BudgetsClient", "CreateSubscriberCommand")    .sc(schemas_0.CreateSubscriber$)    .build() {} class DeleteBudgetActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DeleteBudgetAction", {})    .n("BudgetsClient", "DeleteBudgetActionCommand")    .sc(schemas_0.DeleteBudgetAction$)    .build() {} class DeleteBudgetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DeleteBudget", {})    .n("BudgetsClient", "DeleteBudgetCommand")    .sc(schemas_0.DeleteBudget$)    .build() {} class DeleteNotificationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DeleteNotification", {})    .n("BudgetsClient", "DeleteNotificationCommand")    .sc(schemas_0.DeleteNotification$)    .build() {} class DeleteSubscriberCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DeleteSubscriber", {})    .n("BudgetsClient", "DeleteSubscriberCommand")    .sc(schemas_0.DeleteSubscriber$)    .build() {} class DescribeBudgetActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DescribeBudgetAction", {})    .n("BudgetsClient", "DescribeBudgetActionCommand")    .sc(schemas_0.DescribeBudgetAction$)    .build() {} class DescribeBudgetActionHistoriesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DescribeBudgetActionHistories", {})    .n("BudgetsClient", "DescribeBudgetActionHistoriesCommand")    .sc(schemas_0.DescribeBudgetActionHistories$)    .build() {} class DescribeBudgetActionsForAccountCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DescribeBudgetActionsForAccount", {})    .n("BudgetsClient", "DescribeBudgetActionsForAccountCommand")    .sc(schemas_0.DescribeBudgetActionsForAccount$)    .build() {} class DescribeBudgetActionsForBudgetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DescribeBudgetActionsForBudget", {})    .n("BudgetsClient", "DescribeBudgetActionsForBudgetCommand")    .sc(schemas_0.DescribeBudgetActionsForBudget$)    .build() {} class DescribeBudgetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DescribeBudget", {})    .n("BudgetsClient", "DescribeBudgetCommand")    .sc(schemas_0.DescribeBudget$)    .build() {} class DescribeBudgetNotificationsForAccountCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DescribeBudgetNotificationsForAccount", {})    .n("BudgetsClient", "DescribeBudgetNotificationsForAccountCommand")    .sc(schemas_0.DescribeBudgetNotificationsForAccount$)    .build() {} class DescribeBudgetPerformanceHistoryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DescribeBudgetPerformanceHistory", {})    .n("BudgetsClient", "DescribeBudgetPerformanceHistoryCommand")    .sc(schemas_0.DescribeBudgetPerformanceHistory$)    .build() {} class DescribeBudgetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DescribeBudgets", {})    .n("BudgetsClient", "DescribeBudgetsCommand")    .sc(schemas_0.DescribeBudgets$)    .build() {} class DescribeNotificationsForBudgetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DescribeNotificationsForBudget", {})    .n("BudgetsClient", "DescribeNotificationsForBudgetCommand")    .sc(schemas_0.DescribeNotificationsForBudget$)    .build() {} class DescribeSubscribersForNotificationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "DescribeSubscribersForNotification", {})    .n("BudgetsClient", "DescribeSubscribersForNotificationCommand")    .sc(schemas_0.DescribeSubscribersForNotification$)    .build() {} class ExecuteBudgetActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "ExecuteBudgetAction", {})    .n("BudgetsClient", "ExecuteBudgetActionCommand")    .sc(schemas_0.ExecuteBudgetAction$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "ListTagsForResource", {})    .n("BudgetsClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "TagResource", {})    .n("BudgetsClient", "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("AWSBudgetServiceGateway", "UntagResource", {})    .n("BudgetsClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateBudgetActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "UpdateBudgetAction", {})    .n("BudgetsClient", "UpdateBudgetActionCommand")    .sc(schemas_0.UpdateBudgetAction$)    .build() {} class UpdateBudgetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "UpdateBudget", {})    .n("BudgetsClient", "UpdateBudgetCommand")    .sc(schemas_0.UpdateBudget$)    .build() {} class UpdateNotificationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "UpdateNotification", {})    .n("BudgetsClient", "UpdateNotificationCommand")    .sc(schemas_0.UpdateNotification$)    .build() {} class UpdateSubscriberCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSBudgetServiceGateway", "UpdateSubscriber", {})    .n("BudgetsClient", "UpdateSubscriberCommand")    .sc(schemas_0.UpdateSubscriber$)    .build() {} const paginateDescribeBudgetActionHistories = core.createPaginator(BudgetsClient, DescribeBudgetActionHistoriesCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeBudgetActionsForAccount = core.createPaginator(BudgetsClient, DescribeBudgetActionsForAccountCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeBudgetActionsForBudget = core.createPaginator(BudgetsClient, DescribeBudgetActionsForBudgetCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeBudgetNotificationsForAccount = core.createPaginator(BudgetsClient, DescribeBudgetNotificationsForAccountCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeBudgetPerformanceHistory = core.createPaginator(BudgetsClient, DescribeBudgetPerformanceHistoryCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeBudgets = core.createPaginator(BudgetsClient, DescribeBudgetsCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeNotificationsForBudget = core.createPaginator(BudgetsClient, DescribeNotificationsForBudgetCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeSubscribersForNotification = core.createPaginator(BudgetsClient, DescribeSubscribersForNotificationCommand, "NextToken", "NextToken", "MaxResults"); const commands = {    CreateBudgetCommand,    CreateBudgetActionCommand,    CreateNotificationCommand,    CreateSubscriberCommand,    DeleteBudgetCommand,    DeleteBudgetActionCommand,    DeleteNotificationCommand,    DeleteSubscriberCommand,    DescribeBudgetCommand,    DescribeBudgetActionCommand,    DescribeBudgetActionHistoriesCommand,    DescribeBudgetActionsForAccountCommand,    DescribeBudgetActionsForBudgetCommand,    DescribeBudgetNotificationsForAccountCommand,    DescribeBudgetPerformanceHistoryCommand,    DescribeBudgetsCommand,    DescribeNotificationsForBudgetCommand,    DescribeSubscribersForNotificationCommand,    ExecuteBudgetActionCommand,    ListTagsForResourceCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateBudgetCommand,    UpdateBudgetActionCommand,    UpdateNotificationCommand,    UpdateSubscriberCommand,};const paginators = {    paginateDescribeBudgetActionHistories,    paginateDescribeBudgetActionsForAccount,    paginateDescribeBudgetActionsForBudget,    paginateDescribeBudgetNotificationsForAccount,    paginateDescribeBudgetPerformanceHistory,    paginateDescribeBudgets,    paginateDescribeNotificationsForBudget,    paginateDescribeSubscribersForNotification,};class Budgets extends BudgetsClient {}client.createAggregatedClient(commands, Budgets, { paginators }); const ThresholdType = {    ABSOLUTE_VALUE: "ABSOLUTE_VALUE",    PERCENTAGE: "PERCENTAGE",};const ActionType = {    IAM: "APPLY_IAM_POLICY",    SCP: "APPLY_SCP_POLICY",    SSM: "RUN_SSM_DOCUMENTS",};const ApprovalModel = {    AUTO: "AUTOMATIC",    MANUAL: "MANUAL",};const ActionSubType = {    STOP_EC2: "STOP_EC2_INSTANCES",    STOP_RDS: "STOP_RDS_INSTANCES",};const NotificationType = {    ACTUAL: "ACTUAL",    FORECASTED: "FORECASTED",};const ActionStatus = {    Execution_Failure: "EXECUTION_FAILURE",    Execution_In_Progress: "EXECUTION_IN_PROGRESS",    Execution_Success: "EXECUTION_SUCCESS",    Pending: "PENDING",    Reset_Failure: "RESET_FAILURE",    Reset_In_Progress: "RESET_IN_PROGRESS",    Reverse_Failure: "REVERSE_FAILURE",    Reverse_In_Progress: "REVERSE_IN_PROGRESS",    Reverse_Success: "REVERSE_SUCCESS",    Standby: "STANDBY",};const SubscriptionType = {    EMAIL: "EMAIL",    SNS: "SNS",};const EventType = {    CreateAction: "CREATE_ACTION",    DeleteAction: "DELETE_ACTION",    ExecuteAction: "EXECUTE_ACTION",    System: "SYSTEM",    UpdateAction: "UPDATE_ACTION",};const AutoAdjustType = {    FORECAST: "FORECAST",    HISTORICAL: "HISTORICAL",};const BudgetType = {    Cost: "COST",    RICoverage: "RI_COVERAGE",    RIUtilization: "RI_UTILIZATION",    SPCoverage: "SAVINGS_PLANS_COVERAGE",    SPUtilization: "SAVINGS_PLANS_UTILIZATION",    Usage: "USAGE",};const MatchOption = {    ABSENT: "ABSENT",    CASE_INSENSITIVE: "CASE_INSENSITIVE",    CASE_SENSITIVE: "CASE_SENSITIVE",    CONTAINS: "CONTAINS",    ENDS_WITH: "ENDS_WITH",    EQUALS: "EQUALS",    GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL",    STARTS_WITH: "STARTS_WITH",};const Dimension = {    AZ: "AZ",    BILLING_ENTITY: "BILLING_ENTITY",    CACHE_ENGINE: "CACHE_ENGINE",    COST_CATEGORY_NAME: "COST_CATEGORY_NAME",    DATABASE_ENGINE: "DATABASE_ENGINE",    DEPLOYMENT_OPTION: "DEPLOYMENT_OPTION",    INSTANCE_TYPE: "INSTANCE_TYPE",    INSTANCE_TYPE_FAMILY: "INSTANCE_TYPE_FAMILY",    INVOICING_ENTITY: "INVOICING_ENTITY",    LEGAL_ENTITY_NAME: "LEGAL_ENTITY_NAME",    LINKED_ACCOUNT: "LINKED_ACCOUNT",    LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME",    OPERATING_SYSTEM: "OPERATING_SYSTEM",    OPERATION: "OPERATION",    PAYMENT_OPTION: "PAYMENT_OPTION",    PLATFORM: "PLATFORM",    PURCHASE_TYPE: "PURCHASE_TYPE",    RECORD_TYPE: "RECORD_TYPE",    REGION: "REGION",    RESERVATION_ID: "RESERVATION_ID",    RESERVATION_MODIFIED: "RESERVATION_MODIFIED",    RESOURCE_ID: "RESOURCE_ID",    RIGHTSIZING_TYPE: "RIGHTSIZING_TYPE",    SAVINGS_PLANS_TYPE: "SAVINGS_PLANS_TYPE",    SAVINGS_PLAN_ARN: "SAVINGS_PLAN_ARN",    SCOPE: "SCOPE",    SERVICE: "SERVICE",    SERVICE_CODE: "SERVICE_CODE",    SUBSCRIPTION_ID: "SUBSCRIPTION_ID",    TAG_KEY: "TAG_KEY",    TENANCY: "TENANCY",    USAGE_TYPE: "USAGE_TYPE",    USAGE_TYPE_GROUP: "USAGE_TYPE_GROUP",};const HealthStatusValue = {    HEALTHY: "HEALTHY",    UNHEALTHY: "UNHEALTHY",};const HealthStatusReason = {    BILLING_VIEW_NO_ACCESS: "BILLING_VIEW_NO_ACCESS",    BILLING_VIEW_UNHEALTHY: "BILLING_VIEW_UNHEALTHY",    FILTER_INVALID: "FILTER_INVALID",    MULTI_YEAR_HISTORICAL_DATA_DISABLED: "MULTI_YEAR_HISTORICAL_DATA_DISABLED",};const Metric = {    AMORTIZED_COST: "AmortizedCost",    BLENDED_COST: "BlendedCost",    HOURS: "Hours",    NET_AMORTIZED_COST: "NetAmortizedCost",    NET_UNBLENDED_COST: "NetUnblendedCost",    NORMALIZED_USAGE_AMOUNT: "NormalizedUsageAmount",    UNBLENDED_COST: "UnblendedCost",    USAGE_QUANTITY: "UsageQuantity",};const TimeUnit = {    ANNUALLY: "ANNUALLY",    CUSTOM: "CUSTOM",    DAILY: "DAILY",    MONTHLY: "MONTHLY",    QUARTERLY: "QUARTERLY",};const ComparisonOperator = {    EQUAL_TO: "EQUAL_TO",    GREATER_THAN: "GREATER_THAN",    LESS_THAN: "LESS_THAN",};const NotificationState = {    ALARM: "ALARM",    OK: "OK",};const ExecutionType = {    ApproveBudgetAction: "APPROVE_BUDGET_ACTION",    ResetBudgetAction: "RESET_BUDGET_ACTION",    RetryBudgetAction: "RETRY_BUDGET_ACTION",    ReverseBudgetAction: "REVERSE_BUDGET_ACTION",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.BudgetsServiceException = BudgetsServiceException.BudgetsServiceException;exports.ActionStatus = ActionStatus;exports.ActionSubType = ActionSubType;exports.ActionType = ActionType;exports.ApprovalModel = ApprovalModel;exports.AutoAdjustType = AutoAdjustType;exports.BudgetType = BudgetType;exports.Budgets = Budgets;exports.BudgetsClient = BudgetsClient;exports.ComparisonOperator = ComparisonOperator;exports.CreateBudgetActionCommand = CreateBudgetActionCommand;exports.CreateBudgetCommand = CreateBudgetCommand;exports.CreateNotificationCommand = CreateNotificationCommand;exports.CreateSubscriberCommand = CreateSubscriberCommand;exports.DeleteBudgetActionCommand = DeleteBudgetActionCommand;exports.DeleteBudgetCommand = DeleteBudgetCommand;exports.DeleteNotificationCommand = DeleteNotificationCommand;exports.DeleteSubscriberCommand = DeleteSubscriberCommand;exports.DescribeBudgetActionCommand = DescribeBudgetActionCommand;exports.DescribeBudgetActionHistoriesCommand = DescribeBudgetActionHistoriesCommand;exports.DescribeBudgetActionsForAccountCommand = DescribeBudgetActionsForAccountCommand;exports.DescribeBudgetActionsForBudgetCommand = DescribeBudgetActionsForBudgetCommand;exports.DescribeBudgetCommand = DescribeBudgetCommand;exports.DescribeBudgetNotificationsForAccountCommand = DescribeBudgetNotificationsForAccountCommand;exports.DescribeBudgetPerformanceHistoryCommand = DescribeBudgetPerformanceHistoryCommand;exports.DescribeBudgetsCommand = DescribeBudgetsCommand;exports.DescribeNotificationsForBudgetCommand = DescribeNotificationsForBudgetCommand;exports.DescribeSubscribersForNotificationCommand = DescribeSubscribersForNotificationCommand;exports.Dimension = Dimension;exports.EventType = EventType;exports.ExecuteBudgetActionCommand = ExecuteBudgetActionCommand;exports.ExecutionType = ExecutionType;exports.HealthStatusReason = HealthStatusReason;exports.HealthStatusValue = HealthStatusValue;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.MatchOption = MatchOption;exports.Metric = Metric;exports.NotificationState = NotificationState;exports.NotificationType = NotificationType;exports.SubscriptionType = SubscriptionType;exports.TagResourceCommand = TagResourceCommand;exports.ThresholdType = ThresholdType;exports.TimeUnit = TimeUnit;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateBudgetActionCommand = UpdateBudgetActionCommand;exports.UpdateBudgetCommand = UpdateBudgetCommand;exports.UpdateNotificationCommand = UpdateNotificationCommand;exports.UpdateSubscriberCommand = UpdateSubscriberCommand;exports.paginateDescribeBudgetActionHistories = paginateDescribeBudgetActionHistories;exports.paginateDescribeBudgetActionsForAccount = paginateDescribeBudgetActionsForAccount;exports.paginateDescribeBudgetActionsForBudget = paginateDescribeBudgetActionsForBudget;exports.paginateDescribeBudgetNotificationsForAccount = paginateDescribeBudgetNotificationsForAccount;exports.paginateDescribeBudgetPerformanceHistory = paginateDescribeBudgetPerformanceHistory;exports.paginateDescribeBudgets = paginateDescribeBudgets;exports.paginateDescribeNotificationsForBudget = paginateDescribeNotificationsForBudget;exports.paginateDescribeSubscribersForNotification = paginateDescribeSubscribersForNotification;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];});