Module Values.AgentConfigurationStatusSource

Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation, and whether the agent configuration was updated.

Sourcetype nonrec t = {
  1. agentId : String_.t option;
    (*

    The agent ID.

    *)
  2. operationSucceeded : Boolean.t option;
    (*

    Information about the status of the StartDataCollection and StopDataCollection operations. The system has recorded the data collection operation. The agent receives this command the next time it polls for a new command.

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

    A description of the operation performed.

    *)
}
Sourceval make : ?agentId:??? -> ?operationSucceeded:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.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