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