Module Values.SubscribedPrincipalInputSource

The principal that is to be given a subscriptiong grant.

Sourcetype nonrec t = {
  1. project : SubscribedProjectInput.t option;
    (*

    The project that is to be given a subscription grant.

    *)
  2. user : SubscribedUserInput.t option;
    (*

    The subscribed user.

    *)
  3. group : SubscribedGroupInput.t option;
    (*

    The subscribed group.

    *)
  4. iam : SubscribedIamPrincipalInput.t option;
    (*

    The subscribed IAM principal.

    *)
}
Sourceval make : ?project:??? -> ?user:??? -> ?group:??? -> ?iam:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of ProjectId.t ]) list ]) 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