- 概要
- スタートアップガイド
- ユーザガイド
-
リファレンス
-
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
説明
現在有効な認証情報を表示するコマンドです。認証情報の名前か --default
オプションを指定することで、
特定の認証情報を表示することもできます。
概要
$ 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.
オプション
-u, --user
ユーザIDの出力します。
-t, --token
ユーザ・トークンの出力します。
-o, --organization
Organization 情報のみ出力します。
--format [json]
Credential 情報を 指定の フォーマットで出力します。
--default
デフォルトの認証情報を表示します。
例
認証情報の出力
コマンド:
$ abeja config show
出力:
abeja-platform-user : user-1619384784868
personal-access-token: a7660b8ccbc947bc3fd867cd569510c4b28787f9
organization-name : 1322338892733
userID のみ出力
コマンド:
$ abeja config show -u
出力:
abeja-platform-user : user-1619384784868
認証情報をJson フォーマットで出力
コマンド:
$ abeja config show --format json
出力:
{
"abeja-platform-user": "user-1619384784868",
"personal-access-token": "a7660b8ccbc947bc3fd867cd569510c4b28787f9",
"organization-name": "1322338892733"
}