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

    Interface ResourceAdviceSpec

    Resource Advice specification.

    interface ResourceAdviceSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.capacity.v1.ResourceAdviceSpec";
        fabric: string;
        region: string;
        resourceDetails?: {
            $case: "computeInstance";
            computeInstance: ComputeInstanceDetails;
        };
        [key: symbol]: Uint8Array<ArrayBufferLike>
        | (() => unknown)
        | undefined;
    }

    Indexable

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

      Resource Advice specification.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Resource Advice specification.

            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.capacity.v1.ResourceAdviceSpec"

    Contains the fully qualified protobuf type name.

    fabric: string

    Data center fabric or cluster identifier.

    region: string

    Geographical region identifier.

    resourceDetails?: {
        $case: "computeInstance";
        computeInstance: ComputeInstanceDetails;
    }

    Details specific to the type of resource being advised.

    Type Declaration

    • $case: "computeInstance"

      Contains the case.

    • computeInstance: ComputeInstanceDetails

      Contains the compute instance.