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

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

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Fixed instance resource cost. Used for resources that have a fixed number of instances.

            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.FixedInstanceResourceCost"

    Contains the fully qualified protobuf type name.

    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.