Module Values.BatchDeleteAgentsResponseSource

Deletes one or more agents or collectors as specified by ID. Deleting an agent or collector does not delete the previously discovered data. To delete the data collected, use StartBatchDeleteConfigurationTask.

Sourcetype nonrec t = {
  1. errors : BatchDeleteAgentErrors.t option;
    (*

    A list of agent IDs that failed to delete during the deletion task, each paired with an error message.

    *)
}
Sourcetype nonrec error = [
  1. | `AuthorizationErrorException of AuthorizationErrorException.t
  2. | `InvalidParameterException of InvalidParameterException.t
  3. | `InvalidParameterValueException of InvalidParameterValueException.t
  4. | `ServerInternalErrorException of ServerInternalErrorException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?errors:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AuthorizationErrorException of AuthorizationErrorException.t | `InvalidParameterException of InvalidParameterException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `ServerInternalErrorException of ServerInternalErrorException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AuthorizationErrorException of AuthorizationErrorException.t | `InvalidParameterException of InvalidParameterException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `ServerInternalErrorException of ServerInternalErrorException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of AgentId.t ]) list ] list ]) 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