Module Values.DataReplicationInfoReplicatedDiskSource

A disk that should be replicated.

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

    The name of the device.

    *)
  2. totalStorageBytes : PositiveInteger.t option;
    (*

    The total amount of data to be replicated in bytes.

    *)
  3. replicatedStorageBytes : PositiveInteger.t option;
    (*

    The amount of data replicated so far in bytes.

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

    The amount of data to be rescanned in bytes.

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

    The size of the replication backlog in bytes.

    *)
  6. volumeStatus : VolumeStatus.t option;
    (*

    The status of the volume.

    *)
}
Sourceval make : ?deviceName:??? -> ?totalStorageBytes:??? -> ?replicatedStorageBytes:??? -> ?rescannedStorageBytes:??? -> ?backloggedStorageBytes:??? -> ?volumeStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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