Atlas 조직 초대 업데이트
조직에 지정된 대기 중인 초대의 세부 정보를 수정합니다.
초대 ID 또는 사용자의 이메일 주소를 사용하여 초대를 지정할 수 있습니다.
이 명령을 사용하려면 사용자 계정 또는 조직 소유자 역할이 있는 API 키로 인증해야 합니다.
구문
명령 구문
atlas organizations invitations update [invitationId] [options]
arguments
이름 | 유형 | 필수 사항 | 설명 |
---|---|---|---|
invitationId | 문자열 | 거짓 | 초대를 식별하는 고유한 24자리 문자열입니다. |
옵션
이름 | 유형 | 필수 사항 | 설명 |
---|---|---|---|
--email | 문자열 | 거짓 | 사용자의 이메일 주소입니다. |
-h, --help | 거짓 | 업데이트 도움말 | |
--orgId | 문자열 | 거짓 | 사용할 조직 ID입니다. 이 옵션은 구성 파일 또는 환경 변수의 설정을 재정의합니다. |
-o, --output | 문자열 | 거짓 | 출력 형식입니다. 유효한 값은 json, json-path, go-템플릿 또는 go-템플릿 파일입니다. 전체 출력을 보려면 -o json 옵션을 사용합니다. |
--role | strings | true | 연결된 조직에 대한 사용자의 역할입니다. 유효한 값은 ORG_OWNER, ORG_MEMBER, ORG_GROUP_CREATOR, ORG_BILLING_ADMIN, ORG_READ_ONLY입니다. 이 플래그를 전달하면 기존 데이터가 대체됩니다. |
상속된 옵션
이름 | 유형 | 필수 사항 | 설명 |
---|---|---|---|
-P, --profile | 문자열 | 거짓 | 구성 파일에서 사용할 프로필의 이름입니다. Atlas CLI의 프로필에 대해 자세히 알아보려면 https://dochub.mongodb.org/core/atlas-cli-save-connection-settings를 참조하세요. |
출력
명령이 성공하면 Atlas CLI는 다음 샘플과 유사한 출력을 반환합니다. 괄호 안의 값은 사용자의 값을 나타냅니다.
Invitation <Id> updated.
예시
# Modify the pending invitation with the ID 5dd56c847a3e5a1f363d424d to grant ORG_OWNER access the organization with the ID 5f71e5255afec75a3d0f96dc: atlas organizations invitations update 5dd56c847a3e5a1f363d424d --orgId 5f71e5255afec75a3d0f96dc --role ORG_OWNER --output json
# Modify the invitation for the user with the email address user@example.com to grant ORG_OWNER access the organization with the ID 5f71e5255afec75a3d0f96dc: atlas organizations invitations update --email user@example.com --orgId 5f71e5255afec75a3d0f96dc --role ORG_OWNER --output json