Module Values.ConversionPropertiesSource

Properties of a conversion job

Sourcetype nonrec t = {
  1. volumeToConversionMap : VolumeToConversionMap.t option;
    (*

    A mapping between the volumes being converted and the converted snapshot ids

    *)
  2. rootVolumeName : LargeBoundedString.t option;
    (*

    The root volume name of a conversion job

    *)
  3. forceUefi : Boolean.t option;
    (*

    Whether the volume being converted uses UEFI or not

    *)
  4. dataTimestamp : LargeBoundedString.t option;
    (*

    The timestamp of when the snapshot being converted was taken

    *)
  5. volumeToVolumeSize : VolumeToSizeMap.t option;
    (*

    A mapping between the volumes and their sizes

    *)
  6. volumeToProductCodes : VolumeToProductCodes.t option;
    (*

    A mapping between the volumes being converted and the product codes associated with them

    *)
}
Sourceval make : ?volumeToConversionMap:??? -> ?rootVolumeName:??? -> ?forceUefi:??? -> ?dataTimestamp:??? -> ?volumeToVolumeSize:??? -> ?volumeToProductCodes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of LargeBoundedString.t ] * [> `List of [> `Structure of (string * [> `Enum of string | `String of ProductCodeId.t ]) list ] list | `Long of PositiveInteger.t | `Map of ([> `String of EbsSnapshot.t ] * [> `String of EbsSnapshot.t ]) list ]) list | `String of LargeBoundedString.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