Module Values.UpdateLabelsPayloadSource

An object representing a Kubernetes label change for a managed node group.

Sourcetype nonrec t = {
  1. addOrUpdateLabels : LabelsMap.t option;
    (*

    The Kubernetes labels to add or update.

    *)
  2. removeLabels : LabelsKeyList.t option;
    (*

    The Kubernetes labels to remove.

    *)
}
Sourceval make : ?addOrUpdateLabels:??? -> ?removeLabels:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Map of ([> `String of LabelKey.t ] * [> `String of LabelValue.t ]) list ]) 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