Module Values.DeprecationDetailSource

The summary information about deprecated resource usage for an insight check in the UPGRADE_READINESS category.

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

    The deprecated version of the resource.

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

    The newer version of the resource to migrate to if applicable.

    *)
  3. stopServingVersion : String_.t option;
    (*

    The version of the software where the deprecated resource version will stop being served.

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

    The version of the software where the newer resource version became available to migrate to if applicable.

    *)
  5. clientStats : ClientStats.t option;
    (*

    Details about Kubernetes clients using the deprecated resources.

    *)
}
Sourceval make : ?usage:??? -> ?replacedWith:??? -> ?stopServingVersion:??? -> ?startServingReplacementVersion:??? -> ?clientStats:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Timestamp of Timestamp.t ]) list ] list | `String of String_.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