Join us at MongoDB.local London on 7 May to unlock new possibilities for your data. Use WEB50 to save 50%.
Register now >
Docs Menu
Docs Home
/ /

Atlas 관리 API 속도 제한

Atlas 과부하를 방지하고 공정한 사용을 보장하기 위해 속도 제한 을 사용하여 지정된 기간 내에 V2 API 엔드포인트로 전송되는 요청의 속도를 제어합니다. Atlas 토큰 버킷 알고리즘을 사용하여 처리하는 요청 수를 제한합니다. API 응답 헤더는 속도 제한 할당량, 현재 사용량 및 재설정 시간에 대한 실시간 가시성을 제공합니다.

각 Atlas 엔드포인트는 엔드포인트 설정 (동일한 속도 제한을 주식 엔드포인트의 컬렉션) 및 범위 (리소스 범위 조직, 프로젝트, 사용자 또는 IP 주소)와 연결됩니다. 동일한 엔드포인트 설정하다 및 범위 내의 엔드포인트만 동일한 토큰 버킷을 사용하여 속도가 제한되므로 엔드포인트에 대한 제한은 다양합니다. 따라서 Atlas는 Atlas 조직 또는 프로젝트에서 수행하는 모든 API 요청에 대해 균일한 API 제한을 적용하지 않습니다.

토큰 버킷 알고리즘은 다음과 같이 작동합니다.

  • Atlas 해당 버킷의 최대 토큰 수(capacity)까지 버킷을 채웁니다. 이는 전송할 수 있는 최대 요청 수를 반영합니다.

  • Atlas 토큰을 사용할 수 있는 경우에만 요청을 허용합니다. 엔드포인트에 대한 각 요청 하나의 토큰을 사용합니다.

  • Atlas 최대 토큰 수(capacity)까지 특정 간격(refillDurationSeconds)으로 고정된 비율(refillRate)로 버킷에 토큰을 추가합니다.

    버킷에 토큰이 있는 한 요청 버스트를 보낼 수 있습니다. 버킷에 있는 토큰 수가 제한되어 있는 경우 허용되는 버스트는 버킷에서 사용 가능한 토큰 수로 제한됩니다.

버킷이 비어 있으면 Atlas 관리 API는 추가 요청에 대해 429 (너무 많은 요청) HTTP 상태 코드를 반환합니다.

샘플 오류 메시지
{
"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 응답에는 다음 헤더가 포함될 수 있습니다.

RateLimit-Limit

이 엔드포인트에 허용되는 최대 요청 수(토큰 버킷 용량).

RateLimit-Remaining

이 점 에서 사용자가 이 엔드포인트에 대해 수행할 수 있는 남은 요청 수(토큰 버킷에 남아 있는 토큰)입니다.

Retry-After

요청 다시 시도하기 전에 대기할 최소 시간(초)입니다. 이 헤더는 속도 제한을 초과하는 경우에만 반환됩니다.

참고

Atlas 항상 응답 헤더를 반환하는 것은 아닙니다. 누락된 응답 헤더를 적절하게 처리하다 해야 하며 존재 여부에 의존해서는 안 됩니다.

속도 제한에 도달하면 Atlas 관리 API 429 (너무 많은 요청) HTTP 상태 코드를 반환합니다. 다음을 권장합니다.

  1. 재시도하기 전에 Retry-After 헤더에 지정된 시간 이상 기다립니다.

  2. 재시도에 실패하면 훨씬 더 오랜 시간 동안 대기합니다.

예시

첫 번째 재시도 전에 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 또는 ipAddress 중 하나를 사용하여 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?groupId={groupId}"

자세한 학습 은 Atlas 관리 API 사양을 참조하세요.

중요

요금 한도는 API 계약의 일부가 아니며 사전 통지 없이 변경될 수 있습니다.

범위: GROUP

용량: 1200

Refill: 500/60s

엔드포인트:

  • 얻다 /api/atlas/v2/groups/{groupId}/awsCustomDNS

  • 패치 /api/atlas/v2/groups/{groupId}/awsCustomDNS

범위: GROUP

용량: 1200

Refill: 500/60s

엔드포인트:

  • 얻다 /api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}

  • 얻다 /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}

범위: GROUP

용량: 1200

Refill: 500/60s

엔드포인트:

  • 얻다 /api/atlas/v2/groups/{groupId}/activityFeed

범위: 조직

용량: 500

Refill: 250/60s

엔드포인트:

  • 얻다 /api/atlas/v2/orgs/{orgId}/activityFeed

범위: GROUP

용량: 1200

Refill: 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}/alertConfigs

  • PUT /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}

범위: USER

용량: 300

Refill: 100/60s

엔드포인트:

  • 얻다 /api/atlas/v2/alertConfigs/matchers/fieldNames

범위: GROUP

용량: 1200

Refill: 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}

범위: GROUP

용량: 1200

Refill: 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/deployment

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment

범위: GROUP

용량: 500

Refill: 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/indexes

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes

범위: GROUP

용량: 1200

Refill: 500/60s

엔드포인트:

  • 얻다 /api/atlas/v2/groups/{groupId}/auditLog

  • 패치 /api/atlas/v2/groups/{groupId}/auditLog

범위: GROUP

용량: 1200

Refill: 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/exportBuckets

  • POST /api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs

  • PUT /api/atlas/v2/groups/{groupId}/backupCompliancePolicy

범위: GROUP

용량: 1200

Refill: 500/60s

엔드포인트:

  • 얻다 /api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}

  • 얻다 /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}

  • POST /api/atlas/v2/groups/{groupId}/liveMigrations

  • POST /api/atlas/v2/groups/{groupId}/liveMigrations/validate

  • PUT /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover

범위: 조직

용량: 500

Refill: 250/60s

엔드포인트:

  • 삭제 /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens

  • 얻다 /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects

  • POST /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens

범위: GROUP

용량: 2000

Refill: 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

Refill: 5000/60s

엔드포인트:

  • 얻다 /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz

범위: GROUP

용량: 1200

Refill: 500/60s

엔드포인트:

  • 삭제 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation

  • 얻다 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation

범위: GROUP

용량: 10000

Refill: 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}/processArgs

  • POST /api/atlas/v2/groups/{groupId}/clusters

  • POST /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade

  • POST /api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:grantMongoDBEmployeeAccess

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:revokeMongoDBEmployeeAccess

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion

  • POST /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}

범위: USER

용량: 300

Refill: 100/60s

엔드포인트:

  • 얻다 /api/atlas/v2/clusters

범위: GROUP

용량: 300

Refill: 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/unpin

  • PUT /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned

범위: GROUP

용량: 2000

Refill: 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

Refill: 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}/dataFederation

  • POST /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds

범위: GROUP

용량: 10000

Refill: 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

Refill: 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}/encryptionAtRest

  • POST /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints

범위: GROUP

용량: 300

Refill: 100/60s

엔드포인트:

  • 얻다 /api/atlas/v2/groups/{groupId}/events

  • 얻다 /api/atlas/v2/groups/{groupId}/events/{eventId}

범위: 조직

용량: 500

Refill: 250/60s

엔드포인트:

  • 얻다 /api/atlas/v2/orgs/{orgId}/events

  • 얻다 /api/atlas/v2/orgs/{orgId}/events/{eventId}

범위: USER

용량: 300

Refill: 100/60s

엔드포인트:

  • 얻다 /api/atlas/v2/eventTypes

범위: 조직

용량: 500

Refill: 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}/roleMappings

  • PUT /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}

범위: USER

용량: 300

Refill: 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

범위: GROUP

용량: 1200

Refill: 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}/flexClusters

  • POST /api/atlas/v2/groups/{groupId}/flexClusters:tenantUpgrade

범위: GROUP

용량: 1200

Refill: 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

범위: GROUP

용량: 1200

Refill: 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

Refill: 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}/globalWrites

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping

  • POST /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces

범위: GROUP

용량: 1200

Refill: 500/60s

엔드포인트:

  • 얻다 /api/atlas/v2/groups/{groupId}/ipAddresses

범위: 조직

용량: 500

Refill: 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:search

  • POST /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage

범위: USER

용량: 300

Refill: 100/60s

엔드포인트:

  • 얻다 /api/atlas/v2/skus

  • 얻다 /api/atlas/v2/skus/{skuId}

범위: GROUP

용량: 1200

Refill: 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}/userSecurity

  • POST /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify

범위: GROUP

용량: 1200

Refill: 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

Refill: 500/60s

엔드포인트:

  • 삭제 /api/atlas/v2/groups/{groupId}/maintenanceWindow

  • 얻다 /api/atlas/v2/groups/{groupId}/maintenanceWindow

  • 패치 /api/atlas/v2/groups/{groupId}/maintenanceWindow

  • POST /api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer

  • POST /api/atlas/v2/groups/{groupId}/maintenanceWindow/defer

범위: GROUP

용량: 1200

Refill: 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}/users

  • POST /api/atlas/v2/groups/{groupId}/users/{userId}:addRole

  • POST /api/atlas/v2/groups/{groupId}/users/{userId}:removeRole

  • PUT /api/atlas/v2/groups/{groupId}/users/{userId}/roles

범위: 조직

용량: 500

Refill: 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}/users

  • POST /api/atlas/v2/orgs/{orgId}/users/{userId}:addRole

  • POST /api/atlas/v2/orgs/{orgId}/users/{userId}:removeRole

  • PUT /api/atlas/v2/orgs/{orgId}/users/{userId}/roles

범위: USER

용량: 2500

Refill: 2000/60s

엔드포인트:

  • 얻다 /api/atlas/v2/users/byName/{userName}

  • 얻다 /api/atlas/v2/users/{userId}

  • POST /api/atlas/v2/users

범위: GROUP

용량: 300

Refill: 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

Refill: 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}/privateIpMode

  • POST /api/atlas/v2/groups/{groupId}/containers

  • POST /api/atlas/v2/groups/{groupId}/peers

범위: GROUP

용량: 1200

Refill: 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

범위: 조직

용량: 10

Refill: 5/60s

엔드포인트:

  • 얻다 /api/atlas/v2/orgs/{orgId}/settings

  • 패치 /api/atlas/v2/orgs/{orgId}/settings

범위: 조직

용량: 500

Refill: 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

Refill: 100/60s

엔드포인트:

  • 얻다 /api/atlas/v2/orgs

  • POST /api/atlas/v2/orgs

범위: GROUP

용량: 1200

Refill: 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/suggestedIndexes

  • POST /api/atlas/v2/groups/{groupId}/managedSlowMs/enable

범위: GROUP

용량: 4000

Refill: 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/endpointService/{endpointServiceId}

  • 패치 /api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode

  • POST /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService

  • POST /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint

범위: GROUP

용량: 1200

Refill: 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}/apiKeys

  • POST /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}

범위: 조직

용량: 500

Refill: 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}/apiKeys

  • POST /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList

범위: GROUP

용량: 1200

Refill: 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}/status

  • POST /api/atlas/v2/groups/{groupId}/accessList

범위: GROUP

용량: 1200

Refill: 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}/settings

  • POST /api/atlas/v2/groups/{groupId}/access

  • POST /api/atlas/v2/groups/{groupId}/invites

  • POST /api/atlas/v2/groups/{groupId}:migrate

범위: USER

용량: 1200

Refill: 500/60s

엔드포인트:

  • 얻다 /api/atlas/v2/groups

  • 얻다 /api/atlas/v2/groups/byName/{groupName}

  • POST /api/atlas/v2/groups

범위: GROUP

용량: 1200

Refill: 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}/pushBasedLogExport

  • POST /api/atlas/v2/groups/{groupId}/logIntegrations

  • POST /api/atlas/v2/groups/{groupId}/pushBasedLogExport

  • PUT /api/atlas/v2/groups/{groupId}/logIntegrations/{id}

범위: GROUP

용량: 1200

Refill: 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

Refill: 100/60s

엔드포인트:

  • 얻다 /api/atlas/v2/rateLimits

  • 얻다 /api/atlas/v2/rateLimits/{endpointSetId}

범위: 조직

용량: 500

Refill: 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}/resourcePolicies

  • POST /api/atlas/v2/orgs/{orgId}/resourcePolicies:validate

범위: IP

용량: 400

Refill: 100/60s

엔드포인트:

  • 얻다 /api/atlas/v2/unauth/controlPlaneIPAddresses

범위: USER

용량: 300

Refill: 100/60s

엔드포인트:

  • 얻다 /api/atlas/v2

범위: GROUP

용량: 1200

Refill: 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}/serviceAccounts

  • POST /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList

  • POST /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secrets

  • POST /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}:invite

범위: 조직

용량: 500

Refill: 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}/serviceAccounts

  • POST /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList

  • POST /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets

범위: GROUP

용량: 1200

Refill: 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}/streams

  • POST /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections

  • POST /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:accept

  • POST /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:reject

  • POST /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections

  • POST /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor

  • POST /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start

  • POST /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startWith

  • POST /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop

  • POST /api/atlas/v2/groups/{groupId}/streams:withSampleConnections

범위: GROUP

용량: 1200

Refill: 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

범위: 조직

용량: 1200

Refill: 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}/teams

  • POST /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users

  • POST /api/atlas/v2/orgs/{orgId}/teams/{teamId}:addUser

  • POST /api/atlas/v2/orgs/{orgId}/teams/{teamId}:removeUser

범위: GROUP

용량: 1200

Refill: 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}/index

  • POST /api/atlas/v2/groups/{groupId}/integrations/{integrationType}

  • PUT /api/atlas/v2/groups/{groupId}/integrations/{integrationType}

범위: GROUP

용량: 1200

Refill: 500/60s

엔드포인트:

  • 삭제 /api/atlas/v2/groups/{groupId}/userSecurity/customerX509

  • 얻다 /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs

  • POST /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs

참고

더 높은 요금 한도에 대해 지원 에 문의한 경우 이전 표에 설명된 것과 다른 한도가 적용될 수 있습니다.

돌아가기

서비스 계정 시크릿 교체

이 페이지의 내용