Skip to main content

sources

This command enables the management of Sources.

Commands

CommandDescription
listthis command lists all the sources available in your environment.
inspectthis command retrieves the source with the specified NAME.
createthis command creates a new source for the Qala CLI.
updatethis command updates an existing source for the Qala CLI.
deletethis 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:

OptionDescription

Examples:

qala sources inspect <SOURCE_NAME>

create

this command creates a new source for the Qala CLI.

Options:

OptionDescription
algorithmThe algorithm of the source when authentication type is jwt (RSA or HSA).
apiKeyNameThe name of the api key when authentication type is api key.
apiKeyValueThe value of the api key when authentication type is api key.
audienceThe audience of the source when authentication type is jwt.
a / authenticationTypeThe authentication type of the source (Basic, ApiKey or JWT).
d / descriptionThe description of the source.
i / ip-whitelistingThe comma separated list of the ips allowed to access the source.
issuerThe issuer of the source when authentication type is jwt.
m / methodsThe comma separated list of the http methods available to the source.
n / nameThe Name of the source.
passwordThe password of the source when authentication type is basic.
publicKeyThe file path where the public key of the source when authentication type is jwt and algorithm is RSA.
secretThe secret of the source when authentication type is jwt and algorithm is HSA.
usernameThe 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:

OptionDescription
algorithmThe algorithm of the source when authentication type is jwt (RSA or HSA).
apiKeyNameThe name of the api key when authentication type is api key.
apiKeyValueThe value of the api key when authentication type is api key.
audienceThe audience of the source when authentication type is jwt.
a / authenticationTypeThe authentication type of the source (Basic, ApiKey or JWT).
d / descriptionThe description of the source.
i / ip-whitelistingThe comma separated list of the ips allowed to access the source.
issuerThe issuer of the source when authentication type is jwt.
m / methodsThe comma separated list of the http methods available to the source.
n / nameThe new name of the source.
passwordThe password of the source when authentication type is basic.
publicKeyThe file path where the public key of the source when authentication type is jwt and algorithm is RSA.
secretThe secret of the source when authentication type is jwt and algorithm is HSA.
usernameThe 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:

OptionDescription

Examples:

qala sources delete <SOURCE_NAME>