Module Values.RuntimeEnvironmentSource

Configuration settings that identify the operating system for an application resource. This can also include a compatibility layer and other drivers. A runtime environment can be one of the following: For Linux applications Ubuntu 22.04 LTS (Type=UBUNTU, Version=22_04_LTS) For Windows applications Microsoft Windows Server 2022 Base (Type=WINDOWS, Version=2022) Proton 10.0-4 (Type=PROTON, Version=20260204) Proton 9.0-2 (Type=PROTON, Version=20250516) Proton 8.0-5 (Type=PROTON, Version=20241007) Proton 8.0-2c (Type=PROTON, Version=20230704)

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

    The operating system and other drivers. For Proton, this also includes the Proton compatibility layer.

    *)
  2. version : RuntimeEnvironmentVersion.t;
    (*

    Versioned container environment for the application operating system.

    *)
}
Sourceval context_ : string
Sourceval make : type_:RuntimeEnvironmentType.t -> version:RuntimeEnvironmentVersion.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RuntimeEnvironmentVersion.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