@nebius/js-sdk - v0.2.54
    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

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

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Response message for GetVersion RPC containing required action for the agent.

            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.logging.agentmanager.v1.GetVersionResponse"

    Contains the fully qualified protobuf type name.

    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.

    Type Declaration

    • [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.

    Type Declaration