- Overview
- Getting Started Guide
- UserGuide
-
References
-
ABEJA Platform CLI
- CONFIG COMMAND
- DATALAKE COMMAND
- DATASET COMMAND
- TRAINING COMMAND
-
MODEL COMMAND
- check-endpoint-image
- check-endpoint-json
- create-deployment
- create-endpoint
- create-model
- create-service
- create-trigger
- create-version
- delete-deployment
- delete-endpoint
- delete-model
- delete-service
- delete-version
- describe-deployments
- describe-endpoints
- describe-models
- describe-service-logs
- describe-services
- describe-versions
- download-versions
- run-local
- run-local-server
- start-service
- stop-service
- submit-run
- update-endpoint
- startapp command
-
ABEJA Platform CLI
- FAQ
- Appendix
show
Description
Show the current active configuration. You can specify the name of a configuration if you want to see an arbitraly configuration.
Synopsis
$ abeja config show [--help]
Usage: abeja config show [OPTIONS] [NAME]
Show the current active configuration details
Options:
-u, --user Display credential's userID
-t, --token Display credential's user token
-o, --organization Display credential's organizationID
--format [json] Display credential in defined format
--default Display default credential
--help Show this message and exit.
Options
-u, --user
Outputs ABEJA credential’s userID.
-t, --token
Outputs ABEJA credential’s user token.
-o, --organization
Outputs ABEJA credntial’s organizationID
--format [json]
Outputs ABEJA credential in defined Format
--default
Outputs the default (unnamed) configuration detail.
Example
Outputs ABEJA credential
Command:
$ abeja config show
Output:
abeja-platform-user : user-1619384784868
personal-access-token: a7660b8ccbc947bc3fd867cd569510c4b28787f9
organization-name : 1322338892733
Outputs ABEJA credential’s userID
Command:
$ abeja config show -u
Output:
abeja-platform-user : user-1619384784868
Outputs ABEJA credential in Json Format
Command:
$ abeja config show --format json
Output:
{
"abeja-platform-user": "user-1619384784868",
"personal-access-token": "a7660b8ccbc947bc3fd867cd569510c4b28787f9",
"organization-name": "1322338892733"
}