package kubecaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Horizontal_pod_autoscaler_condition describes the state of a Horizontal_pod_autoscaler at a certain point.

type t
val to_yojson : t -> Yojson.Safe.t
val make : type_:string -> status:string -> ?reason:string -> ?message:string -> ?last_transition_time: Kubernetes.Definitions.Apimachinery.Pkg.Apis.Meta.V1.Time.t -> unit -> t

last_transition_time is the last time the condition transitioned from one status to another

val message : t -> string option

message is a human_readable explanation containing details about the transition

val reason : t -> string option

reason is the reason for the condition's last transition.

val status : t -> string

status is the status of the condition (true, False, Unknown)

val type_ : t -> string

type describes the current condition

module Object : Object.S with type value := t