Docs Menu
Docs Home
/ /
MongoDB CLI
/ / /

mongocli IAM ユーザーの説明

項目一覧

  • 構文
  • オプション
  • 継承されたオプション
  • 出力

指定された MongoDB ユーザーの詳細を返します。

MongoDB ユーザーを識別する一意の 24 桁の ID または MongoDB ユーザーのユーザー名を指定できます。

任意のロールを持つユーザーアカウントと API キーが、このコマンドを実行できます。

コマンド構文
mongocli iam users describe [options]
名前
タイプ
必須
説明
-h, --help
false
説明用のヘルプ
--id
string
false
ユーザーの一意の 24 桁の識別子。
-o, --output
string
false
出力形式。 有効な値は、 JSON 、 JSON -path、go-template、または go-template-file です。 完全な出力を表示するには、 -o JSONオプションを使用します。
--username
string
false
ユーザーを識別する名前。 有効なメール アドレスを指定する必要があります。
名前
タイプ
必須
説明
-P, --profile
string
false
構成ファイルから使用するプロファイルの名前。 MongoCLI のプロファイルについては、 https://docub.mongodb.org/core/atlas-cli-configuration-file を参照してください。

コマンドが成功すると、CLI は次のサンプルのような出力を返します。 括弧内の値は 値を表します。

ID FIRST NAME LAST NAME USERNAME EMAIL
<ID> <FirstName> <LastName> <Username> <EmailAddress>
# Return the JSON-formatted details for the MongoDB user with the ID 5dd56c847a3e5a1f363d424d:
mongocli iam users describe --id 5dd56c847a3e5a1f363d424d --output json
# Return the JSON-formatted details for the MongoDB user with the username myUser:
mongocli iam users describe --username myUser --output json

戻る

削除