Module Values.BlueprintSource

Describes a blueprint (a virtual private server image).

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

    The ID for the virtual private server image (app_wordpress_x_x or app_lamp_x_x).

    *)
  2. name : ResourceName.t option;
    (*

    The friendly name of the blueprint (Amazon Linux).

    *)
  3. group : NonEmptyString.t option;
    (*

    The group name of the blueprint (amazon-linux).

    *)
  4. type_ : BlueprintType.t option;
    (*

    The type of the blueprint (os or app).

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

    The description of the blueprint.

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

    A Boolean value indicating whether the blueprint is active. Inactive blueprints are listed to support customers with existing instances but are not necessarily available for launch of new instances. Blueprints are marked inactive when they become outdated due to operating system updates or new application releases.

    *)
  7. minPower : Integer.t option;
    (*

    The minimum bundle power required to run this blueprint. For example, you need a bundle with a power value of 500 or more to create an instance that uses a blueprint with a minimum power value of 500. 0 indicates that the blueprint runs on all instance sizes.

    *)
  8. version : String_.t option;
    (*

    The version number of the operating system, application, or stack ( 2016.03.0).

    *)
  9. versionCode : String_.t option;
    (*

    The version code.

    *)
  10. productUrl : String_.t option;
    (*

    The product URL to learn more about the image or blueprint.

    *)
  11. licenseUrl : String_.t option;
    (*

    The end-user license agreement URL for the image or blueprint.

    *)
  12. platform : InstancePlatform.t option;
    (*

    The operating system platform (either Linux/Unix-based or Windows Server-based) of the blueprint.

    *)
  13. appCategory : AppCategory.t option;
    (*

    Virtual computer blueprints that are supported by Lightsail for Research. This parameter only applies to Lightsail for Research resources.

    *)
}
Sourceval make : ?blueprintId:??? -> ?name:??? -> ?group:??? -> ?type_:??? -> ?description:??? -> ?isActive:??? -> ?minPower:??? -> ?version:??? -> ?versionCode:??? -> ?productUrl:??? -> ?licenseUrl:??? -> ?platform:??? -> ?appCategory:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `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