Atlas uses rate limiting to control the rate of requests sent to the V2 API endpoints within a specified timeframe to prevent overload and ensure fair usage. Atlas uses the Token Bucket Algorithm to limit the number of requests it processes. The API response headers offer real-time visibility into rate limit quotas, current usage, and reset times.
개요
Each Atlas endpoint is associated with an endpoint set (a collection of endpoints that share the same rate limits) and scope (resource scopes organization, project, user, or IP address) that define its rate limits. The limits for the endpoints vary as only endpoints within the same endpoint set and scope are rate limited using the same token bucket. Therefore, Atlas doesn't apply a uniform API limit across all the API requests made by an Atlas organization or project.
토큰 버킷 알고리즘
토큰 버킷 알고리즘은 다음과 같이 작동합니다.
Atlas fills the bucket up to the maximum number of tokens (
capacity) for that bucket. This reflects the maximum number of requests you can send.Atlas 토큰을 사용할 수 있는 경우에만 요청을 허용합니다. 엔드포인트에 대한 각 요청 하나의 토큰을 사용합니다.
Atlas 최대 토큰 수(
capacity)까지 특정 간격(refillDurationSeconds)으로 고정된 비율(refillRate)로 버킷에 토큰을 추가합니다.버킷에 토큰이 있는 한 요청 버스트를 보낼 수 있습니다. 버킷에 있는 토큰 수가 제한되어 있는 경우 허용되는 버스트는 버킷에서 사용 가능한 토큰 수로 제한됩니다.
When the bucket is empty, the Atlas Administration API returns a 429 (Too Many Requests) HTTP status code for any additional requests.
{ "detail": "Rate limit exceeded for api/atlas/v2/orgs. Please retry after 55 seconds. Request capacity: 10. Refill rate: 5 per 60 seconds.", "error": 429, "errorCode": "RATE_LIMITED_TOKEN_BUCKET", "parameters": [ "api/atlas/v2/orgs", 55, 10, 5, 60 ], "reason": "Too Many Requests" }
자세히 학습 응답 헤더를 참조하세요.
응답 헤더
Atlas 관리 API 응답에는 다음 헤더가 포함될 수 있습니다.
| 이 엔드포인트에 허용되는 최대 요청 수(토큰 버킷 용량). |
| 이 점 에서 사용자가 이 엔드포인트에 대해 수행할 수 있는 남은 요청 수(토큰 버킷에 남아 있는 토큰)입니다. |
| 요청 다시 시도하기 전에 대기할 최소 시간(초)입니다. 이 헤더는 속도 제한을 초과하는 경우에만 반환됩니다. |
참고
Atlas 항상 응답 헤더를 반환하는 것은 아닙니다. 누락된 응답 헤더를 적절하게 처리하다 해야 하며 존재 여부에 의존해서는 안 됩니다.
재시도 전략
When you reach the rate limit, the Atlas Administration API returns a 429 (Too Many Requests) HTTP status code. We recommend:
재시도하기 전에
Retry-After헤더에 지정된 시간 이상 기다립니다.재시도에 실패하면 훨씬 더 오랜 시간 동안 대기합니다.
예시
첫 번째 재시도 전에 10초 동안 기다립니다. 두 번째 재시도 전에 20초 동안 기다립니다. 세 번째 다시 시도하기 전에 40초 동안 기다리는 방식으로 진행합니다.
헤더에 지정된 것과 동일한 시간 동안 기다리더라도 여전히 속도 제한이 적용될 수 Retry-After 있습니다. 이 경우 지수 지연(지터)을 사용하여 계속 백오프하는 것이 좋습니다. 동시 재시도 작업으로 인해 요청이 실패하지 않도록 계산된 대기 시간에 임의 지연( 지터 )을 추가하는것도 좋습니다.
예시
여러 클라이언트가 동일한 Atlas 프로젝트 에 대해 동일한 엔드포인트를 사용하고 있다고 가정해 보겠습니다. 클라이언트는 동시에 속도 제한을 받고 Retry-After 헤더에 지정된 것과 동일한 시간 동안 기다립니다. 클라이언트 중 하나가 성공적으로 요청을 제출하고 다른 클라이언트가 요청을 다시 시도하기 전에 토큰 버킷을 다시 고갈시키는 경우, 다른 클라이언트는 여전히 속도 제한을 받습니다.
또한 다음을 사용하여 버킷이 다시 최대 용량 될 수 있는 시점을 계산할 수도 있습니다(해당 시간 동안 토큰을 사용하는 다른 요청이 없다고 가정).
(capacity / refill rate) * refill interval
더 높은 요금 한도가 필요한 경우지원 에 문의하세요.
요금 한도 보기
rateLimits 리소스 에 GET 요청 보내 모든 엔드포인트 세트 및 범위에 대한 속도 제한을 볼 수 있습니다.
curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-03-12+json" \ --header "Content-Type: application/json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/rateLimits"
조직, 프로젝트, 사용자 또는 IP 주소 에 적용 가능한 속도 제한을 보려면 선택적 쿼리 매개변수 groupId, orgId, userId 중 하나를 사용하여 rateLimits 엔드포인트에 GET 요청 보냅니다. ipAddress.
curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-03-12+json" \ --header "Content-Type: application/json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/rateLimits?groupId={groupId}"
기본 속도 제한
중요
Rate limits are not part of the API contract and might change without prior notice.
AWS 클러스터 DNS
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/awsCustomDNS패치
/api/atlas/v2/groups/{groupId}/awsCustomDNS
액세스 로그
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}얻다
/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}
활동 피드
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/activityFeed
범위: ORGANIZATION
용량: 500
리필: 250/60s
엔드포인트:
얻다
/api/atlas/v2/orgs/{orgId}/activityFeed
알림 구성
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}얻다
/api/atlas/v2/groups/{groupId}/alertConfigs얻다
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}패치
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}POST
/api/atlas/v2/groups/{groupId}/alertConfigsPUT
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}
범위: USER
용량: 300
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/alertConfigs/matchers/fieldNames
알림
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts얻다
/api/atlas/v2/groups/{groupId}/alerts얻다
/api/atlas/v2/groups/{groupId}/alerts/{alertId}얻다
/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs패치
/api/atlas/v2/groups/{groupId}/alerts/{alertId}
Atlas Search 배포
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deploymentPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment
Atlas search 인덱스
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexesPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes
Auditing
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/auditLog패치
/api/atlas/v2/groups/{groupId}/auditLog
클라우드 백업
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}삭제
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints/{endpointId}삭제
/api/atlas/v2/groups/{groupId}/backupCompliancePolicy삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}얻다
/api/atlas/v2/groups/{groupId}/backup/exportBuckets얻다
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}얻다
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints얻다
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints/{endpointId}얻다
/api/atlas/v2/groups/{groupId}/backupCompliancePolicy얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}패치
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}POST
/api/atlas/v2/groups/{groupId}/backup/exportBucketsPOST
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpointsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exportsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshotsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobsPUT
/api/atlas/v2/groups/{groupId}/backupCompliancePolicy
클라우드 마이그레이션 서비스
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}얻다
/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}POST
/api/atlas/v2/groups/{groupId}/liveMigrationsPOST
/api/atlas/v2/groups/{groupId}/liveMigrations/validatePUT
/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover
범위: ORGANIZATION
용량: 500
리필: 250/60s
엔드포인트:
삭제
/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens얻다
/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjectsPOST
/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens
클라우드 제공자 액세스
범위: GROUP
용량: 2000
리필: 1000/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}얻다
/api/atlas/v2/groups/{groupId}/cloudProviderAccess얻다
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}패치
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}POST
/api/atlas/v2/groups/{groupId}/cloudProviderAccess
클러스터 로그 모니터링
범위: GROUP
용량: 10000
리필: 5000/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz
클러스터 장애 시뮬레이션
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulationPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation
클러스터
범위: GROUP
용량: 10000
리필: 5000/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}얻다
/api/atlas/v2/groups/{groupId}/clusters얻다
/api/atlas/v2/groups/{groupId}/clusters/provider/regions얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/autoScalingConfiguration얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status얻다
/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgsPOST
/api/atlas/v2/groups/{groupId}/clustersPOST
/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradePOST
/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerlessPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimariesPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:grantMongoDBEmployeeAccessPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersionPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:revokeMongoDBEmployeeAccessPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersionPOST
/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}
범위: USER
용량: 300
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/clusters
컬렉션 수준 지표
범위: GROUP
용량: 300
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements얻다
/api/atlas/v2/groups/{groupId}/collStats/metrics얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpinPUT
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned
사용자 지정 데이터베이스 역할
범위: GROUP
용량: 2000
리필: 1000/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}얻다
/api/atlas/v2/groups/{groupId}/customDBRoles/roles얻다
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}패치
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}POST
/api/atlas/v2/groups/{groupId}/customDBRoles/roles
데이터 페더레이션
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}삭제
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}삭제
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}얻다
/api/atlas/v2/groups/{groupId}/dataFederation얻다
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}얻다
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits얻다
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}얻다
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz얻다
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds얻다
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}패치
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}패치
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}POST
/api/atlas/v2/groups/{groupId}/dataFederationPOST
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds
데이터베이스 사용자
범위: GROUP
용량: 10000
리필: 5000/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}얻다
/api/atlas/v2/groups/{groupId}/databaseUsers얻다
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}패치
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}POST
/api/atlas/v2/groups/{groupId}/databaseUsers
고객 키 관리를 사용한 미사용 데이터 암호화
범위: GROUP
용량: 2000
리필: 1000/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}얻다
/api/atlas/v2/groups/{groupId}/encryptionAtRest얻다
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints얻다
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}패치
/api/atlas/v2/groups/{groupId}/encryptionAtRestPOST
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints
이벤트
범위: GROUP
용량: 300
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/events얻다
/api/atlas/v2/groups/{groupId}/events/{eventId}
범위: ORGANIZATION
용량: 500
리필: 250/60s
엔드포인트:
얻다
/api/atlas/v2/orgs/{orgId}/events얻다
/api/atlas/v2/orgs/{orgId}/events/{eventId}
범위: USER
용량: 300
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/eventTypes
연합 인증
범위: ORGANIZATION
용량: 500
리필: 250/60s
엔드포인트:
삭제
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}삭제
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}얻다
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}얻다
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings얻다
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}얻다
/api/atlas/v2/orgs/{orgId}/federationSettings패치
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}POST
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappingsPUT
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}
범위: USER
용량: 300
리필: 100/60s
엔드포인트:
삭제
/api/atlas/v2/federationSettings/{federationSettingsId}삭제
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}삭제
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks얻다
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs얻다
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders얻다
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}얻다
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml패치
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}POST
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders
Flex 클러스터
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/flexClusters/{name}얻다
/api/atlas/v2/groups/{groupId}/flexClusters얻다
/api/atlas/v2/groups/{groupId}/flexClusters/{name}패치
/api/atlas/v2/groups/{groupId}/flexClusters/{name}POST
/api/atlas/v2/groups/{groupId}/flexClustersPOST
/api/atlas/v2/groups/{groupId}/flexClusters:tenantUpgrade
Flex 복원 작업
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs얻다
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs/{restoreJobId}POST
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs
Flex 스냅샷
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshots얻다
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshots/{snapshotId}POST
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/download
글로벌 클러스터
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWritesPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMappingPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces
IP 주소
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/ipAddresses
송장
범위: ORGANIZATION
용량: 500
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}얻다
/api/atlas/v2/orgs/{orgId}/invoices얻다
/api/atlas/v2/orgs/{orgId}/invoices/pending얻다
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}얻다
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv얻다
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems:searchPOST
/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage
범위: USER
용량: 300
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/skus얻다
/api/atlas/v2/skus/{skuId}
LDAP 구성
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping얻다
/api/atlas/v2/groups/{groupId}/userSecurity얻다
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}패치
/api/atlas/v2/groups/{groupId}/userSecurityPOST
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify
레거시 백업
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}
유지 관리 창
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/maintenanceWindow얻다
/api/atlas/v2/groups/{groupId}/maintenanceWindow패치
/api/atlas/v2/groups/{groupId}/maintenanceWindowPOST
/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDeferPOST
/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer
MongoDB 클라우드 사용자
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/users/{userId}얻다
/api/atlas/v2/groups/{groupId}/users얻다
/api/atlas/v2/groups/{groupId}/users/{userId}POST
/api/atlas/v2/groups/{groupId}/usersPOST
/api/atlas/v2/groups/{groupId}/users/{userId}:addRolePOST
/api/atlas/v2/groups/{groupId}/users/{userId}:removeRolePUT
/api/atlas/v2/groups/{groupId}/users/{userId}/roles
범위: ORGANIZATION
용량: 500
리필: 250/60s
엔드포인트:
삭제
/api/atlas/v2/orgs/{orgId}/users/{userId}얻다
/api/atlas/v2/orgs/{orgId}/users얻다
/api/atlas/v2/orgs/{orgId}/users/{userId}패치
/api/atlas/v2/orgs/{orgId}/users/{userId}POST
/api/atlas/v2/orgs/{orgId}/usersPOST
/api/atlas/v2/orgs/{orgId}/users/{userId}:addRolePOST
/api/atlas/v2/orgs/{orgId}/users/{userId}:removeRolePUT
/api/atlas/v2/orgs/{orgId}/users/{userId}/roles
범위: USER
용량: 2500
리필: 2000/60s
엔드포인트:
얻다
/api/atlas/v2/users/byName/{userName}얻다
/api/atlas/v2/users/{userId}POST
/api/atlas/v2/users
모니터링 및 로그
범위: GROUP
용량: 300
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics얻다
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements얻다
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements얻다
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements얻다
/api/atlas/v2/groups/{groupId}/processes얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/databases얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/disks얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements
네트워크 피어링
범위: GROUP
용량: 2000
리필: 1000/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/containers/{containerId}삭제
/api/atlas/v2/groups/{groupId}/peers/{peerId}얻다
/api/atlas/v2/groups/{groupId}/containers얻다
/api/atlas/v2/groups/{groupId}/containers/all얻다
/api/atlas/v2/groups/{groupId}/containers/{containerId}얻다
/api/atlas/v2/groups/{groupId}/peers얻다
/api/atlas/v2/groups/{groupId}/peers/{peerId}얻다
/api/atlas/v2/groups/{groupId}/privateIpMode패치
/api/atlas/v2/groups/{groupId}/containers/{containerId}패치
/api/atlas/v2/groups/{groupId}/peers/{peerId}패치
/api/atlas/v2/groups/{groupId}/privateIpModePOST
/api/atlas/v2/groups/{groupId}/containersPOST
/api/atlas/v2/groups/{groupId}/peers
온라인 아카이브
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives
조직 설정
범위: ORGANIZATION
용량: 10
리필: 5/60s
엔드포인트:
얻다
/api/atlas/v2/orgs/{orgId}/settings패치
/api/atlas/v2/orgs/{orgId}/settings
조직
범위: ORGANIZATION
용량: 500
리필: 250/60s
엔드포인트:
삭제
/api/atlas/v2/orgs/{orgId}삭제
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}얻다
/api/atlas/v2/orgs/{orgId}얻다
/api/atlas/v2/orgs/{orgId}/groups얻다
/api/atlas/v2/orgs/{orgId}/invites얻다
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}패치
/api/atlas/v2/orgs/{orgId}패치
/api/atlas/v2/orgs/{orgId}/invites패치
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}POST
/api/atlas/v2/orgs/{orgId}/invites
범위: USER
용량: 300
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/orgsPOST
/api/atlas/v2/orgs
Performance Advisor
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/managedSlowMs/disable얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/dropIndexSuggestions얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/schemaAdvice얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/suggestedIndexes얻다
/api/atlas/v2/groups/{groupId}/managedSlowMs얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs얻다
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexesPOST
/api/atlas/v2/groups/{groupId}/managedSlowMs/enable
비공개 엔드포인트 서비스
범위: GROUP
용량: 4000
리필: 2000/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}삭제
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}얻다
/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode얻다
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService얻다
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}얻다
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}패치
/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalModePOST
/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointServicePOST
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint
프로그래밍 방식 API 키
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}얻다
/api/atlas/v2/groups/{groupId}/apiKeys패치
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}POST
/api/atlas/v2/groups/{groupId}/apiKeysPOST
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}
범위: ORGANIZATION
용량: 500
리필: 250/60s
엔드포인트:
삭제
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}삭제
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}얻다
/api/atlas/v2/orgs/{orgId}/apiKeys얻다
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}얻다
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList얻다
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}패치
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}POST
/api/atlas/v2/orgs/{orgId}/apiKeysPOST
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList
프로젝트 IP 액세스 목록
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}얻다
/api/atlas/v2/groups/{groupId}/accessList얻다
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}얻다
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/statusPOST
/api/atlas/v2/groups/{groupId}/accessList
프로젝트
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}삭제
/api/atlas/v2/groups/{groupId}/invites/{invitationId}삭제
/api/atlas/v2/groups/{groupId}/limits/{limitName}얻다
/api/atlas/v2/groups/{groupId}얻다
/api/atlas/v2/groups/{groupId}/invites얻다
/api/atlas/v2/groups/{groupId}/invites/{invitationId}얻다
/api/atlas/v2/groups/{groupId}/limits얻다
/api/atlas/v2/groups/{groupId}/limits/{limitName}얻다
/api/atlas/v2/groups/{groupId}/mongoDBVersions얻다
/api/atlas/v2/groups/{groupId}/settings패치
/api/atlas/v2/groups/{groupId}패치
/api/atlas/v2/groups/{groupId}/invites패치
/api/atlas/v2/groups/{groupId}/invites/{invitationId}패치
/api/atlas/v2/groups/{groupId}/limits/{limitName}패치
/api/atlas/v2/groups/{groupId}/settingsPOST
/api/atlas/v2/groups/{groupId}/accessPOST
/api/atlas/v2/groups/{groupId}/invitesPOST
/api/atlas/v2/groups/{groupId}:migrate
범위: USER
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups얻다
/api/atlas/v2/groups/byName/{groupName}POST
/api/atlas/v2/groups
푸시 기반 로그 내보내기
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}삭제
/api/atlas/v2/groups/{groupId}/pushBasedLogExport얻다
/api/atlas/v2/groups/{groupId}/logIntegrations얻다
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}얻다
/api/atlas/v2/groups/{groupId}/pushBasedLogExport패치
/api/atlas/v2/groups/{groupId}/pushBasedLogExportPOST
/api/atlas/v2/groups/{groupId}/logIntegrationsPOST
/api/atlas/v2/groups/{groupId}/pushBasedLogExportPUT
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}
쿼리 형태 인사이트
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapeInsights/summaries얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapeInsights/{queryShapeHash}/details얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes/{queryShapeHash}패치
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes/{queryShapeHash}
속도 제한 검사
범위: USER
용량: 300
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/rateLimits얻다
/api/atlas/v2/rateLimits/{endpointSetId}
리소스 정책
범위: ORGANIZATION
용량: 500
리필: 250/60s
엔드포인트:
삭제
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}얻다
/api/atlas/v2/orgs/{orgId}/nonCompliantResources얻다
/api/atlas/v2/orgs/{orgId}/resourcePolicies얻다
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}패치
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}POST
/api/atlas/v2/orgs/{orgId}/resourcePoliciesPOST
/api/atlas/v2/orgs/{orgId}/resourcePolicies:validate
루트
범위: IP
용량: 400
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2/unauth/controlPlaneIPAddresses
범위: USER
용량: 300
리필: 100/60s
엔드포인트:
얻다
/api/atlas/v2
서비스 계정
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}삭제
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList/{ipAddress}삭제
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secrets/{secretId}얻다
/api/atlas/v2/groups/{groupId}/serviceAccounts얻다
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}얻다
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList패치
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}POST
/api/atlas/v2/groups/{groupId}/serviceAccountsPOST
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessListPOST
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secretsPOST
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}:invite
범위: ORGANIZATION
용량: 500
리필: 250/60s
엔드포인트:
삭제
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}삭제
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList/{ipAddress}삭제
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets/{secretId}얻다
/api/atlas/v2/orgs/{orgId}/serviceAccounts얻다
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}얻다
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList얻다
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/groups패치
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}POST
/api/atlas/v2/orgs/{orgId}/serviceAccountsPOST
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessListPOST
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets
공유 계층 복원 작업
범위: GROUP
용량: 4000
리필: 2000/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore
공유 계층 스냅샷
범위: GROUP
용량: 4000
리필: 2000/60s
엔드포인트:
얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots얻다
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download
스트림
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId}삭제
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}삭제
/api/atlas/v2/groups/{groupId}/streams/{tenantName}삭제
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}삭제
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}얻다
/api/atlas/v2/groups/{groupId}/streams얻다
/api/atlas/v2/groups/{groupId}/streams/accountDetails얻다
/api/atlas/v2/groups/{groupId}/streams/activeVpcPeeringConnections얻다
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections얻다
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId}얻다
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections얻다
/api/atlas/v2/groups/{groupId}/streams/{tenantName}얻다
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs얻다
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections얻다
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}얻다
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}얻다
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors얻다
/api/atlas/v2/groups/{groupId}/streams/{tenantName}:downloadOperationalLogs패치
/api/atlas/v2/groups/{groupId}/streams/{tenantName}패치
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}패치
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}POST
/api/atlas/v2/groups/{groupId}/streamsPOST
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnectionsPOST
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:acceptPOST
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:rejectPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connectionsPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processorPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startWithPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stopPOST
/api/atlas/v2/groups/{groupId}/streams:withSampleConnections
팀
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/teams/{teamId}얻다
/api/atlas/v2/groups/{groupId}/teams얻다
/api/atlas/v2/groups/{groupId}/teams/{teamId}패치
/api/atlas/v2/groups/{groupId}/teams/{teamId}POST
/api/atlas/v2/groups/{groupId}/teams
범위: ORGANIZATION
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/orgs/{orgId}/teams/{teamId}삭제
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}얻다
/api/atlas/v2/orgs/{orgId}/teams얻다
/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}얻다
/api/atlas/v2/orgs/{orgId}/teams/{teamId}얻다
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users패치
/api/atlas/v2/orgs/{orgId}/teams/{teamId}POST
/api/atlas/v2/orgs/{orgId}/teamsPOST
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/usersPOST
/api/atlas/v2/orgs/{orgId}/teams/{teamId}:addUserPOST
/api/atlas/v2/orgs/{orgId}/teams/{teamId}:removeUser
타사 통합
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}얻다
/api/atlas/v2/groups/{groupId}/integrations얻다
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/indexPOST
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}PUT
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}
X509 인증
범위: GROUP
용량: 1200
리필: 500/60s
엔드포인트:
삭제
/api/atlas/v2/groups/{groupId}/userSecurity/customerX509얻다
/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certsPOST
/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs
참고
더 높은 요금 한도에 대해 지원 에 문의한 경우 이전 표에 설명된 것과 다른 한도가 적용될 수 있습니다.