Module Values.AddonVersionInfoSource

Information about an add-on version.

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

    The version of the add-on.

    *)
  2. architecture : StringList.t option;
    (*

    The architectures that the version supports.

    *)
  3. computeTypes : StringList.t option;
    (*

    Indicates the compute type of the add-on version.

    *)
  4. compatibilities : Compatibilities.t option;
    (*

    An object representing the compatibilities of a version.

    *)
  5. requiresConfiguration : Boolean.t option;
    (*

    Whether the add-on requires configuration.

    *)
  6. requiresIamPermissions : Boolean.t option;
    (*

    Indicates if the add-on requires IAM Permissions to operate, such as networking permissions.

    *)
}
Sourceval make : ?addonVersion:??? -> ?architecture:??? -> ?computeTypes:??? -> ?compatibilities:??? -> ?requiresConfiguration:??? -> ?requiresIamPermissions:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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