Module Values.ClientStatSource

Details about clients using the deprecated resources.

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

    The user agent of the Kubernetes client using the deprecated resource.

    *)
  2. numberOfRequestsLast30Days : Integer.t option;
    (*

    The number of requests from the Kubernetes client seen over the last 30 days.

    *)
  3. lastRequestTime : Timestamp.t option;
    (*

    The timestamp of the last request seen from the Kubernetes client.

    *)
}
Sourceval make : ?userAgent:??? -> ?numberOfRequestsLast30Days:??? -> ?lastRequestTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `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