Module Values.InsightSource

A check that provides recommendations to remedy potential upgrade-impacting issues.

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

    The ID of the insight.

    *)
  2. name : String_.t option;
    (*

    The name of the insight.

    *)
  3. category : Category.t option;
    (*

    The category of the insight.

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

    The Kubernetes minor version associated with an insight if applicable.

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

    The time Amazon EKS last successfully completed a refresh of this insight check on the cluster.

    *)
  6. lastTransitionTime : Timestamp.t option;
    (*

    The time the status of the insight last changed.

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

    The description of the insight which includes alert criteria, remediation recommendation, and additional resources (contains Markdown).

    *)
  8. insightStatus : InsightStatus.t option;
    (*

    An object containing more detail on the status of the insight resource.

    *)
  9. recommendation : String_.t option;
    (*

    A summary of how to remediate the finding of this insight if applicable.

    *)
  10. additionalInfo : AdditionalInfoMap.t option;
    (*

    Links to sources that provide additional context on the insight.

    *)
  11. resources : InsightResourceDetails.t option;
    (*

    The details about each resource listed in the insight check result.

    *)
  12. categorySpecificSummary : InsightCategorySpecificSummary.t option;
    (*

    Summary information that relates to the category of the insight. Currently only returned with certain insights having category UPGRADE_READINESS.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?category:??? -> ?kubernetesVersion:??? -> ?lastRefreshTime:??? -> ?lastTransitionTime:??? -> ?description:??? -> ?insightStatus:??? -> ?recommendation:??? -> ?additionalInfo:??? -> ?resources:??? -> ?categorySpecificSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Timestamp of Timestamp.t ]) list ] list | `String of String_.t ]) list ] list | `String of String_.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