npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@dishantlangayan/sc-plugin-broker

v0.6.0

Published

Commands to interact with Solace Event Broker.

Downloads

464

Readme

@dishantlangayan/sc-plugin-broker

Commands to interact with Solace Event Broker.

oclif Version Downloads/week

[!NOTE] This plugin is packaged with the Solace Cloud CLI but can be use independently when working with self-managed Software Event Brokers.

Usage

$ npm install -g @dishantlangayan/sc-plugin-broker
$ sc COMMAND
running command...
$ sc (--version)
@dishantlangayan/sc-plugin-broker/0.6.0 linux-x64 node-v25.9.0
$ sc --help [COMMAND]
USAGE
  $ sc COMMAND
...

Resources

This is not an officially supported Solace product.

For more information try these resources:

Testing

## Run all tests
npm test

## Run specific test file
npm test -- test/commands/broker/queue/create.test.ts

Writing Tests

We use test helpers to eliminate duplication and standardize testing patterns. See the Test Helpers Guide for detailed documentation.

Contributing

Contributions are encouraged! Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Authors

See the list of contributors who participated in this project.

License

See the LICENSE file for details.

Commands

sc broker acl-profile client-connect-exceptions create

Create a client connect exception for an ACL Profile on a Solace Event Broker.

USAGE
  $ sc broker acl-profile client-connect-exceptions create -a <value> -c <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n
    <value>] [-v <value>]

FLAGS
  -a, --acl-profile-name=<value>                  (required) The name of the ACL Profile.
  -b, --broker-id=<value>                         Stored broker identifier. If not provided, uses the default broker.
  -c, --client-connect-exception-address=<value>  (required) The IP address/netmask of the client connect exception in
                                                  CIDR form (e.g., 192.168.1.0/24).
  -n, --broker-name=<value>                       Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>                      The name of the Message VPN.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Create a client connect exception for an ACL Profile on a Solace Event Broker.

  Adds an exception to the ACL Profile that allows or disallows clients connecting from specific IP addresses. The
  exception is expressed as an IP address/netmask in CIDR form. The creation is synchronized to HA mates and replication
  sites via config-sync.

EXAMPLES
  $ sc broker acl-profile client-connect-exceptions create --acl-profile-name=myProfile --client-connect-exception-address=192.168.1.0/24

  $ sc broker acl-profile client-connect-exceptions create --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --client-connect-exception-address=10.0.0.0/8

See code: src/commands/broker/acl-profile/client-connect-exceptions/create.ts

sc broker acl-profile client-connect-exceptions delete

Delete a client connect exception from an ACL Profile on a Solace Event Broker.

USAGE
  $ sc broker acl-profile client-connect-exceptions delete -a <value> -c <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n
    <value>] [-v <value>] [--no-prompt]

FLAGS
  -a, --acl-profile-name=<value>                  (required) The name of the ACL Profile.
  -b, --broker-id=<value>                         Stored broker identifier. If not provided, uses the default broker.
  -c, --client-connect-exception-address=<value>  (required) The IP address/netmask of the client connect exception to
                                                  delete in CIDR form.
  -n, --broker-name=<value>                       Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>                      The name of the Message VPN.
      --no-prompt                                 Skip confirmation prompt and proceed with deletion.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Delete a client connect exception from an ACL Profile on a Solace Event Broker.

  Removes the specified client connect exception from the ACL Profile. This is a destructive operation. The deletion is
  synchronized to HA mates and replication sites via config-sync.

  By default, a confirmation prompt is shown before deletion. Use --no-prompt to skip confirmation.

EXAMPLES
  $ sc broker acl-profile client-connect-exceptions delete --acl-profile-name=myProfile --client-connect-exception-address=192.168.1.0/24

  $ sc broker acl-profile client-connect-exceptions delete --acl-profile-name=myProfile --client-connect-exception-address=10.0.0.0/8 --no-prompt

  $ sc broker acl-profile client-connect-exceptions delete --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --client-connect-exception-address=172.16.0.0/12 --no-prompt

See code: src/commands/broker/acl-profile/client-connect-exceptions/delete.ts

sc broker acl-profile client-connect-exceptions list

List client connect exceptions for an ACL Profile from a Solace Event Broker.

USAGE
  $ sc broker acl-profile client-connect-exceptions list -a <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>]

FLAGS
  -a, --acl-profile-name=<value>  (required) The name of the ACL Profile.
  -b, --broker-id=<value>         Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>       Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>      The name of the Message VPN.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  List client connect exceptions for an ACL Profile from a Solace Event Broker.

  Retrieves and displays all client connect exceptions configured for the specified ACL Profile using the SEMP Monitor
  API.

EXAMPLES
  $ sc broker acl-profile client-connect-exceptions list --acl-profile-name=myProfile

  $ sc broker acl-profile client-connect-exceptions list --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default

See code: src/commands/broker/acl-profile/client-connect-exceptions/list.ts

sc broker acl-profile create

Create an ACL Profile on a Solace Event Broker.

USAGE
  $ sc broker acl-profile create -a <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>] [--client-connect-default-action allow|disallow] [--publish-topic-default-action allow|disallow]
    [--subscribe-share-name-default-action allow|disallow] [--subscribe-topic-default-action allow|disallow]

FLAGS
  -a, --acl-profile-name=<value>                      (required) The name of the ACL Profile to create.
  -b, --broker-id=<value>                             Stored broker identifier. If not provided, uses the default
                                                      broker.
  -n, --broker-name=<value>                           Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>                          The name of the Message VPN.
      --client-connect-default-action=<option>        The default action to take when a client using the ACL Profile
                                                      connects.
                                                      <options: allow|disallow>
      --publish-topic-default-action=<option>         The default action to take when a client using the ACL Profile
                                                      publishes to a topic.
                                                      <options: allow|disallow>
      --subscribe-share-name-default-action=<option>  The default action to take when a client using the ACL Profile
                                                      subscribes to a share-name subscription.
                                                      <options: allow|disallow>
      --subscribe-topic-default-action=<option>       The default action to take when a client using the ACL Profile
                                                      subscribes to a topic.
                                                      <options: allow|disallow>

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Create an ACL Profile on a Solace Event Broker.

  Any attribute missing from the request will be set to its default value. The creation of instances of this object are
  synchronized to HA mates and replication sites via config-sync.

EXAMPLES
  $ sc broker acl-profile create --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default

  $ sc broker acl-profile create --broker-id=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --client-connect-default-action=allow

  $ sc broker acl-profile create --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --publish-topic-default-action=allow --subscribe-topic-default-action=allow

  $ sc broker acl-profile create --acl-profile-name=myProfile

See code: src/commands/broker/acl-profile/create.ts

sc broker acl-profile delete

Delete an ACL Profile from a Solace Event Broker.

USAGE
  $ sc broker acl-profile delete -a <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>] [--no-prompt]

FLAGS
  -a, --acl-profile-name=<value>  (required) The name of the ACL Profile to delete.
  -b, --broker-id=<value>         Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>       Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>      The name of the Message VPN.
      --no-prompt                 Skip confirmation prompt and proceed with deletion.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Delete an ACL Profile from a Solace Event Broker.

  Deletes the specified ACL Profile from the Message VPN. This is a destructive operation that removes the ACL Profile.
  Any clients or client usernames using this profile should be updated to use a different profile before deletion.

  The deletion is synchronized to HA mates and replication sites via config-sync.

  By default, a confirmation prompt is shown before deletion. Use --no-prompt to skip confirmation.

EXAMPLES
  $ sc broker acl-profile delete --acl-profile-name=myProfile --msg-vpn-name=default

  $ sc broker acl-profile delete --broker-name=dev-broker --acl-profile-name=myProfile

  $ sc broker acl-profile delete --acl-profile-name=myProfile --no-prompt

  $ sc broker acl-profile delete --broker-id=prod --acl-profile-name=tempProfile --msg-vpn-name=production --no-prompt

See code: src/commands/broker/acl-profile/delete.ts

sc broker acl-profile display

Display ACL Profile information from a Solace Event Broker.

USAGE
  $ sc broker acl-profile display -a <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>]

FLAGS
  -a, --acl-profile-name=<value>  (required) The name of the ACL Profile to display.
  -b, --broker-id=<value>         Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>       Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>      The name of the Message VPN.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Display ACL Profile information from a Solace Event Broker.

  Retrieves and displays detailed information about an ACL Profile using the SEMP Monitor API, including configuration
  and default actions.

EXAMPLES
  $ sc broker acl-profile display --acl-profile-name=myProfile --msg-vpn-name=default

  $ sc broker acl-profile display --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default

  $ sc broker acl-profile display --acl-profile-name=myProfile

See code: src/commands/broker/acl-profile/display.ts

sc broker acl-profile list

List ACL Profiles from a Solace Event Broker.

USAGE
  $ sc broker acl-profile list [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v <value>]
    [--acl-profile-name <value>] [-a] [-c <value>] [-s <value>]

FLAGS
  -a, --all                       Display all ACL profiles (auto-pagination).
  -b, --broker-id=<value>         Stored broker identifier. If not provided, uses the default broker.
  -c, --count=<value>             [default: 10] Number of ACL profiles to display per page.
  -n, --broker-name=<value>       Stored broker name. If not provided, uses the default broker.
  -s, --select=<value>            Comma-separated list of attributes to display (max 10).
  -v, --msg-vpn-name=<value>      The name of the Message VPN.
      --acl-profile-name=<value>  Filter ACL profiles by name. Supports * wildcard.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  List ACL Profiles from a Solace Event Broker.

  Retrieves and displays ACL Profiles from the specified Message VPN using the SEMP Monitor API.
  Supports filtering by name (with wildcards), custom attribute selection, and pagination.

EXAMPLES
  $ sc broker acl-profile list

  $ sc broker acl-profile list --count=20

  $ sc broker acl-profile list --acl-profile-name="client*"

  $ sc broker acl-profile list --select=aclProfileName,clientConnectDefaultAction,publishTopicDefaultAction

  $ sc broker acl-profile list --all

  $ sc broker acl-profile list --acl-profile-name="*custom*" --count=5 --all

See code: src/commands/broker/acl-profile/list.ts

sc broker acl-profile publish-topic-exceptions create

Create a publish topic exception for an ACL Profile on a Solace Event Broker.

USAGE
  $ sc broker acl-profile publish-topic-exceptions create -a <value> -p <value> -s smf|mqtt [--json] [--log-level debug|warn|error|info|trace] [-b
    <value> | -n <value>] [-v <value>]

FLAGS
  -a, --acl-profile-name=<value>         (required) The name of the ACL Profile.
  -b, --broker-id=<value>                Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>              Stored broker name. If not provided, uses the default broker.
  -p, --publish-topic-exception=<value>  (required) The topic for the exception. May include wildcards.
  -s, --syntax=<option>                  (required) The syntax of the topic.
                                         <options: smf|mqtt>
  -v, --msg-vpn-name=<value>             The name of the Message VPN.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Create a publish topic exception for an ACL Profile on a Solace Event Broker.

  Adds an exception to the ACL Profile for clients publishing to specific topics. The exception is expressed as a topic
  with optional wildcards and must specify the syntax type (smf or mqtt). The creation is synchronized to HA mates and
  replication sites via config-sync.

EXAMPLES
  $ sc broker acl-profile publish-topic-exceptions create --acl-profile-name=myProfile --publish-topic-exception="orders/*/created" --syntax=smf

  $ sc broker acl-profile publish-topic-exceptions create --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --publish-topic-exception="devices/+/telemetry" --syntax=mqtt

See code: src/commands/broker/acl-profile/publish-topic-exceptions/create.ts

sc broker acl-profile publish-topic-exceptions delete

Delete a publish topic exception from an ACL Profile on a Solace Event Broker.

USAGE
  $ sc broker acl-profile publish-topic-exceptions delete -a <value> -p <value> -s smf|mqtt [--json] [--log-level debug|warn|error|info|trace] [-b
    <value> | -n <value>] [-v <value>] [--no-prompt]

FLAGS
  -a, --acl-profile-name=<value>         (required) The name of the ACL Profile.
  -b, --broker-id=<value>                Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>              Stored broker name. If not provided, uses the default broker.
  -p, --publish-topic-exception=<value>  (required) The topic of the exception to delete.
  -s, --syntax=<option>                  (required) The syntax of the topic.
                                         <options: smf|mqtt>
  -v, --msg-vpn-name=<value>             The name of the Message VPN.
      --no-prompt                        Skip confirmation prompt and proceed with deletion.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Delete a publish topic exception from an ACL Profile on a Solace Event Broker.

  Removes the specified publish topic exception from the ACL Profile. This is a destructive operation. The deletion is
  synchronized to HA mates and replication sites via config-sync.

  By default, a confirmation prompt is shown before deletion. Use --no-prompt to skip confirmation.

EXAMPLES
  $ sc broker acl-profile publish-topic-exceptions delete --acl-profile-name=myProfile --publish-topic-exception="orders/*/created" --syntax=smf

  $ sc broker acl-profile publish-topic-exceptions delete --acl-profile-name=myProfile --publish-topic-exception="devices/+/telemetry" --syntax=mqtt --no-prompt

  $ sc broker acl-profile publish-topic-exceptions delete --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --publish-topic-exception="test/topic" --syntax=smf --no-prompt

See code: src/commands/broker/acl-profile/publish-topic-exceptions/delete.ts

sc broker acl-profile publish-topic-exceptions list

List publish topic exceptions for an ACL Profile from a Solace Event Broker.

USAGE
  $ sc broker acl-profile publish-topic-exceptions list -a <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>]

FLAGS
  -a, --acl-profile-name=<value>  (required) The name of the ACL Profile.
  -b, --broker-id=<value>         Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>       Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>      The name of the Message VPN.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  List publish topic exceptions for an ACL Profile from a Solace Event Broker.

  Retrieves and displays all publish topic exceptions configured for the specified ACL Profile using the SEMP Monitor
  API.

EXAMPLES
  $ sc broker acl-profile publish-topic-exceptions list --acl-profile-name=myProfile

  $ sc broker acl-profile publish-topic-exceptions list --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default

See code: src/commands/broker/acl-profile/publish-topic-exceptions/list.ts

sc broker acl-profile subscribe-share-name-exceptions create

Create a subscribe share name exception for an ACL Profile on a Solace Event Broker.

USAGE
  $ sc broker acl-profile subscribe-share-name-exceptions create -a <value> -s <value> -x smf|mqtt [--json] [--log-level debug|warn|error|info|trace] [-b
    <value> | -n <value>] [-v <value>]

FLAGS
  -a, --acl-profile-name=<value>                (required) The name of the ACL Profile.
  -b, --broker-id=<value>                       Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>                     Stored broker name. If not provided, uses the default broker.
  -s, --subscribe-share-name-exception=<value>  (required) The share name for the exception. May include wildcards.
  -v, --msg-vpn-name=<value>                    The name of the Message VPN.
  -x, --syntax=<option>                         (required) The syntax of the share name.
                                                <options: smf|mqtt>

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Create a subscribe share name exception for an ACL Profile on a Solace Event Broker.

  Adds an exception to the ACL Profile for clients subscribing to specific shared subscriptions. The exception is
  expressed as a share name with optional wildcards and must specify the syntax type (smf or mqtt). The creation is
  synchronized to HA mates and replication sites via config-sync.

EXAMPLES
  $ sc broker acl-profile subscribe-share-name-exceptions create --acl-profile-name=myProfile --subscribe-share-name-exception="orders/*" --syntax=smf

  $ sc broker acl-profile subscribe-share-name-exceptions create --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --subscribe-share-name-exception="devices/+" --syntax=mqtt

See code: src/commands/broker/acl-profile/subscribe-share-name-exceptions/create.ts

sc broker acl-profile subscribe-share-name-exceptions delete

Delete a subscribe share name exception from an ACL Profile on a Solace Event Broker.

USAGE
  $ sc broker acl-profile subscribe-share-name-exceptions delete -a <value> -s <value> -x smf|mqtt [--json] [--log-level debug|warn|error|info|trace] [-b
    <value> | -n <value>] [-v <value>] [--no-prompt]

FLAGS
  -a, --acl-profile-name=<value>                (required) The name of the ACL Profile.
  -b, --broker-id=<value>                       Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>                     Stored broker name. If not provided, uses the default broker.
  -s, --subscribe-share-name-exception=<value>  (required) The share name of the exception to delete.
  -v, --msg-vpn-name=<value>                    The name of the Message VPN.
  -x, --syntax=<option>                         (required) The syntax of the share name.
                                                <options: smf|mqtt>
      --no-prompt                               Skip confirmation prompt and proceed with deletion.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Delete a subscribe share name exception from an ACL Profile on a Solace Event Broker.

  Removes the specified subscribe share name exception from the ACL Profile. This is a destructive operation. The
  deletion is synchronized to HA mates and replication sites via config-sync.

  By default, a confirmation prompt is shown before deletion. Use --no-prompt to skip confirmation.

EXAMPLES
  $ sc broker acl-profile subscribe-share-name-exceptions delete --acl-profile-name=myProfile --subscribe-share-name-exception="orders/*" --syntax=smf

  $ sc broker acl-profile subscribe-share-name-exceptions delete --acl-profile-name=myProfile --subscribe-share-name-exception="devices/+" --syntax=mqtt --no-prompt

  $ sc broker acl-profile subscribe-share-name-exceptions delete --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --subscribe-share-name-exception="test/share" --syntax=smf --no-prompt

See code: src/commands/broker/acl-profile/subscribe-share-name-exceptions/delete.ts

sc broker acl-profile subscribe-share-name-exceptions list

List subscribe share name exceptions for an ACL Profile from a Solace Event Broker.

USAGE
  $ sc broker acl-profile subscribe-share-name-exceptions list -a <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>]

FLAGS
  -a, --acl-profile-name=<value>  (required) The name of the ACL Profile.
  -b, --broker-id=<value>         Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>       Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>      The name of the Message VPN.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  List subscribe share name exceptions for an ACL Profile from a Solace Event Broker.

  Retrieves and displays all subscribe share name exceptions configured for the specified ACL Profile using the SEMP
  Monitor API.

EXAMPLES
  $ sc broker acl-profile subscribe-share-name-exceptions list --acl-profile-name=myProfile

  $ sc broker acl-profile subscribe-share-name-exceptions list --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default

See code: src/commands/broker/acl-profile/subscribe-share-name-exceptions/list.ts

sc broker acl-profile subscribe-topic-exceptions create

Create a subscribe topic exception for an ACL Profile on a Solace Event Broker.

USAGE
  $ sc broker acl-profile subscribe-topic-exceptions create -a <value> -s <value> -x smf|mqtt [--json] [--log-level debug|warn|error|info|trace] [-b
    <value> | -n <value>] [-v <value>]

FLAGS
  -a, --acl-profile-name=<value>           (required) The name of the ACL Profile.
  -b, --broker-id=<value>                  Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>                Stored broker name. If not provided, uses the default broker.
  -s, --subscribe-topic-exception=<value>  (required) The topic for the exception. May include wildcards.
  -v, --msg-vpn-name=<value>               The name of the Message VPN.
  -x, --syntax=<option>                    (required) The syntax of the topic.
                                           <options: smf|mqtt>

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Create a subscribe topic exception for an ACL Profile on a Solace Event Broker.

  Adds an exception to the ACL Profile for clients subscribing to specific topics. The exception is expressed as a topic
  with optional wildcards and must specify the syntax type (smf or mqtt). The creation is synchronized to HA mates and
  replication sites via config-sync.

EXAMPLES
  $ sc broker acl-profile subscribe-topic-exceptions create --acl-profile-name=myProfile --subscribe-topic-exception="orders/*/created" --syntax=smf

  $ sc broker acl-profile subscribe-topic-exceptions create --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --subscribe-topic-exception="devices/+/telemetry" --syntax=mqtt

See code: src/commands/broker/acl-profile/subscribe-topic-exceptions/create.ts

sc broker acl-profile subscribe-topic-exceptions delete

Delete a subscribe topic exception from an ACL Profile on a Solace Event Broker.

USAGE
  $ sc broker acl-profile subscribe-topic-exceptions delete -a <value> -s <value> -x smf|mqtt [--json] [--log-level debug|warn|error|info|trace] [-b
    <value> | -n <value>] [-v <value>] [--no-prompt]

FLAGS
  -a, --acl-profile-name=<value>           (required) The name of the ACL Profile.
  -b, --broker-id=<value>                  Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>                Stored broker name. If not provided, uses the default broker.
  -s, --subscribe-topic-exception=<value>  (required) The topic of the exception to delete.
  -v, --msg-vpn-name=<value>               The name of the Message VPN.
  -x, --syntax=<option>                    (required) The syntax of the topic.
                                           <options: smf|mqtt>
      --no-prompt                          Skip confirmation prompt and proceed with deletion.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Delete a subscribe topic exception from an ACL Profile on a Solace Event Broker.

  Removes the specified subscribe topic exception from the ACL Profile. This is a destructive operation. The deletion is
  synchronized to HA mates and replication sites via config-sync.

  By default, a confirmation prompt is shown before deletion. Use --no-prompt to skip confirmation.

EXAMPLES
  $ sc broker acl-profile subscribe-topic-exceptions delete --acl-profile-name=myProfile --subscribe-topic-exception="orders/*/created" --syntax=smf

  $ sc broker acl-profile subscribe-topic-exceptions delete --acl-profile-name=myProfile --subscribe-topic-exception="devices/+/telemetry" --syntax=mqtt --no-prompt

  $ sc broker acl-profile subscribe-topic-exceptions delete --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --subscribe-topic-exception="test/topic" --syntax=smf --no-prompt

See code: src/commands/broker/acl-profile/subscribe-topic-exceptions/delete.ts

sc broker acl-profile subscribe-topic-exceptions list

List subscribe topic exceptions for an ACL Profile from a Solace Event Broker.

USAGE
  $ sc broker acl-profile subscribe-topic-exceptions list -a <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>]

FLAGS
  -a, --acl-profile-name=<value>  (required) The name of the ACL Profile.
  -b, --broker-id=<value>         Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>       Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>      The name of the Message VPN.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  List subscribe topic exceptions for an ACL Profile from a Solace Event Broker.

  Retrieves and displays all subscribe topic exceptions configured for the specified ACL Profile using the SEMP Monitor
  API.

EXAMPLES
  $ sc broker acl-profile subscribe-topic-exceptions list --acl-profile-name=myProfile

  $ sc broker acl-profile subscribe-topic-exceptions list --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default

See code: src/commands/broker/acl-profile/subscribe-topic-exceptions/list.ts

sc broker acl-profile update

Update an ACL Profile on a Solace Event Broker.

USAGE
  $ sc broker acl-profile update -a <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>] [--client-connect-default-action allow|disallow] [--publish-topic-default-action allow|disallow]
    [--subscribe-share-name-default-action allow|disallow] [--subscribe-topic-default-action allow|disallow]

FLAGS
  -a, --acl-profile-name=<value>                      (required) The name of the ACL Profile to update.
  -b, --broker-id=<value>                             Stored broker identifier. If not provided, uses the default
                                                      broker.
  -n, --broker-name=<value>                           Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>                          The name of the Message VPN.
      --client-connect-default-action=<option>        The default action to take when a client using the ACL Profile
                                                      connects.
                                                      <options: allow|disallow>
      --publish-topic-default-action=<option>         The default action to take when a client using the ACL Profile
                                                      publishes to a topic.
                                                      <options: allow|disallow>
      --subscribe-share-name-default-action=<option>  The default action to take when a client using the ACL Profile
                                                      subscribes to a share-name subscription.
                                                      <options: allow|disallow>
      --subscribe-topic-default-action=<option>       The default action to take when a client using the ACL Profile
                                                      subscribes to a topic.
                                                      <options: allow|disallow>

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Update an ACL Profile on a Solace Event Broker.

  Any attribute missing from the request will be left unchanged. The update of instances of this object are synchronized
  to HA mates and replication sites via config-sync.

EXAMPLES
  $ sc broker acl-profile update --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --client-connect-default-action=allow

  $ sc broker acl-profile update --broker-id=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --publish-topic-default-action=allow

  $ sc broker acl-profile update --broker-name=dev-broker --acl-profile-name=myProfile --msg-vpn-name=default --subscribe-topic-default-action=allow --subscribe-share-name-default-action=disallow

  $ sc broker acl-profile update --acl-profile-name=myProfile --publish-topic-default-action=disallow

See code: src/commands/broker/acl-profile/update.ts

sc broker client-profile create

Create a Client Profile on a Solace Event Broker.

USAGE
  $ sc broker client-profile create -c <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>] [--allow-bridge-connections-enabled] [--allow-guaranteed-endpoint-create-durability
    all|durable|non-durable] [--allow-guaranteed-endpoint-create-enabled] [--allow-guaranteed-msg-receive-enabled]
    [--allow-guaranteed-msg-send-enabled] [--allow-shared-subscriptions-enabled] [--allow-transacted-sessions-enabled]
    [--api-queue-management-copy-from-on-create-name <value>] [--api-queue-management-copy-from-on-create-template-name
    <value>] [--compression-enabled] [--eliding-delay <value>] [--eliding-enabled]
    [--tls-allow-downgrade-to-plain-text-enabled]

FLAGS
  -b, --broker-id=<value>                                               Stored broker identifier. If not provided, uses
                                                                        the default broker.
  -c, --client-profile-name=<value>                                     (required) The name of the client profile to
                                                                        create.
  -n, --broker-name=<value>                                             Stored broker name. If not provided, uses the
                                                                        default broker.
  -v, --msg-vpn-name=<value>                                            The name of the Message VPN.
      --[no-]allow-bridge-connections-enabled                           Enable or disable allowing Bridge clients using
                                                                        the Client Profile to connect.
      --allow-guaranteed-endpoint-create-durability=<option>            The types of Queues and Topic Endpoints that
                                                                        clients can create.
                                                                        <options: all|durable|non-durable>
      --[no-]allow-guaranteed-endpoint-create-enabled                   Enable or disable allowing clients to create
                                                                        topic endpoints or queues.
      --[no-]allow-guaranteed-msg-receive-enabled                       Enable or disable allowing clients to receive
                                                                        guaranteed messages.
      --[no-]allow-guaranteed-msg-send-enabled                          Enable or disable allowing clients to send
                                                                        guaranteed messages.
      --[no-]allow-shared-subscriptions-enabled                         Enable or disable allowing shared subscriptions.
      --[no-]allow-transacted-sessions-enabled                          Enable or disable allowing clients to establish
                                                                        transacted sessions.
      --api-queue-management-copy-from-on-create-name=<value>           The name of a queue to copy settings from when a
                                                                        new queue is created by a client.
      --api-queue-management-copy-from-on-create-template-name=<value>  The name of a queue template to copy settings
                                                                        from when a new queue is created by a client.
      --[no-]compression-enabled                                        Enable or disable allowing clients to use
                                                                        compression.
      --eliding-delay=<value>                                           The amount of time to delay the delivery of
                                                                        messages to clients, in milliseconds.
      --[no-]eliding-enabled                                            Enable or disable message eliding.
      --[no-]tls-allow-downgrade-to-plain-text-enabled                  Enable or disable allowing a client to downgrade
                                                                        an encrypted connection to plain text.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Create a Client Profile on a Solace Event Broker.

  Any attribute missing from the request will be set to its default value. The creation of instances of this object are
  synchronized to HA mates and replication sites via config-sync.

EXAMPLES
  $ sc broker client-profile create --broker-name=dev-broker --client-profile-name=myProfile --msg-vpn-name=default

  $ sc broker client-profile create --broker-id=dev-broker --client-profile-name=myProfile --msg-vpn-name=default --allow-guaranteed-msg-receive-enabled

  $ sc broker client-profile create --broker-name=dev-broker --client-profile-name=myProfile --msg-vpn-name=default --compression-enabled --eliding-enabled

  $ sc broker client-profile create --client-profile-name=myProfile

See code: src/commands/broker/client-profile/create.ts

sc broker client-profile delete

Delete a Client Profile from a Solace Event Broker.

USAGE
  $ sc broker client-profile delete -c <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>] [--no-prompt]

FLAGS
  -b, --broker-id=<value>            Stored broker identifier. If not provided, uses the default broker.
  -c, --client-profile-name=<value>  (required) The name of the client profile to delete.
  -n, --broker-name=<value>          Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>         The name of the Message VPN.
      --no-prompt                    Skip confirmation prompt.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Delete a Client Profile from a Solace Event Broker.

  Deletes the specified Client Profile from the Message VPN. This action cannot be undone. A confirmation prompt will be
  displayed unless --no-prompt is specified.

EXAMPLES
  $ sc broker client-profile delete --broker-name=dev-broker --client-profile-name=myProfile --msg-vpn-name=default

  $ sc broker client-profile delete --broker-id=dev-broker --client-profile-name=myProfile --msg-vpn-name=default --no-prompt

  $ sc broker client-profile delete --client-profile-name=myProfile

  $ sc broker client-profile delete --client-profile-name=myProfile --no-prompt

See code: src/commands/broker/client-profile/delete.ts

sc broker client-profile display

Display a Client Profile from a Solace Event Broker.

USAGE
  $ sc broker client-profile display -c <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>]

FLAGS
  -b, --broker-id=<value>            Stored broker identifier. If not provided, uses the default broker.
  -c, --client-profile-name=<value>  (required) The name of the client profile to display.
  -n, --broker-name=<value>          Stored broker name. If not provided, uses the default broker.
  -v, --msg-vpn-name=<value>         The name of the Message VPN.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Display a Client Profile from a Solace Event Broker.

  Retrieves and displays detailed information about a specific Client Profile using the SEMP Monitor API.

EXAMPLES
  $ sc broker client-profile display --broker-name=dev-broker --client-profile-name=myProfile --msg-vpn-name=default

  $ sc broker client-profile display --broker-id=dev-broker --client-profile-name=myProfile --msg-vpn-name=default

  $ sc broker client-profile display --client-profile-name=myProfile

See code: src/commands/broker/client-profile/display.ts

sc broker client-profile list

List Client Profiles from a Solace Event Broker.

USAGE
  $ sc broker client-profile list [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v <value>] [-a]
    [-c <value>] [--count <value>] [-s <value>]

FLAGS
  -a, --all                          Display all client profiles (auto-pagination).
  -b, --broker-id=<value>            Stored broker identifier. If not provided, uses the default broker.
  -c, --client-profile-name=<value>  Filter client profiles by name. Supports * wildcard.
  -n, --broker-name=<value>          Stored broker name. If not provided, uses the default broker.
  -s, --select=<value>               Comma-separated list of attributes to display (max 10).
  -v, --msg-vpn-name=<value>         The name of the Message VPN.
      --count=<value>                [default: 10] Number of client profiles to display per page.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  List Client Profiles from a Solace Event Broker.

  Retrieves and displays Client Profiles from the specified Message VPN using the SEMP Monitor API.
  Supports filtering by name (with wildcards), custom attribute selection, and pagination.

EXAMPLES
  $ sc broker client-profile list

  $ sc broker client-profile list --count=20

  $ sc broker client-profile list --client-profile-name="test*"

  $ sc broker client-profile list --select=clientProfileName,compressionEnabled,elidingEnabled

  $ sc broker client-profile list --all

  $ sc broker client-profile list --client-profile-name="*prod*" --count=5 --all

See code: src/commands/broker/client-profile/list.ts

sc broker client-profile update

Update a Client Profile on a Solace Event Broker.

USAGE
  $ sc broker client-profile update -c <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>] [--allow-bridge-connections-enabled] [--allow-guaranteed-endpoint-create-durability
    all|durable|non-durable] [--allow-guaranteed-endpoint-create-enabled] [--allow-guaranteed-msg-receive-enabled]
    [--allow-guaranteed-msg-send-enabled] [--allow-shared-subscriptions-enabled] [--allow-transacted-sessions-enabled]
    [--api-queue-management-copy-from-on-create-name <value>] [--api-queue-management-copy-from-on-create-template-name
    <value>] [--compression-enabled] [--eliding-delay <value>] [--eliding-enabled]
    [--tls-allow-downgrade-to-plain-text-enabled]

FLAGS
  -b, --broker-id=<value>                                               Stored broker identifier. If not provided, uses
                                                                        the default broker.
  -c, --client-profile-name=<value>                                     (required) The name of the client profile to
                                                                        update.
  -n, --broker-name=<value>                                             Stored broker name. If not provided, uses the
                                                                        default broker.
  -v, --msg-vpn-name=<value>                                            The name of the Message VPN.
      --[no-]allow-bridge-connections-enabled                           Enable or disable allowing Bridge clients using
                                                                        the Client Profile to connect.
      --allow-guaranteed-endpoint-create-durability=<option>            The types of Queues and Topic Endpoints that
                                                                        clients can create.
                                                                        <options: all|durable|non-durable>
      --[no-]allow-guaranteed-endpoint-create-enabled                   Enable or disable allowing clients to create
                                                                        topic endpoints or queues.
      --[no-]allow-guaranteed-msg-receive-enabled                       Enable or disable allowing clients to receive
                                                                        guaranteed messages.
      --[no-]allow-guaranteed-msg-send-enabled                          Enable or disable allowing clients to send
                                                                        guaranteed messages.
      --[no-]allow-shared-subscriptions-enabled                         Enable or disable allowing shared subscriptions.
      --[no-]allow-transacted-sessions-enabled                          Enable or disable allowing clients to establish
                                                                        transacted sessions.
      --api-queue-management-copy-from-on-create-name=<value>           The name of a queue to copy settings from when a
                                                                        new queue is created by a client.
      --api-queue-management-copy-from-on-create-template-name=<value>  The name of a queue template to copy settings
                                                                        from when a new queue is created by a client.
      --[no-]compression-enabled                                        Enable or disable allowing clients to use
                                                                        compression.
      --eliding-delay=<value>                                           The amount of time to delay the delivery of
                                                                        messages to clients, in milliseconds.
      --[no-]eliding-enabled                                            Enable or disable message eliding.
      --[no-]tls-allow-downgrade-to-plain-text-enabled                  Enable or disable allowing a client to downgrade
                                                                        an encrypted connection to plain text.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Update a Client Profile on a Solace Event Broker.

  Updates the configuration of an existing Client Profile. Only provided attributes will be updated (PATCH semantics).
  The updates are synchronized to HA mates and replication sites via config-sync.

EXAMPLES
  $ sc broker client-profile update --broker-name=dev-broker --client-profile-name=myProfile --msg-vpn-name=default --compression-enabled

  $ sc broker client-profile update --broker-id=dev-broker --client-profile-name=myProfile --msg-vpn-name=default --no-eliding-enabled

  $ sc broker client-profile update --broker-name=dev-broker --client-profile-name=myProfile --msg-vpn-name=default --allow-guaranteed-msg-send-enabled --allow-guaranteed-msg-receive-enabled

  $ sc broker client-profile update --client-profile-name=myProfile --eliding-delay=100

See code: src/commands/broker/client-profile/update.ts

sc broker client-username create

Create a Client Username on a Solace Event Broker.

USAGE
  $ sc broker client-username create -u <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>] [--acl-profile-name <value>] [--client-profile-name <value>] [--enabled]
    [--guaranteed-endpoint-permission-override-enabled] [--password <value>] [--subscription-manager-enabled]

FLAGS
  -b, --broker-id=<value>                                Stored broker identifier. If not provided, uses the default
                                                         broker.
  -n, --broker-name=<value>                              Stored broker name. If not provided, uses the default broker.
  -u, --client-username=<value>                          (required) The name of the Client Username to create.
  -v, --msg-vpn-name=<value>                             The name of the Message VPN.
      --acl-profile-name=<value>                         The ACL Profile name for authorization.
      --client-profile-name=<value>                      The Client Profile name for connection settings.
      --enabled                                          Enable the Client Username. When disabled, clients cannot
                                                         connect.
      --guaranteed-endpoint-permission-override-enabled  Enable permission override for guaranteed endpoints.
      --password=<value>                                 Password for Client Username authentication.
      --subscription-manager-enabled                     Enable subscription management capability.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Create a Client Username on a Solace Event Broker.

  Any attribute missing from the request will be set to its default value. The creation of instances of this object are
  synchronized to HA mates and replication sites via config-sync.

  A Client Username represents a client that can connect to the broker with specific authentication and authorization
  settings.

EXAMPLES
  $ sc broker client-username create --client-username=user1 --msg-vpn-name=default

  $ sc broker client-username create --broker-name=dev-broker --client-username=user1 --enabled

  $ sc broker client-username create --client-username=user1 --password=secret123 --acl-profile-name=custom-acl --client-profile-name=custom-profile

  $ sc broker client-username create --client-username=admin --enabled --subscription-manager-enabled --guaranteed-endpoint-permission-override-enabled

See code: src/commands/broker/client-username/create.ts

sc broker client-username delete

Delete a Client Username from a Solace Event Broker.

USAGE
  $ sc broker client-username delete -u <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>] [--no-prompt]

FLAGS
  -b, --broker-id=<value>        Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>      Stored broker name. If not provided, uses the default broker.
  -u, --client-username=<value>  (required) The name of the Client Username to delete.
  -v, --msg-vpn-name=<value>     The name of the Message VPN.
      --no-prompt                Skip confirmation prompt and proceed with deletion.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Delete a Client Username from a Solace Event Broker.

  Deletes the specified Client Username from the Message VPN. This is a destructive operation that removes the Client
  Username. Any clients currently connected with this username will be disconnected.

  The deletion is synchronized to HA mates and replication sites via config-sync.

  By default, a confirmation prompt is shown before deletion. Use --no-prompt to skip confirmation.

EXAMPLES
  $ sc broker client-username delete --client-username=user1 --msg-vpn-name=default

  $ sc broker client-username delete --broker-name=dev-broker --client-username=user1

  $ sc broker client-username delete --client-username=user1 --no-prompt

  $ sc broker client-username delete --broker-id=prod --client-username=tempUser --msg-vpn-name=production --no-prompt

See code: src/commands/broker/client-username/delete.ts

sc broker client-username display

Display Client Username information from a Solace Event Broker.

USAGE
  $ sc broker client-username display -u <value> [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v
    <value>]

FLAGS
  -b, --broker-id=<value>        Stored broker identifier. If not provided, uses the default broker.
  -n, --broker-name=<value>      Stored broker name. If not provided, uses the default broker.
  -u, --client-username=<value>  (required) The name of the Client Username to display.
  -v, --msg-vpn-name=<value>     The name of the Message VPN.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  Display Client Username information from a Solace Event Broker.

  Retrieves and displays detailed information about a Client Username using the SEMP Monitor API, including
  configuration settings and associated profiles.

EXAMPLES
  $ sc broker client-username display --client-username=user1 --msg-vpn-name=default

  $ sc broker client-username display --broker-name=dev-broker --client-username=user1

  $ sc broker client-username display --client-username=admin

See code: src/commands/broker/client-username/display.ts

sc broker client-username list

List Client Usernames from a Solace Event Broker.

USAGE
  $ sc broker client-username list [--json] [--log-level debug|warn|error|info|trace] [-b <value> | -n <value>] [-v <value>] [-a]
    [--client-username <value>] [-c <value>] [-s <value>]

FLAGS
  -a, --all                      Display all Client Usernames (auto-pagination).
  -b, --broker-id=<value>        Stored broker identifier. If not provided, uses the default broker.
  -c, --count=<value>            [default: 10] Number of Client Usernames to display per page.
  -n, --broker-name=<value>      Stored broker name. If not provided, uses the default broker.
  -s, --select=<value>           Comma-separated list of attributes to display (max 10).
  -v, --msg-vpn-name=<value>     The name of the Message VPN.
      --client-username=<value>  Filter Client Usernames by name. Supports * wildcard.

GLOBAL FLAGS
  --json                Format output as json.
  --log-level=<option>  [default: info] Specify level for logging.
                        <options: debug|warn|error|info|trace>

DESCRIPTION
  List Client Usernames from a Solace Event Broker.

  Retrieves and displays Client Usernames from the specified Message VPN using the SEMP Monitor API.
  Supports filtering by name (with wildcards), custom attribute selection, and pagination.

EXAMPLES
  $ sc broker client-username list

  $ sc broker client-username list --count=20

  $ sc broker client-username list --client-username="user*"

  $ sc broker client-username list --select=clientUsername,enabled,aclProfileName

  $ sc broker client-username list --all

  $ sc broker client-username list --client-username="admin*" --count=5 --all

_See code: [src/commands/broker/client-username/list.ts](https://github.com/dishantlangayan/sc-plugin-broker/blob/v0.6.0/src/co