Module Values.PermissionSetProvisioningStatusMetadataSource

Provides information about the permission set provisioning status.

Sourcetype nonrec t = {
  1. status : StatusValues.t option;
    (*

    The status of the permission set provisioning process.

    *)
  2. requestId : UUId.t option;
    (*

    The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.

    *)
  3. createdDate : Date.t option;
    (*

    The date that the permission set was created.

    *)
}
Sourceval make : ?status:??? -> ?requestId:??? -> ?createdDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUId.t | `Timestamp of Date.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