@nebius/js-sdk - v0.2.22
    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;
        configVersion: Long;
        featureFlags: { [key: string]: string };
        featureFlagsUnavailable: boolean;
        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.

    configVersion: Long

    Version of the rollout state this response was built from. Agent echoes it back as last_seen_config_version on the next request.

    featureFlags: { [key: string]: string }

    Feature flags for the agent. Keys are UPPER_CASE flag names, values are flag values (typically "true"/"false"). When feature_flags_unavailable is true the agent must ignore this field and keep its current flag set unchanged.

    featureFlagsUnavailable: boolean

    True when the server could not load feature-flag state. The agent must keep its current flag set instead of treating an empty feature_flags map as "clear all". The default value of false means feature_flags is authoritative — including legitimately empty.

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

    Parameters specific to the required action.