Module Values.AddonInfoSource

Information about an add-on.

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

    The name of the add-on.

    *)
  2. type_ : String_.t option;
    (*

    The type of the add-on.

    *)
  3. addonVersions : AddonVersionInfoList.t option;
    (*

    An object representing information about available add-on versions and compatible Kubernetes versions.

    *)
  4. publisher : String_.t option;
    (*

    The publisher of the add-on.

    *)
  5. owner : String_.t option;
    (*

    The owner of the add-on.

    *)
  6. marketplaceInformation : MarketplaceInformation.t option;
    (*

    Information about the add-on from the Amazon Web Services Marketplace.

    *)
  7. defaultNamespace : String_.t option;
    (*

    The default Kubernetes namespace where this addon is typically installed if no custom namespace is specified.

    *)
}
Sourceval make : ?addonName:??? -> ?type_:??? -> ?addonVersions:??? -> ?publisher:??? -> ?owner:??? -> ?marketplaceInformation:??? -> ?defaultNamespace:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list | `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `String of String_.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