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

Atlas Administration API速率限制

Atlas使用速率限制来控制指定时间范围内发送到 V2 API端点的请求的速率,以防止过载并确保公平使用。Atlas使用令牌桶算法来限制其处理的请求数量。API响应标头可实时了解速率限制配额、当前使用情况和重置时间。

每个Atlas终结点都与定义其速率限制的终结点设立(股票相同速率限制的终结点集合)和范围(资源范围组织、项目、用户或IP解决)相关联。终结点的限制各不相同,因为只有同一终结点设立和范围内的终结点使用相同的令牌桶进行速率限制。因此, Atlas不会对Atlas组织或项目发出的所有API请求应用统一的API限制。

令牌桶算法的工作原理如下:

  • Atlas会填充存储桶,直至达到该存储桶的最大令牌数 (capacity)。这反映了您可以发送的最大请求数。

  • Atlas仅在令牌可用时允许请求。对终结点的每个请求都会消耗一个令牌。

  • Atlas会在特定时间间隔 (refillDurationSeconds) 以固定速率 (refillRate) 向存储桶添加令牌,但不超过最大令牌数量 (capacity)。

    只要存储桶中有令牌,您就可以发送突发请求。如果存储桶中的令牌数量有限,则允许的突发限制为存储桶中的可用令牌数量。

当存储桶为空时, 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. 如果重试失败,则等待时间明显更长。

例子

在第一次重试之前,请等待十秒钟。在第二次重试之前,请等待 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地址的速率限制,请使用可选查询参数之一向 rateLimits 终结点发送 GET 请求,参数为 groupIdorgIduserIdipAddress

项目返回率限制请求示例
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合同的一部分,可能会发生变化,恕不另行通知。

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 获取 /api/atlas/v2/groups/{groupId}/awsCustomDNS

  • 修补 /api/atlas/v2/groups/{groupId}/awsCustomDNS

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 获取 /api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}

  • 获取 /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 获取 /api/atlas/v2/groups/{groupId}/activityFeed

范围:组织

容量:500

Refill: 250/60s

终结点:

  • 获取 /api/atlas/v2/orgs/{orgId}/activityFeed

范围:群组

容量: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}

  • 发布 /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

范围:群组

容量: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}

范围:群组

容量: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

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

范围:群组

容量: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}

  • 发布 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes

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

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 获取 /api/atlas/v2/groups/{groupId}/auditLog

  • 修补 /api/atlas/v2/groups/{groupId}/auditLog

范围:群组

容量: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}

  • 发布 /api/atlas/v2/groups/{groupId}/backup/exportBuckets

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

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

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

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

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

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

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 获取 /api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}

  • 获取 /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}

  • 发布 /api/atlas/v2/groups/{groupId}/liveMigrations

  • 发布 /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

  • 发布 /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens

范围:群组

容量: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}

  • 发布 /api/atlas/v2/groups/{groupId}/cloudProviderAccess

范围:群组

容量:10000

Refill: 5000/60s

终结点:

  • 获取 /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz

范围:群组

容量:1200

Refill: 500/60s

终结点:

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

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

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

范围:群组

容量: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

  • 发布 /api/atlas/v2/groups/{groupId}/clusters

  • 发布 /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade

  • 发布 /api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless

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

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

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

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

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

  • 发布 /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}

范围:USER

容量:300

Refill: 100/60s

终结点:

  • 获取 /api/atlas/v2/clusters

范围:群组

容量: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

范围:群组

容量: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}

  • 发布 /api/atlas/v2/groups/{groupId}/customDBRoles/roles

范围:群组

容量: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}

  • 发布 /api/atlas/v2/groups/{groupId}/dataFederation

  • 发布 /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds

范围:群组

容量: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}

  • 发布 /api/atlas/v2/groups/{groupId}/databaseUsers

范围:群组

容量: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

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

范围:群组

容量: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}

  • 发布 /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}

  • 发布 /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders

范围:群组

容量: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}

  • 发布 /api/atlas/v2/groups/{groupId}/flexClusters

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

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 获取 /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs

  • 获取 /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs/{restoreJobId}

  • 发布 /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 获取 /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshots

  • 获取 /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshots/{snapshotId}

  • 发布 /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/download

范围:群组

容量: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

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

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

范围:群组

容量: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

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

范围:USER

容量:300

Refill: 100/60s

终结点:

  • 获取 /api/atlas/v2/skus

  • 获取 /api/atlas/v2/skus/{skuId}

范围:群组

容量: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

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

范围:群组

容量: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}

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 删除 /api/atlas/v2/groups/{groupId}/maintenanceWindow

  • 获取 /api/atlas/v2/groups/{groupId}/maintenanceWindow

  • 修补 /api/atlas/v2/groups/{groupId}/maintenanceWindow

  • 发布 /api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer

  • 发布 /api/atlas/v2/groups/{groupId}/maintenanceWindow/defer

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 删除 /api/atlas/v2/groups/{groupId}/users/{userId}

  • 获取 /api/atlas/v2/groups/{groupId}/users

  • 获取 /api/atlas/v2/groups/{groupId}/users/{userId}

  • 发布 /api/atlas/v2/groups/{groupId}/users

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

  • 发布 /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}

  • 发布 /api/atlas/v2/orgs/{orgId}/users

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

  • 发布 /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}

  • 发布 /api/atlas/v2/users

范围:群组

容量: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

范围:群组

容量: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

  • 发布 /api/atlas/v2/groups/{groupId}/containers

  • 发布 /api/atlas/v2/groups/{groupId}/peers

范围:群组

容量: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}

  • 发布 /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}

  • 发布 /api/atlas/v2/orgs/{orgId}/invites

范围:USER

容量:300

Refill: 100/60s

终结点:

  • 获取 /api/atlas/v2/orgs

  • 发布 /api/atlas/v2/orgs

范围:群组

容量: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

  • 发布 /api/atlas/v2/groups/{groupId}/managedSlowMs/enable

范围:群组

容量: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

  • 发布 /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService

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

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 删除 /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}

  • 获取 /api/atlas/v2/groups/{groupId}/apiKeys

  • 修补 /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}

  • 发布 /api/atlas/v2/groups/{groupId}/apiKeys

  • 发布 /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}

  • 发布 /api/atlas/v2/orgs/{orgId}/apiKeys

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

范围:群组

容量: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

  • 发布 /api/atlas/v2/groups/{groupId}/accessList

范围:群组

容量: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

  • 发布 /api/atlas/v2/groups/{groupId}/access

  • 发布 /api/atlas/v2/groups/{groupId}/invites

  • 发布 /api/atlas/v2/groups/{groupId}:migrate

范围:USER

容量:1200

Refill: 500/60s

终结点:

  • 获取 /api/atlas/v2/groups

  • 获取 /api/atlas/v2/groups/byName/{groupName}

  • 发布 /api/atlas/v2/groups

范围:群组

容量: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

  • 发布 /api/atlas/v2/groups/{groupId}/logIntegrations

  • 发布 /api/atlas/v2/groups/{groupId}/pushBasedLogExport

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

范围:群组

容量: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}

  • 发布 /api/atlas/v2/orgs/{orgId}/resourcePolicies

  • 发布 /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

范围:群组

容量: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}

  • 发布 /api/atlas/v2/groups/{groupId}/serviceAccounts

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

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

  • 发布 /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}

  • 发布 /api/atlas/v2/orgs/{orgId}/serviceAccounts

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

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

范围:群组

容量: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}

  • 发布 /api/atlas/v2/groups/{groupId}/streams

  • 发布 /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections

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

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

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

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

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

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

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

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

范围:群组

容量: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}

  • 发布 /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}

  • 发布 /api/atlas/v2/orgs/{orgId}/teams

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

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

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

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 删除 /api/atlas/v2/groups/{groupId}/integrations/{integrationType}

  • 获取 /api/atlas/v2/groups/{groupId}/integrations

  • 获取 /api/atlas/v2/groups/{groupId}/integrations/{integrationType}

  • 发布 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index

  • 发布 /api/atlas/v2/groups/{groupId}/integrations/{integrationType}

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

范围:群组

容量:1200

Refill: 500/60s

终结点:

  • 删除 /api/atlas/v2/groups/{groupId}/userSecurity/customerX509

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

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

注意

如果您联系支持以获取更高的速率限制,则您的限制可能与上表中描述的不同。

后退

轮换服务帐户密钥

在此页面上