@nebius/js-sdk - v0.2.54
    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

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

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Autoscale resource cost. Used for resources that can automatically scale.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.billing.v1.AutoscaleResourceCost"

    Contains the fully qualified protobuf type name.

    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.