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

    Interface AutoscaleResourceCost

    Autoscale resource cost. Used for resources that can automatically scale.

    interface AutoscaleResourceCost {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.billing.v1.AutoscaleResourceCost";
        maxCost?: CostBreakdown;
        maxInstances: number;
        minCost?: CostBreakdown;
        minInstances: number;
        perInstance?: 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.AutoscaleResourceCost"
    maxCost?: CostBreakdown

    Maximum possible cost when scaled to maximum instances.

    maxInstances: number

    Maximum number of instances in the auto-scaling group.

    minCost?: CostBreakdown

    Minimum possible cost when scaled to minimum instances.

    minInstances: number

    Minimum number of instances in the auto-scaling group.

    perInstance?: CostBreakdown

    Cost per individual instance. Used to calculate costs at any scaling level between min and max.