subscriptions
This command enables the management of Subscriptions.
Commands
Command | Description |
---|---|
list | this command lists all the subscriptions available in your environment for a specific topic or source. |
inspect | this command retrieves the subscription with the specified ID. |
create | this command creates a new subscription for the Qala CLI. |
update | this command updates an existing subscription for the Qala CLI. |
delete | this command deletes the subscription with the specified ID. |
secret | this command allows you to inspect and rotate secrets for a subscription. |
list
this command lists all the subscriptions available in your environment for a specific topic or source.
Options:
Option | Description |
---|---|
source | The name of the source. |
topic | The name of the topic. |
Examples:
qala subscriptions ls --topic <TOPIC_NAME>
qala subscriptions ls --source <SOURCE_NAME>
inspect
this command retrieves the subscription with the specified ID.
Options:
Option | Description |
---|---|
source | The name of the source. |
s / subscription | The name of the subscription. |
topic | The name of the topic. |
Examples:
qala subscriptions i --topic <TOPIC_NAME> -s <SUBSCRIPTION_NAME>
qala subscriptions i --source <SOURCE_NAME> -s <SUBSCRIPTION_NAME>
create
this command creates a new subscription for the Qala CLI.
Options:
Option | Description |
---|---|
a / audience | The audience to scope the subscription - for topics. |
d / description | The description of the subscription. |
e / events | The comma separated list of event type names. |
m / max-attempts | The maximum delivery attempts of the subscription. |
n / name | The name of the subscription. |
source | The name of the source. |
topic | The name of the topic. |
u / url | The webhook url of the subscription. |
Examples:
qala sub create -n <SUBSCRIPTION_NAME> --topic <TOPIC_NAME> -d <DESCRIPTION> -e <EVENTS_COMMA_SEPERATED_NAMES> -u <WEBHOOK_URL> -m <MAX_DELIVERY_ATTEMPTS> -a <AUDIENCE>
update
this command updates an existing subscription for the Qala CLI.
Options:
Option | Description |
---|---|
a / audience | The audience to scope the subscription - for topics. |
d / description | The description of the subscription. |
e / events | The comma separated list of event type names. |
m / max-attempts | The maximum delivery attempts of the subscription. |
n / name | The new name of the subscription. |
source | The name of the source. |
topic | The name of the topic. |
u / url | The webhook url of the subscription. |
Examples:
qala sub update <SUBSCRIPTION_NAME> --topic <TOPIC_NAME> -n <NEW_NAME> -d <DESCRIPTION> -e <EVENTS_COMMA_SEPERATED_NAMES> -u <WEBHOOK_URL> -m <MAX_DELIVERY_ATTEMPTS> -a <AUDIENCE>
delete
this command deletes the subscription with the specified ID.
Options:
Option | Description |
---|---|
source | The name of the source. |
s / subscription | The name of the subscription. |
topic | The name of the topic. |
Examples:
qala sub delete --topic <TOPIC_NAME> --subscription <SUBSCRIPTION_NAME>