Module Values_1.GetConnectionStatusResponseSource

Retrieves the Session Manager connection status for a managed node to determine whether it is running and ready to receive Session Manager connections.

Sourcetype nonrec t = {
  1. target : SessionTarget.t option;
    (*

    The ID of the managed node to check connection status.

    *)
  2. status : Values_0.ConnectionStatus.t option;
    (*

    The status of the connection to the managed node.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerError of Values_0.InternalServerError.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?target:??? -> ?status:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerError of Values_0.InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerError of Values_0.InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SessionTarget.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t