Module Values.UserPendingChangesSource

Returns information about the status of the changes pending for the ActiveMQ user.

Sourcetype nonrec t = {
  1. consoleAccess : bool option;
    (*

    Enables access to the the ActiveMQ Web Console for the ActiveMQ user.

    *)
  2. groups : string list option;
    (*

    The list of groups (20 maximum) to which the ActiveMQ user belongs. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.

    *)
  3. pendingChange : ChangeType.t option;
    (*

    Required. The type of change pending for the ActiveMQ user.

    *)
}
Sourceval make : ?consoleAccess:??? -> ?groups:??? -> ?pendingChange:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] 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