Module Values.ContainerProviderSource

The information about the container provider.

Sourcetype nonrec t = {
  1. type_ : ContainerProviderType.t;
    (*

    The type of the container provider. Amazon EKS is the only supported type as of now.

    *)
  2. id : ClusterId.t;
    (*

    The ID of the container cluster.

    *)
  3. info : ContainerInfo.t option;
    (*

    The information about the container cluster.

    *)
}
Sourceval context_ : string
Sourceval make : ?info:??? -> type_:ContainerProviderType.t -> id:ClusterId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ClusterId.t | `Structure of (string * [> `Structure of (string * [> `String of KubernetesNamespace.t ]) list ]) 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