@nebius/js-sdk - v0.2.22
    Preparing search index...

    Interface RangeTotalCost

    Range-based total cost with minimum and maximum bounds. Used for resources with variable pricing based on usage or scaling.

    interface RangeTotalCost {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.billing.v1.RangeTotalCost";
        max?: CostBreakdown;
        min?: CostBreakdown;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.billing.v1.RangeTotalCost"

    Maximum possible cost for the resource group. Represents the cost when resources are at their maximum configuration.

    Minimum possible cost for the resource group. Represents the cost when resources are at their minimum configuration.