Module Values.DataReplicationInfoReplicatedDiskSource

Request to query disks replicated.

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

    Request to query device name.

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

    Request to query total amount of data replicated in bytes.

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

    Request to query amount of data replicated in bytes.

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

    Request to query amount of data rescanned in bytes.

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

    Request to query data replication backlog size in bytes.

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