Docs Menu
Docs Home
/ /
Atlas CLI
/ /

Atlas 組織リスト

項目一覧

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

すべての組織を返します。

このコマンドを使用するには、ユーザー アカウントまたは組織メンバー ロールを持つ API キーで認証する必要があります。

コマンド構文
atlas organizations list [options]
名前
タイプ
必須
説明

-h, --help

false

リスト用のヘルプ

--includeDeleted

false

削除された組織をリストに含めるかどうかを示すフラグ。このオプションは MongoDB Ops Manager 組織にのみ適用されます。削除された Atlas またはCloud Manager組織を返すことはできません。

--limit

整数

false

結果ページあたりの項目数。最大 500 まで。 500 を超える結果がある場合は、結果ページを変更するために --page オプションを指定します。 この値のデフォルトは 100 です。

--name

string

false

大文字と小文字を区別しない検索を実行する組織名。

--omitCount

false

JSON 応答が JSON 応答内の項目の総数( totalCount)を返すかどうかを示すフラグ。

-o, --output

string

false

出力形式。 有効な値は、 JSON 、 JSON -path、go-template、または go-template-file です。 完全な出力を表示するには、 -o JSONオプションを使用します。

--page

整数

false

結果のページを指定するページ番号。 この値のデフォルトは 1 です。

名前
タイプ
必須
説明

-P, --profile

string

false

構成ファイルから使用するプロファイルの名前。 Atlas CLI のプロファイルについては、 https://docub.mongodb.org/core/atlas-cli-save- connection-settings を参照してください。

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

ID NAME
<Id> <Name>
# Return a JSON-formatted list of all organizations:
atlas organizations list --output json
# Return a JSON-formatted list that includes the organizations named org1 and Org1, but doesn't return org123:
atlas organizations list --name org1 --output json

戻る

update