Module Values.OpenZFSUserOrGroupQuotaSource

Used to configure quotas that define how much storage a user or group can use on an FSx for OpenZFS volume. For more information, see Volume properties in the FSx for OpenZFS User Guide.

Sourcetype nonrec t = {
  1. type_ : OpenZFSQuotaType.t;
    (*

    Specifies whether the quota applies to a user or group.

    *)
  2. id : IntegerNoMax.t;
    (*

    The ID of the user or group that the quota applies to.

    *)
  3. storageCapacityQuotaGiB : IntegerNoMax.t;
    (*

    The user or group's storage quota, in gibibytes (GiB).

    *)
}
Sourceval context_ : string
Sourceval make : type_:OpenZFSQuotaType.t -> id:IntegerNoMax.t -> storageCapacityQuotaGiB:IntegerNoMax.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of IntegerNoMax.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