Module Values.DataCollectionOptionsSource

Information about the data collection options enabled for a VM cluster.

Sourcetype nonrec t = {
  1. isDiagnosticsEventsEnabled : Boolean.t option;
    (*

    Indicates whether diagnostic collection is enabled for the VM cluster.

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

    Indicates whether health monitoring is enabled for the VM cluster.

    *)
  3. isIncidentLogsEnabled : Boolean.t option;
    (*

    Indicates whether incident logs are enabled for the cloud VM cluster.

    *)
}
Sourceval make : ?isDiagnosticsEventsEnabled:??? -> ?isHealthMonitoringEnabled:??? -> ?isIncidentLogsEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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