Module Values.ReplicationConfigurationReplicatedDiskSource

Replication Configuration replicated disk.

Sourcetype nonrec t = {
  1. deviceName : BoundedString.t option;
    (*

    Replication Configuration replicated disk device name.

    *)
  2. isBootDisk : Boolean.t option;
    (*

    Replication Configuration replicated disk boot disk.

    *)
  3. stagingDiskType : ReplicationConfigurationReplicatedDiskStagingDiskType.t option;
    (*

    Replication Configuration replicated disk staging disk type.

    *)
  4. iops : PositiveInteger.t option;
    (*

    Replication Configuration replicated disk IOPs.

    *)
  5. throughput : PositiveInteger.t option;
    (*

    Replication Configuration replicated disk throughput.

    *)
}
Sourceval make : ?deviceName:??? -> ?isBootDisk:??? -> ?stagingDiskType:??? -> ?iops:??? -> ?throughput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Long of PositiveInteger.t | `String of BoundedString.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