Module Values.ConfigRecommendationSource

Defines a recommendation configuration.

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

    Name of the Application Component.

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

    The current compliance against the resiliency policy before applying the configuration change.

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

    The cost for the application.

    *)
  4. description : EntityDescription.t option;
    (*

    The optional description for an app.

    *)
  5. haArchitecture : HaArchitecture.t option;
    (*

    The architecture type.

    *)
  6. name : EntityName.t option;
    (*

    The name of the recommendation configuration.

    *)
  7. optimizationType : ConfigRecommendationOptimizationType.t option;
    (*

    The type of optimization.

    *)
  8. recommendationCompliance : RecommendationCompliance.t option;
    (*

    The expected compliance against the resiliency policy after applying the configuration change.

    *)
  9. referenceId : SpecReferenceId.t option;
    (*

    Reference identifier for the recommendation configuration.

    *)
  10. suggestedChanges : SuggestedChangesList.t option;
    (*

    List of the suggested configuration changes.

    *)
}
Sourceval make : ?appComponentName:??? -> ?compliance:??? -> ?cost:??? -> ?description:??? -> ?haArchitecture:??? -> ?name:??? -> ?optimizationType:??? -> ?recommendationCompliance:??? -> ?referenceId:??? -> ?suggestedChanges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of EntityDescription.t ] list | `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 | `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