Module Values.BatchDeleteAgentErrorSource

An object representing the agent or data collector that failed to delete, each containing agentId, errorMessage, and errorCode.

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

    The ID of the agent or data collector to delete.

    *)
  2. errorMessage : String_.t option;
    (*

    The description of the error that occurred for the delete failed agent.

    *)
  3. errorCode : DeleteAgentErrorCode.t option;
    (*

    The type of error that occurred for the delete failed agent. Valid status are: AGENT_IN_USE | NOT_FOUND | INTERNAL_SERVER_ERROR.

    *)
}
Sourceval make : ?agentId:??? -> ?errorMessage:??? -> ?errorCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AgentId.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