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"
}