Module Values.AccountPoolSummarySource

The summary of the account pool.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    The ID of the domain.

    *)
  2. id : AccountPoolId.t option;
    (*

    The ID of the account pool.

    *)
  3. name : AccountPoolName.t option;
    (*

    The name of the account pool.

    *)
  4. resolutionStrategy : ResolutionStrategy.t option;
    (*

    The mechanism used to resolve the account selection from the account pool.

    *)
  5. domainUnitId : DomainUnitId.t option;
    (*

    The ID of the domain unit.

    *)
  6. createdBy : CreatedBy.t option;
    (*

    The user who created the account pool.

    *)
  7. updatedBy : UpdatedBy.t option;
    (*

    The user who updated the account pool.

    *)
}
Sourceval make : ?domainId:??? -> ?id:??? -> ?name:??? -> ?resolutionStrategy:??? -> ?domainUnitId:??? -> ?createdBy:??? -> ?updatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.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