Module Values.DiskMapSource

Describes a block storage disk mapping.

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

    The original disk path exposed to the instance (for example, /dev/sdh).

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

    The new disk name (my-new-disk).

    *)
}
Sourceval make : ?originalDiskPath:??? -> ?newDiskName:??? -> 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