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

    Interface FixedInstanceResourceCost

    Fixed instance resource cost. Used for resources that have a fixed number of instances.

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

    Number of instances in the configuration.

    perInstance?: CostBreakdown

    Cost per individual instance. Multiply by instance_count to get total cost.

    Total cost for all instances combined.