@nebius/js-sdk - v0.1.41
    Preparing search index...
    interface Warning {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.common.v1.Warning";
        code: Warning_Code;
        details: string;
        detailsFallback: string;
        path: string;
        summary: string;
        summaryFallback: string;
        target: Warning_Target;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.common.v1.Warning"

    Warning category.

    details: string

    User-facing details text. Can contain a liquid format template which must be executed on client side. Empty means use details_fallback.

    detailsFallback: string

    Details text to use when details is empty or not applicable. Can contain a liquid format template which must be executed on client side.

    path: string

    Contains a Full Service/Method name or a select mask for a field. Examples:

    nebius.compute.v1.InstanceService
    nebius.compute.v1.InstanceService/Get
    spec.control_plane.version
    spec.network_interfaces.0.subnet_id
    items.0.spec.control_plane.version
    summary: string

    User-facing summary text. Can contain a liquid format template which must be executed on client side. Empty means use summary_fallback.

    summaryFallback: string

    Summary text to use when summary is empty or not applicable. Can contain a liquid format template which must be executed on client side.

    Target client or tool for which this warning is intended.