package kubecaml

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

List_meta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {object_meta, List_meta}.

type t
val to_yojson : t -> Yojson.Safe.t
val make : ?self_link:string -> ?resource_version:string -> ?continue:string -> unit -> t
val continue : t -> string option

continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resource_version field returned when using this continue value will be identical to the value in the first response.

val resource_version : t -> string option

String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read_only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency

self_link is a Url representing this object. Populated by the system. Read_only.

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

Innovation. Community. Security.