Docs 菜单
Docs 主页
/ /

Atlas Administration API速率限制

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会在特定时间间隔 (refillDurationSeconds) 以固定速率 (refillRate) 向存储桶添加令牌,但不超过最大令牌数量 (capacity)。

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

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 Administration API响应可能包含以下标头:

RateLimit-Limit

此端点允许的最大请求数(令牌桶容量)。

RateLimit-Remaining

用户点可以向此端点发出的剩余请求数(令牌桶中剩余的令牌)。

Retry-After

重试请求之前等待的最短时间(以秒为单位)。仅当超过速率限制时才会返回此标头。

注意

Atlas可能并不总是返回响应标头。您必须妥善处理缺失的响应标头,而不是依赖它们的存在。

When you reach the rate limit, the Atlas Administration API returns a 429 (Too Many Requests) HTTP status code. We recommend:

  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解决的速率限制,请使用可选查询参数之一向GET rateLimits端点请求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 Administration API规范。

重要

Rate limits are not part of the API contract and might change without prior notice.

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

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

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

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

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

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

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

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

范围:组织

容量:500

重新填充:250 /60 秒

端点:

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

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:100 /60 秒

端点:

  • 获取 /api/atlas/v2/alertConfigs/matchers/fieldNames

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 获取 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

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

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

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 获取 /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

重新填充:250 /60 秒

端点:

  • 删除 /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens

  • 获取 /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects

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

范围:群组

容量:2000

重新填充:1000 /60 秒

端点:

  • 删除 /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

重新填充:5000 /60 秒

端点:

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

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:5000 /60 秒

端点:

  • 删除 /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

重新填充:100 /60 秒

端点:

  • 获取 /api/atlas/v2/clusters

范围:群组

容量:300

重新填充:100 /60 秒

端点:

  • 获取 /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

重新填充:1000 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:5000 /60 秒

端点:

  • 删除 /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

重新填充:1000 /60 秒

端点:

  • 删除 /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

重新填充:100 /60 秒

端点:

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

  • 获取 /api/atlas/v2/groups/{groupId}/events/{eventId}

范围:组织

容量:500

重新填充:250 /60 秒

端点:

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

  • 获取 /api/atlas/v2/orgs/{orgId}/events/{eventId}

范围:USER

容量:300

重新填充:100 /60 秒

端点:

  • 获取 /api/atlas/v2/eventTypes

范围:组织

容量:500

重新填充:250 /60 秒

端点:

  • 删除 /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

重新填充:100 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 获取 /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

重新填充:500 /60 秒

端点:

  • 获取 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

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

范围:组织

容量:500

重新填充:100 /60 秒

端点:

  • 获取 /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

重新填充:100 /60 秒

端点:

  • 获取 /api/atlas/v2/skus

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

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:250 /60 秒

端点:

  • 删除 /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

重新填充:2000 /60 秒

端点:

  • 获取 /api/atlas/v2/users/byName/{userName}

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

  • 发布 /api/atlas/v2/users

范围:群组

容量:300

重新填充:100 /60 秒

端点:

  • 获取 /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

重新填充:1000 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:5 /60 秒

端点:

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

  • 修补 /api/atlas/v2/orgs/{orgId}/settings

范围:组织

容量:500

重新填充:250 /60 秒

端点:

  • 删除 /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

重新填充:100 /60 秒

端点:

  • 获取 /api/atlas/v2/orgs

  • 发布 /api/atlas/v2/orgs

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:2000 /60 秒

端点:

  • 删除 /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/regionalMode

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

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

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:250 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 获取 /api/atlas/v2/groups

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

  • 发布 /api/atlas/v2/groups

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 获取 /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 /60 秒

端点:

  • 获取 /api/atlas/v2/rateLimits

  • 获取 /api/atlas/v2/rateLimits/{endpointSetId}

范围:组织

容量:500

重新填充:250 /60 秒

端点:

  • 删除 /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

重新填充:100 /60 秒

端点:

  • 获取 /api/atlas/v2/unauth/controlPlaneIPAddresses

范围:USER

容量:300

重新填充:100 /60 秒

端点:

  • 获取 /api/atlas/v2

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:250 /60 秒

端点:

  • 删除 /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

范围:群组

容量:4000

重新填充:2000 /60 秒

端点:

  • 获取 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores

  • 获取 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}

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

范围:群组

容量:4000

重新填充:2000 /60 秒

端点:

  • 获取 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots

  • 获取 /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}

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

范围:群组

容量:1200

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

  • 删除 /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

重新填充:500 /60 秒

端点:

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

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

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

注意

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

后退

轮换服务帐户密钥

在此页面上