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

    Response message for GetVersion RPC containing required action for the agent.

    interface GetVersionResponse {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.logging.agentmanager.v1.GetVersionResponse";
        action: Action;
        featureFlags: { [key: string]: string };
        response?:
            | { $case: "nop"; nop: NopActionParams }
            | { $case: "update"; update: UpdateActionParams }
            | { $case: "restart"; restart: RestartActionParams };
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.logging.agentmanager.v1.GetVersionResponse"
    action: Action

    Required action for the agent to take.

    featureFlags: { [key: string]: string }

    Feature flags for the agent. Keys are UPPER_CASE flag names, values are flag values (typically "true"/"false").

    response?:
        | { $case: "nop"; nop: NopActionParams }
        | { $case: "update"; update: UpdateActionParams }
        | { $case: "restart"; restart: RestartActionParams }

    Parameters specific to the required action.