Module Values.ConfigurationCheckOperationSource

Represents a configuration check operation that has been executed against an application.

Sourcetype nonrec t = {
  1. id : OperationId.t option;
    (*

    The unique identifier of the configuration check operation.

    *)
  2. applicationId : ApplicationId.t option;
    (*

    The ID of the application against which the configuration check was performed.

    *)
  3. status : OperationStatus.t option;
    (*

    The current status of the configuration check operation.

    *)
  4. statusMessage : String_.t option;
    (*

    A message providing additional details about the status of the configuration check operation.

    *)
  5. configurationCheckId : ConfigurationCheckType.t option;
    (*

    The unique identifier of the configuration check that was performed.

    *)
  6. configurationCheckName : String_.t option;
    (*

    The name of the configuration check that was performed.

    *)
  7. configurationCheckDescription : String_.t option;
    (*

    A description of the configuration check that was performed.

    *)
  8. startTime : Timestamp.t option;
    (*

    The time at which the configuration check operation started.

    *)
  9. endTime : Timestamp.t option;
    (*

    The time at which the configuration check operation completed.

    *)
  10. ruleStatusCounts : RuleStatusCounts.t option;
    (*

    A summary of all the rule results, showing counts for each status type.

    *)
}
Sourceval make : ?id:??? -> ?applicationId:??? -> ?status:??? -> ?statusMessage:??? -> ?configurationCheckId:??? -> ?configurationCheckName:??? -> ?configurationCheckDescription:??? -> ?startTime:??? -> ?endTime:??? -> ?ruleStatusCounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of OperationId.t | `Structure of (string * [> `Integer of Integer.t ]) 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