Module Values.FleetMemberSource

The fleet member.

Sourcetype nonrec t = {
  1. farmId : FarmId.t option;
    (*

    The farm ID.

    *)
  2. fleetId : FleetId.t option;
    (*

    The fleet ID.

    *)
  3. principalId : IdentityCenterPrincipalId.t option;
    (*

    The principal ID of the fleet member.

    *)
  4. principalType : PrincipalType.t option;
    (*

    The principal type of the fleet member.

    *)
  5. identityStoreId : IdentityStoreId.t option;
    (*

    The identity store ID.

    *)
  6. membershipLevel : MembershipLevel.t option;
    (*

    The fleet member's membership level.

    *)
}
Sourceval make : ?farmId:??? -> ?fleetId:??? -> ?principalId:??? -> ?principalType:??? -> ?identityStoreId:??? -> ?membershipLevel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FarmId.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