Module Values.SnapshotLimitsSource

Contains manual snapshot limit information for a directory.

Sourcetype nonrec t = {
  1. manualSnapshotsLimit : Limit.t option;
    (*

    The maximum number of manual snapshots allowed.

    *)
  2. manualSnapshotsCurrentCount : Limit.t option;
    (*

    The current number of manual snapshots of the directory.

    *)
  3. manualSnapshotsLimitReached : ManualSnapshotsLimitReached.t option;
    (*

    Indicates if the manual snapshot limit has been reached.

    *)
}
Sourceval make : ?manualSnapshotsLimit:??? -> ?manualSnapshotsCurrentCount:??? -> ?manualSnapshotsLimitReached:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of ManualSnapshotsLimitReached.t | `Integer of Limit.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