Module Values.ManagedAgentSource

Details about the managed agent status for the container.

Sourcetype nonrec t = {
  1. lastStartedAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the managed agent was last started.

    *)
  2. name : ManagedAgentName.t option;
    (*

    The name of the managed agent. When the execute command feature is turned on, the managed agent name is ExecuteCommandAgent.

    *)
  3. reason : String_.t option;
    (*

    The reason for why the managed agent is in the state it is in.

    *)
  4. lastStatus : String_.t option;
    (*

    The last known status of the managed agent.

    *)
}
Sourceval make : ?lastStartedAt:??? -> ?name:??? -> ?reason:??? -> ?lastStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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