aio-cli-plugin-console
Console Integration Plugin for the Adobe I/O CLI
Usage
$ npm install -g @adobe/aio-cli-plugin-console
$ ./bin/run COMMAND
running command...
$ ./bin/run (-v|--version|version)
@adobe/aio-cli-plugin-console/1.4.0 darwin-x64 node-v8.15.0
$ ./bin/run --help [COMMAND]
USAGE
$ ./bin/run COMMAND
...
Commands
./bin/run console
List or select console integrations for the Adobe I/O Runtime
USAGE
$ ./bin/run console
OPTIONS
-p, --passphrase=passphrase the passphrase for the private-key
EXAMPLES
$ aio console:list-integrations
$ aio console:ls
$ aio console list-integrations
$ aio console:select-integration INTEGRATION_ID
$ aio console:sel INTEGRATION_ID
$ aio console select-integration INTEGRATION_ID
$ aio console:reset-integration INTEGRATION_ID
$ aio console:reset INTEGRATION_ID
$ aio console reset-integration INTEGRATION_ID
See code: src/commands/console/index.js
./bin/run console:list-integrations
lists integrations for use with Adobe I/O Runtime serverless functions
USAGE
$ ./bin/run console:list-integrations
OPTIONS
-p, --page=page [default: 1] page number
-r, --passphrase=passphrase the passphrase for the private-key
-s, --pageSize=pageSize [default: 20] size of a page (max 50)
ALIASES
$ ./bin/run console:ls
See code: src/commands/console/list-integrations.js
./bin/run console:reset-integration [INTEGRATION_ID]
resets an integration's .wskprops auth hash.
USAGE
$ ./bin/run console:reset-integration [INTEGRATION_ID]
DESCRIPTION
after running this command all clients will need to run `console:select-integration`
to get a new auth hash in their .wskprops file
ALIASES
$ ./bin/run console:reset
See code: src/commands/console/reset-integration.js
./bin/run console:select-integration [INTEGRATION_ID]
selects an integration and writes the .wskprops file to the local machine
USAGE
$ ./bin/run console:select-integration [INTEGRATION_ID]
OPTIONS
-p, --passphrase=passphrase the passphrase for the private-key
-w, --overwrite overwrite the .wskprops file if it exists
DESCRIPTION
Run 'console:ls' to get a list of integrations to select from.
The .wskprops file will be written to your home folder, and you will be prompted whether you want to overwrite an
existing file.
ALIASES
$ ./bin/run console:sel
See code: src/commands/console/select-integration.js