Module Values.GeneralLabelsSettingsSource

Contains filters for the object labels returned by DetectLabels. Filters can be inclusive, exclusive, or a combination of both and can be applied to individual labels or entire label categories. To see a list of label categories, see Detecting Labels.

Sourcetype nonrec t = {
  1. labelInclusionFilters : GeneralLabelsFilterList.t option;
    (*

    The labels that should be included in the return from DetectLabels.

    *)
  2. labelExclusionFilters : GeneralLabelsFilterList.t option;
    (*

    The labels that should be excluded from the return from DetectLabels.

    *)
  3. labelCategoryInclusionFilters : GeneralLabelsFilterList.t option;
    (*

    The label categories that should be included in the return from DetectLabels.

    *)
  4. labelCategoryExclusionFilters : GeneralLabelsFilterList.t option;
    (*

    The label categories that should be excluded from the return from DetectLabels.

    *)
}
Sourceval make : ?labelInclusionFilters:??? -> ?labelExclusionFilters:??? -> ?labelCategoryInclusionFilters:??? -> ?labelCategoryExclusionFilters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of GeneralLabelsFilterValue.t ] 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