Module Values.AnalysisRuleSource

A specification about how data from the configured table can be used in a query.

Sourcetype nonrec t = {
  1. collaborationId : CollaborationIdentifier.t option;
    (*

    The unique ID for the associated collaboration.

    *)
  2. type_ : AnalysisRuleType.t option;
    (*

    The type of analysis rule.

    *)
  3. name : TableAlias.t option;
    (*

    The name for the analysis rule.

    *)
  4. createTime : Timestamp.t option;
    (*

    The time the analysis rule was created.

    *)
  5. updateTime : Timestamp.t option;
    (*

    The time the analysis rule was last updated.

    *)
  6. policy : AnalysisRulePolicy.t option;
    (*

    A policy that describes the associated data usage limitations.

    *)
  7. collaborationPolicy : ConfiguredTableAssociationAnalysisRulePolicy.t option;
  8. consolidatedPolicy : ConsolidatedPolicy.t option;
    (*

    The consolidated policy for the analysis rule.

    *)
}
Sourceval make : ?collaborationId:??? -> ?type_:??? -> ?name:??? -> ?createTime:??? -> ?updateTime:??? -> ?policy:??? -> ?collaborationPolicy:??? -> ?consolidatedPolicy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CollaborationIdentifier.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of AnalysisRuleColumnName.t | `Structure of (string * [> `Enum of string | `Integer of AggregationConstraintMinimumInteger.t | `List of [> `String of AnalysisRuleColumnName.t ] list | `String of AnalysisRuleColumnName.t | `Structure of (string * [> `List of [> `String of AnalysisRuleColumnName.t ] list ]) list ]) list ] list | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] list ]) list ]) list ]) list ]) list | `Timestamp of Timestamp.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