Module Values.AnomalySourceMetadataSource

Metadata about the detection source that generates proactive anomalies. The anomaly is detected using analysis of the metric data
 over a period of time

Sourcetype nonrec t = {
  1. source : AnomalySource.t option;
    (*

    The source of the anomaly.

    *)
  2. sourceResourceName : ResourceName.t option;
    (*

    The name of the anomaly's resource.

    *)
  3. sourceResourceType : ResourceType.t option;
    (*

    The anomaly's resource type.

    *)
}
Sourceval make : ?source:??? -> ?sourceResourceName:??? -> ?sourceResourceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AnomalySource.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