Atlas は、レート制限を使用して、指定された時間枠内で V2 APIエンドポイントに送信されるリクエストのレートを制御し、過負荷を防ぎ、均等に使用します。 Atlas は トークン バケット アルゴリズム を使用して、処理されるリクエスト数を制限します。 APIレスポンス ヘッダーを使用すると、レート制限の割り当て、現在の使用量、リセット時間に対するリアルタイムの可視性が得られます。
Overview
各 Atlas エンドポイントは、レート制限を定義するエンドポイントセット(同じレート制限を共有するエンドポイントのコレクション)とスコープ(リソースは組織、プロジェクト、 ユーザー、またはIPアドレスのリソース スコープ) に関連付けられています。エンドポイントの制限は、同じエンドポイントセットとスコープ内のエンドポイントのみが同じ トークンバケットを使用してレート制限されるため異なります。したがって、Atlas では、 Atlas組織またはプロジェクトによって行われるすべてのAPIリクエストに対して、統一的なAPI制限が適用されることはありません。
トークン バケット アルゴリズム
トークン バケット アルゴリズムは、次のように機能します。
Atlas は、そのバケットの最大トークン数(
capacity)までバケットを埋めます。これは、送信できるリクエストの最大数を反映します。Atlas は、トークンが利用可能な場合にのみリクエストを許可します。エンドポイントへのリクエストごとに 1 つのトークンが消費されます。
Atlas は、固定レート(
refillRate)、特定の間隔(refillDurationSeconds)、最大トークン数(capacity)までトークンをバケットに追加します。バケットにトークンがある限り、リクエストのバーストを送信できます。バケット内のトークンの数が限られている場合、許可されるバーストはバケット内の利用可能なトークンの数に制限されます。
バケットが空の場合、Atlas Administration API は追加のリクエストに対して429 (TooMany requests) 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 Administration API応答には、次のヘッダーが含まれる場合があります。
| このエンドポイントに許可されるリクエストの最大数( トークンバケットキャパシティー)。 |
| 点でユーザーがこのエンドポイントに対して実行できるリクエストの残り数( トークンバケットに残っているトークン)。 |
| リクエストを再試行する前に待機する最小時間(秒単位)。このヘッダーは、レート制限を超えた場合にのみ返されます。 |
注意
Atlas では必ずしもレスポンス ヘッダーが返されない場合があります。欠落している応答ヘッダーは正常に処理され、その存在に依存すべきではありません。
再試行戦略
レート制限に達すると、Atlas Administration API は429 (リクエストが多すぎる) HTTPステータス コードを返します。お勧めします。
再試行する前に、少なくとも
Retry-Afterヘッダーで指定された時間だけ待機します。再試行が失敗した場合、大幅に長い時間待機します。
例
最初の再試行の前に、10 秒待ちます。 2 回目の再試行の前に、20 秒待ちます。 3 回目の再試行の前に、40 秒間待機するなどします。
Retry-Afterヘッダーで指定された時間と同じ時間待機しても、レート制限が発生する可能性があります。この場合は、指数遅延( jutter )を使用してバックオフを継続することをお勧めします。同時再試行操作によってリクエストが失敗するのを防ぐために、計算された待機時間にランダムな遅延( jutter )を追加することも推奨します。
例
複数のクライアントが同じ Atlasプロジェクトに同じエンドポイントを使用しているとします。クライアントは同時にレート制限され、Retry-After ヘッダーで指定された時間だけ待機します。クライアントの 1 つがリクエストを正常に送信し、他のクライアントがリクエストを再試行する前にトークンバケットを再度削除した場合でも、他のクライアントは引き続きレート制限されます。
また、次の を使用して、バケットが再びいっぱいになる可能キャパシティーがあるタイミングを計算できます(その時間中に他のリクエストがトークンを消費しないと仮定)。
(capacity / refill rate) * refill interval
より高いレート制限が必要な場合は、 サポートにお問い合わせください 。
レート制限の表示
rateLimitsリソースに GETリクエストを送信することで、すべてのエンドポイントセットとスコープのレート制限を表示できます。
curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-03-12+json" \ --header "Content-Type: application/json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/rateLimits"
組織、プロジェクト、ユーザー、またはIPアドレスに適用されるレート制限を表示するには、任意のクエリパラメータ(groupId、orgId、userId のいずれかを使用して、rateLimits エンドポイントに GETリクエストを送信します。またはipAddress。
curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-03-12+json" \ --header "Content-Type: application/json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/rateLimits?groupId={groupId}"
デフォルトのレート制限
重要
レート制限はAPI契約の一部ではなく、事前に通知せずに変更される可能性があります。
AWS クラスター DNS
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/awsCustomDNSPATCH
/api/atlas/v2/groups/{groupId}/awsCustomDNS
アクセス ログ
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}GET
/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}
アクティビティ フィード
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/activityFeed
スコープ: 組織
容量:500
満たす:250 /60 s
エンドポイント:
GET
/api/atlas/v2/orgs/{orgId}/activityFeed
Alert Configurations
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}GET
/api/atlas/v2/groups/{groupId}/alertConfigsGET
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}PATCH
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}POST
/api/atlas/v2/groups/{groupId}/alertConfigsPUT
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}
スコープ: USER
容量:300
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/alertConfigs/matchers/fieldNames
アラート
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alertsGET
/api/atlas/v2/groups/{groupId}/alertsGET
/api/atlas/v2/groups/{groupId}/alerts/{alertId}GET
/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigsPATCH
/api/atlas/v2/groups/{groupId}/alerts/{alertId}
Atlas Search の配置
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deploymentGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deploymentPATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deploymentPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment
Atlas Search インデックス
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexesPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes
監査
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/auditLogPATCH
/api/atlas/v2/groups/{groupId}/auditLog
クラウドバックアップ
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}DELETE
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints/{endpointId}DELETE
/api/atlas/v2/groups/{groupId}/backupCompliancePolicyDELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/scheduleDELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}GET
/api/atlas/v2/groups/{groupId}/backup/exportBucketsGET
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}GET
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpointsGET
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints/{endpointId}GET
/api/atlas/v2/groups/{groupId}/backupCompliancePolicyGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exportsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/scheduleGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshotsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClustersGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}PATCH
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedulePATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}POST
/api/atlas/v2/groups/{groupId}/backup/exportBucketsPOST
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpointsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exportsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshotsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobsPUT
/api/atlas/v2/groups/{groupId}/backupCompliancePolicy
クラウド移行サービス
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}GET
/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}POST
/api/atlas/v2/groups/{groupId}/liveMigrationsPOST
/api/atlas/v2/groups/{groupId}/liveMigrations/validatePUT
/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover
スコープ: 組織
容量:500
満たす:250 /60 s
エンドポイント:
DELETE
/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokensGET
/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjectsPOST
/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens
クラウドプロバイダー アクセス
スコープ: GROUP
容量:2000
満たす:1000 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}GET
/api/atlas/v2/groups/{groupId}/cloudProviderAccessGET
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}PATCH
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}POST
/api/atlas/v2/groups/{groupId}/cloudProviderAccess
クラスター ログ モニタリング
スコープ: GROUP
容量:10000
満たす:5000 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz
クラスター停止時シミュレーション
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulationGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulationPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation
クラスター
スコープ: GROUP
容量:10000
満たす:5000 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}GET
/api/atlas/v2/groups/{groupId}/clustersGET
/api/atlas/v2/groups/{groupId}/clusters/provider/regionsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/autoScalingConfigurationGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/statusGET
/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgsPOST
/api/atlas/v2/groups/{groupId}/clustersPOST
/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradePOST
/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerlessPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimariesPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:grantMongoDBEmployeeAccessPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersionPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:revokeMongoDBEmployeeAccessPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersionPOST
/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}
スコープ: USER
容量:300
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/clusters
コレクション レベルのメトリクス
スコープ: GROUP
容量:300
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinnedGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespacesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurementsGET
/api/atlas/v2/groups/{groupId}/collStats/metricsGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespacesGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurementsPATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinnedPATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpinPUT
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned
カスタムデータベースロール
スコープ: GROUP
容量:2000
満たす:1000 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}GET
/api/atlas/v2/groups/{groupId}/customDBRoles/rolesGET
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}PATCH
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}POST
/api/atlas/v2/groups/{groupId}/customDBRoles/roles
Data Federation
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}DELETE
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}DELETE
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}GET
/api/atlas/v2/groups/{groupId}/dataFederationGET
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}GET
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limitsGET
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}GET
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gzGET
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIdsGET
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}PATCH
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}PATCH
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}POST
/api/atlas/v2/groups/{groupId}/dataFederationPOST
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds
データベースユーザー
スコープ: GROUP
容量:10000
満たす:5000 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}GET
/api/atlas/v2/groups/{groupId}/databaseUsersGET
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}PATCH
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}POST
/api/atlas/v2/groups/{groupId}/databaseUsers
カスタマー キー管理を使用した保管時の暗号化
スコープ: GROUP
容量:2000
満たす:1000 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}GET
/api/atlas/v2/groups/{groupId}/encryptionAtRestGET
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpointsGET
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}PATCH
/api/atlas/v2/groups/{groupId}/encryptionAtRestPOST
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints
イベント
スコープ: GROUP
容量:300
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/eventsGET
/api/atlas/v2/groups/{groupId}/events/{eventId}
スコープ: 組織
容量:500
満たす:250 /60 s
エンドポイント:
GET
/api/atlas/v2/orgs/{orgId}/eventsGET
/api/atlas/v2/orgs/{orgId}/events/{eventId}
スコープ: USER
容量:300
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/eventTypes
フェデレーティッド認証
スコープ: 組織
容量:500
満たす:250 /60 s
エンドポイント:
DELETE
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}DELETE
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}GET
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}GET
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappingsGET
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}GET
/api/atlas/v2/orgs/{orgId}/federationSettingsPATCH
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}POST
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappingsPUT
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}
スコープ: USER
容量:300
満たす:100 /60 s
エンドポイント:
DELETE
/api/atlas/v2/federationSettings/{federationSettingsId}DELETE
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}DELETE
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwksGET
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigsGET
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProvidersGET
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}GET
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xmlPATCH
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}POST
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders
フレックス クラスター
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/flexClusters/{name}GET
/api/atlas/v2/groups/{groupId}/flexClustersGET
/api/atlas/v2/groups/{groupId}/flexClusters/{name}PATCH
/api/atlas/v2/groups/{groupId}/flexClusters/{name}POST
/api/atlas/v2/groups/{groupId}/flexClustersPOST
/api/atlas/v2/groups/{groupId}/flexClusters:tenantUpgrade
柔軟な復元ジョブ
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobsGET
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs/{restoreJobId}POST
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs
フレキシブルなスナップショット
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshotsGET
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshots/{snapshotId}POST
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/download
グローバルクラスター
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMappingDELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespacesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWritesPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMappingPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces
IP アドレス
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/ipAddresses
請求書
スコープ: 組織
容量:500
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}GET
/api/atlas/v2/orgs/{orgId}/invoicesGET
/api/atlas/v2/orgs/{orgId}/invoices/pendingGET
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}GET
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csvGET
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems:searchPOST
/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage
スコープ: USER
容量:300
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/skusGET
/api/atlas/v2/skus/{skuId}
LDAP 構成
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMappingGET
/api/atlas/v2/groups/{groupId}/userSecurityGET
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}PATCH
/api/atlas/v2/groups/{groupId}/userSecurityPOST
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify
レガシーバックアップ
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpointsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotScheduleGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedulePATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}
メンテナンスウィンドウ
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/maintenanceWindowGET
/api/atlas/v2/groups/{groupId}/maintenanceWindowPATCH
/api/atlas/v2/groups/{groupId}/maintenanceWindowPOST
/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDeferPOST
/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer
MongoDB Cloud ユーザー
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/users/{userId}GET
/api/atlas/v2/groups/{groupId}/usersGET
/api/atlas/v2/groups/{groupId}/users/{userId}POST
/api/atlas/v2/groups/{groupId}/usersPOST
/api/atlas/v2/groups/{groupId}/users/{userId}:addRolePOST
/api/atlas/v2/groups/{groupId}/users/{userId}:removeRolePUT
/api/atlas/v2/groups/{groupId}/users/{userId}/roles
スコープ: 組織
容量:500
満たす:250 /60 s
エンドポイント:
DELETE
/api/atlas/v2/orgs/{orgId}/users/{userId}GET
/api/atlas/v2/orgs/{orgId}/usersGET
/api/atlas/v2/orgs/{orgId}/users/{userId}PATCH
/api/atlas/v2/orgs/{orgId}/users/{userId}POST
/api/atlas/v2/orgs/{orgId}/usersPOST
/api/atlas/v2/orgs/{orgId}/users/{userId}:addRolePOST
/api/atlas/v2/orgs/{orgId}/users/{userId}:removeRolePUT
/api/atlas/v2/orgs/{orgId}/users/{userId}/roles
スコープ: USER
容量:2500
満たす:2000 /60 s
エンドポイント:
GET
/api/atlas/v2/users/byName/{userName}GET
/api/atlas/v2/users/{userId}POST
/api/atlas/v2/users
モニタリングとログ
スコープ: GROUP
容量:300
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metricsGET
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurementsGET
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurementsGET
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurementsGET
/api/atlas/v2/groups/{groupId}/processesGET
/api/atlas/v2/groups/{groupId}/processes/{processId}GET
/api/atlas/v2/groups/{groupId}/processes/{processId}/databasesGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}GET
/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurementsGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/disksGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}GET
/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurementsGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements
ネットワークピアリング
スコープ: GROUP
容量:2000
満たす:1000 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/containers/{containerId}DELETE
/api/atlas/v2/groups/{groupId}/peers/{peerId}GET
/api/atlas/v2/groups/{groupId}/containersGET
/api/atlas/v2/groups/{groupId}/containers/allGET
/api/atlas/v2/groups/{groupId}/containers/{containerId}GET
/api/atlas/v2/groups/{groupId}/peersGET
/api/atlas/v2/groups/{groupId}/peers/{peerId}GET
/api/atlas/v2/groups/{groupId}/privateIpModePATCH
/api/atlas/v2/groups/{groupId}/containers/{containerId}PATCH
/api/atlas/v2/groups/{groupId}/peers/{peerId}PATCH
/api/atlas/v2/groups/{groupId}/privateIpModePOST
/api/atlas/v2/groups/{groupId}/containersPOST
/api/atlas/v2/groups/{groupId}/peers
Online Archive
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchivesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gzGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives
組織の設定
スコープ: 組織
容量:10
満たす:5 /60 s
エンドポイント:
GET
/api/atlas/v2/orgs/{orgId}/settingsPATCH
/api/atlas/v2/orgs/{orgId}/settings
組織
スコープ: 組織
容量:500
満たす:250 /60 s
エンドポイント:
DELETE
/api/atlas/v2/orgs/{orgId}DELETE
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}GET
/api/atlas/v2/orgs/{orgId}GET
/api/atlas/v2/orgs/{orgId}/groupsGET
/api/atlas/v2/orgs/{orgId}/invitesGET
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}PATCH
/api/atlas/v2/orgs/{orgId}PATCH
/api/atlas/v2/orgs/{orgId}/invitesPATCH
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}POST
/api/atlas/v2/orgs/{orgId}/invites
スコープ: USER
容量:300
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/orgsPOST
/api/atlas/v2/orgs
Performance Advisor
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/managedSlowMs/disableGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/dropIndexSuggestionsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/schemaAdviceGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/suggestedIndexesGET
/api/atlas/v2/groups/{groupId}/managedSlowMsGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespacesGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogsGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexesPOST
/api/atlas/v2/groups/{groupId}/managedSlowMs/enable
プライベートエンドポイント サービス
スコープ: GROUP
容量:4000
満たす:2000 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}DELETE
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}GET
/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalModeGET
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointServiceGET
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}GET
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}PATCH
/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalModePOST
/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointServicePOST
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint
プログラム API キー
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}GET
/api/atlas/v2/groups/{groupId}/apiKeysPATCH
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}POST
/api/atlas/v2/groups/{groupId}/apiKeysPOST
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}
スコープ: 組織
容量:500
満たす:250 /60 s
エンドポイント:
DELETE
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}DELETE
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}GET
/api/atlas/v2/orgs/{orgId}/apiKeysGET
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}GET
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessListGET
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}PATCH
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}POST
/api/atlas/v2/orgs/{orgId}/apiKeysPOST
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList
プロジェクト IP アクセス リスト
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}GET
/api/atlas/v2/groups/{groupId}/accessListGET
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}GET
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/statusPOST
/api/atlas/v2/groups/{groupId}/accessList
プロジェクト
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}DELETE
/api/atlas/v2/groups/{groupId}/invites/{invitationId}DELETE
/api/atlas/v2/groups/{groupId}/limits/{limitName}GET
/api/atlas/v2/groups/{groupId}GET
/api/atlas/v2/groups/{groupId}/invitesGET
/api/atlas/v2/groups/{groupId}/invites/{invitationId}GET
/api/atlas/v2/groups/{groupId}/limitsGET
/api/atlas/v2/groups/{groupId}/limits/{limitName}GET
/api/atlas/v2/groups/{groupId}/mongoDBVersionsGET
/api/atlas/v2/groups/{groupId}/settingsPATCH
/api/atlas/v2/groups/{groupId}PATCH
/api/atlas/v2/groups/{groupId}/invitesPATCH
/api/atlas/v2/groups/{groupId}/invites/{invitationId}PATCH
/api/atlas/v2/groups/{groupId}/limits/{limitName}PATCH
/api/atlas/v2/groups/{groupId}/settingsPOST
/api/atlas/v2/groups/{groupId}/accessPOST
/api/atlas/v2/groups/{groupId}/invitesPOST
/api/atlas/v2/groups/{groupId}:migrate
スコープ: USER
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groupsGET
/api/atlas/v2/groups/byName/{groupName}POST
/api/atlas/v2/groups
プッシュベースのログエクスポート
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}DELETE
/api/atlas/v2/groups/{groupId}/pushBasedLogExportGET
/api/atlas/v2/groups/{groupId}/logIntegrationsGET
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}GET
/api/atlas/v2/groups/{groupId}/pushBasedLogExportPATCH
/api/atlas/v2/groups/{groupId}/pushBasedLogExportPOST
/api/atlas/v2/groups/{groupId}/logIntegrationsPOST
/api/atlas/v2/groups/{groupId}/pushBasedLogExportPUT
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}
クエリシェイプのインサイト
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapeInsights/summariesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapeInsights/{queryShapeHash}/detailsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes/{queryShapeHash}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes/{queryShapeHash}
レート制限検査
スコープ: USER
容量:300
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/rateLimitsGET
/api/atlas/v2/rateLimits/{endpointSetId}
リソース ポリシー
スコープ: 組織
容量:500
満たす:250 /60 s
エンドポイント:
DELETE
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}GET
/api/atlas/v2/orgs/{orgId}/nonCompliantResourcesGET
/api/atlas/v2/orgs/{orgId}/resourcePoliciesGET
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}PATCH
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}POST
/api/atlas/v2/orgs/{orgId}/resourcePoliciesPOST
/api/atlas/v2/orgs/{orgId}/resourcePolicies:validate
ルート
スコープ: IP
容量:400
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2/unauth/controlPlaneIPAddresses
スコープ: USER
容量:300
満たす:100 /60 s
エンドポイント:
GET
/api/atlas/v2
サービス アカウント
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}DELETE
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList/{ipAddress}DELETE
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secrets/{secretId}GET
/api/atlas/v2/groups/{groupId}/serviceAccountsGET
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}GET
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessListPATCH
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}POST
/api/atlas/v2/groups/{groupId}/serviceAccountsPOST
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessListPOST
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secretsPOST
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}:invite
スコープ: 組織
容量:500
満たす:250 /60 s
エンドポイント:
DELETE
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}DELETE
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList/{ipAddress}DELETE
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets/{secretId}GET
/api/atlas/v2/orgs/{orgId}/serviceAccountsGET
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}GET
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessListGET
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/groupsPATCH
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}POST
/api/atlas/v2/orgs/{orgId}/serviceAccountsPOST
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessListPOST
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets
共有階層復元ジョブ
スコープ: GROUP
容量:4000
満たす:2000 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restoresGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore
共有階層スナップショット
スコープ: GROUP
容量:4000
満たす:2000 /60 s
エンドポイント:
GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshotsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download
ストリーム
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId}DELETE
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}DELETE
/api/atlas/v2/groups/{groupId}/streams/{tenantName}DELETE
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}DELETE
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}GET
/api/atlas/v2/groups/{groupId}/streamsGET
/api/atlas/v2/groups/{groupId}/streams/accountDetailsGET
/api/atlas/v2/groups/{groupId}/streams/activeVpcPeeringConnectionsGET
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnectionsGET
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId}GET
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnectionsGET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}GET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogsGET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connectionsGET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}GET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}GET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processorsGET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}:downloadOperationalLogsPATCH
/api/atlas/v2/groups/{groupId}/streams/{tenantName}PATCH
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}PATCH
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}POST
/api/atlas/v2/groups/{groupId}/streamsPOST
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnectionsPOST
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:acceptPOST
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:rejectPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connectionsPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processorPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startWithPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stopPOST
/api/atlas/v2/groups/{groupId}/streams:withSampleConnections
チーム
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/teams/{teamId}GET
/api/atlas/v2/groups/{groupId}/teamsGET
/api/atlas/v2/groups/{groupId}/teams/{teamId}PATCH
/api/atlas/v2/groups/{groupId}/teams/{teamId}POST
/api/atlas/v2/groups/{groupId}/teams
スコープ: 組織
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/orgs/{orgId}/teams/{teamId}DELETE
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}GET
/api/atlas/v2/orgs/{orgId}/teamsGET
/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}GET
/api/atlas/v2/orgs/{orgId}/teams/{teamId}GET
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/usersPATCH
/api/atlas/v2/orgs/{orgId}/teams/{teamId}POST
/api/atlas/v2/orgs/{orgId}/teamsPOST
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/usersPOST
/api/atlas/v2/orgs/{orgId}/teams/{teamId}:addUserPOST
/api/atlas/v2/orgs/{orgId}/teams/{teamId}:removeUser
サードパーティ統合
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}GET
/api/atlas/v2/groups/{groupId}/integrationsGET
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/indexPOST
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}PUT
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}
X509 認証
スコープ: GROUP
容量:1200
満たす:500 /60 s
エンドポイント:
DELETE
/api/atlas/v2/groups/{groupId}/userSecurity/customerX509GET
/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certsPOST
/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs
注意
より高いレート制限のサポートに問い合わせた場合、前の表に記載されている値とは異なる制限が設定される可能性があります。