Module Values.ImagePackageSource

A software package that's installed on top of the base image to create a customized image.

Sourcetype nonrec t = {
  1. packageName : NonEmptyString.t option;
    (*

    The name of the package that's reported to the operating system package manager.

    *)
  2. packageVersion : NonEmptyString.t option;
    (*

    The version of the package that's reported to the operating system package manager.

    *)
}
Sourceval make : ?packageName:??? -> ?packageVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t ]) 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