Module Values.AppComponentComplianceSource

Defines the compliance of an Application Component against the resiliency policy.

Sourcetype nonrec t = {
  1. appComponentName : EntityId.t option;
    (*

    Name of the Application Component.

    *)
  2. compliance : AssessmentCompliance.t option;
    (*

    The compliance of the Application Component against the resiliency policy.

    *)
  3. cost : Cost.t option;
    (*

    The cost for the application.

    *)
  4. message : String500.t option;
    (*

    The compliance message.

    *)
  5. resiliencyScore : ResiliencyScore.t option;
    (*

    The current resiliency score for the application.

    *)
  6. status : ComplianceStatus.t option;
    (*

    Status of the action.

    *)
}
Sourceval make : ?appComponentName:??? -> ?compliance:??? -> ?cost:??? -> ?message:??? -> ?resiliencyScore:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `Enum of string ] * [> `Structure of (string * [> `Enum of string | `Integer of Seconds.t | `String of String500.t ]) list ]) list | `String of EntityId.t | `Structure of (string * [> `Double of Double.t | `Enum of string | `Map of ([> `Enum of string ] * [> `Double of Double.t | `Structure of (string * [> `Double of Double.t | `Long of Long.t ]) list ]) list | `String of CurrencyCode.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