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

    Interface PreflightCheckDiagnostic

    A user-facing diagnostic produced by a preflight check.

    interface PreflightCheckDiagnostic {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.common.v1.PreflightCheckDiagnostic";
        details: string;
        path: string;
        severity: PreflightCheckDiagnostic_Severity;
        summary: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      A user-facing diagnostic produced by a preflight check.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • A user-facing diagnostic produced by a preflight check.

            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.common.v1.PreflightCheckDiagnostic"

    Contains the fully qualified protobuf type name.

    details: string

    Optional plain-text consequence and remediation details.

    path: string

    Optional Nebius field path rooted at metadata or spec. Empty means that the diagnostic applies to the resource or operation as a whole.

    Effect of the diagnostic on the proposed operation. Must not be UNSPECIFIED.

    summary: string

    Required single-line, plain-text user-facing explanation.