sources
This command enables the management of Sources.
Commands
Command | Description |
---|---|
list | this command lists all the sources available in your environment. |
inspect | this command retrieves the source with the specified NAME. |
create | this command creates a new source for the Qala CLI. |
update | this command updates an existing source for the Qala CLI. |
delete | this command deletes the source with the specified NAME. |
list
this command lists all the sources available in your environment.
Examples:
qala sources ls
inspect
this command retrieves the source with the specified NAME.
Options:
Option | Description |
---|
Examples:
qala sources inspect <SOURCE_NAME>
create
this command creates a new source for the Qala CLI.
Options:
Option | Description |
---|---|
algorithm | The algorithm of the source when authentication type is jwt (RSA or HSA). |
apiKeyName | The name of the api key when authentication type is api key. |
apiKeyValue | The value of the api key when authentication type is api key. |
audience | The audience of the source when authentication type is jwt. |
a / authenticationType | The authentication type of the source (Basic, ApiKey or JWT). |
d / description | The description of the source. |
i / ip-whitelisting | The comma separated list of the ips allowed to access the source. |
issuer | The issuer of the source when authentication type is jwt. |
m / methods | The comma separated list of the http methods available to the source. |
n / name | The Name of the source. |
password | The password of the source when authentication type is basic. |
publicKey | The file path where the public key of the source when authentication type is jwt and algorithm is RSA. |
secret | The secret of the source when authentication type is jwt and algorithm is HSA. |
username | The username of the source when authentication type is basic. |
Examples:
qala sources create -n <SOURCE_NAME> -d <DESCRIPTION> -m <METHODS_COMMA_SEPERATED> -i <IP_WHITELISTING_COMMA_SEPERATED> -a <AUTHENTICATION_TYPE>
update
this command updates an existing source for the Qala CLI.
Options:
Option | Description |
---|---|
algorithm | The algorithm of the source when authentication type is jwt (RSA or HSA). |
apiKeyName | The name of the api key when authentication type is api key. |
apiKeyValue | The value of the api key when authentication type is api key. |
audience | The audience of the source when authentication type is jwt. |
a / authenticationType | The authentication type of the source (Basic, ApiKey or JWT). |
d / description | The description of the source. |
i / ip-whitelisting | The comma separated list of the ips allowed to access the source. |
issuer | The issuer of the source when authentication type is jwt. |
m / methods | The comma separated list of the http methods available to the source. |
n / name | The new name of the source. |
password | The password of the source when authentication type is basic. |
publicKey | The file path where the public key of the source when authentication type is jwt and algorithm is RSA. |
secret | The secret of the source when authentication type is jwt and algorithm is HSA. |
username | The username of the source when authentication type is basic. |
Examples:
qala sources update <SOURCE_NAME> -n <NEW_NAME> -d <DESCRIPTION> -m <METHODS_COMMA_SEPERATED> -i <IP_WHITELISTING_COMMA_SEPERATED> -a <AUTHENTICATION_TYPE>
delete
this command deletes the source with the specified NAME.
Options:
Option | Description |
---|
Examples:
qala sources delete <SOURCE_NAME>