Module Values.GroupingRecommendationSource

Creates a new grouping recommendation.

Sourcetype nonrec t = {
  1. confidenceLevel : GroupingRecommendationConfidenceLevel.t option;
    (*

    Indicates the confidence level of Resilience Hub on the grouping recommendation.

    *)
  2. creationTime : TimeStamp.t option;
    (*

    Indicates the creation time of the grouping recommendation.

    *)
  3. groupingAppComponent : GroupingAppComponent.t option;
    (*

    Indicates the name of the recommended Application Component (AppComponent).

    *)
  4. groupingRecommendationId : String255.t option;
    (*

    Indicates all the reasons available for rejecting a grouping recommendation.

    *)
  5. recommendationReasons : String255List.t option;
    (*

    Indicates all the reasons available for rejecting a grouping recommendation.

    *)
  6. rejectionReason : GroupingRecommendationRejectionReason.t option;
    (*

    Indicates the reason you had selected while rejecting a grouping recommendation.

    *)
  7. resources : GroupingResourceList.t option;
    (*

    Indicates the resources that are grouped in a recommended AppComponent.

    *)
  8. score : Double.t option;
    (*

    Indicates the confidence level of the grouping recommendation.

    *)
  9. status : GroupingRecommendationStatusType.t option;
    (*

    Indicates the status of grouping resources into AppComponents.

    *)
}
Sourceval make : ?confidenceLevel:??? -> ?creationTime:??? -> ?groupingAppComponent:??? -> ?groupingRecommendationId:??? -> ?recommendationReasons:??? -> ?rejectionReason:??? -> ?resources:??? -> ?score:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `List of [> `String of String255.t | `Structure of (string * [> `List of [> `String of String255.t ] list | `String of String255.t | `Structure of (string * [> `Enum of string | `String of String255.t ]) list ]) list ] list | `String of String255.t | `Structure of (string * [> `String of EntityName255.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