-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathTestAccMockableAdvancedCluster_tenantUpgrade.yaml
More file actions
271 lines (266 loc) · 64 KB
/
TestAccMockableAdvancedCluster_tenantUpgrade.yaml
File metadata and controls
271 lines (266 loc) · 64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
variables:
clusterName: test-acc-tf-c-4545944392606000118
groupId: 68dbdb9b7fa26276b31c9014
steps:
- config: |-
resource "mongodbatlas_advanced_cluster" "test" {
project_id = "68dbdb9b7fa26276b31c9014"
name = "test-acc-tf-c-4545944392606000118"
cluster_type = "REPLICASET"
replication_specs = [{
region_configs = [{
backing_provider_name = "AWS"
electable_specs = {
instance_size = "M0"
}
priority = 7
provider_name = "TENANT"
region_name = "US_EAST_1"
}]
zone_name = "Zone 1"
}]
}
data "mongodbatlas_advanced_cluster" "test" {
project_id = mongodbatlas_advanced_cluster.test.project_id
name = mongodbatlas_advanced_cluster.test.name
depends_on = [mongodbatlas_advanced_cluster.test]
}
data "mongodbatlas_advanced_clusters" "test" {
project_id = mongodbatlas_advanced_cluster.test.project_id
depends_on = [mongodbatlas_advanced_cluster.test]
}
diff_requests:
- path: /api/atlas/v2/groups/{groupId}/clusters
method: POST
version: '2024-10-23'
text: "{\n \"clusterType\": \"REPLICASET\",\n \"labels\": [],\n \"name\": \"{clusterName}\",\n \"replicationSpecs\": [\n {\n \"regionConfigs\": [\n {\n \"backingProviderName\": \"AWS\",\n \"electableSpecs\": {\n \"instanceSize\": \"M0\"\n },\n \"priority\": 7,\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"tags\": []\n}"
responses:
- response_index: 1
status: 201
text: "{\n \"backupEnabled\": false,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:19Z\",\n \"diskWarmingMode\": \"FULLY_WARMED\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdba77fa26276b31c91d4\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.14\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdba77fa26276b31c91cf\",\n \"regionConfigs\": [\n {\n \"backingProviderName\": \"AWS\",\n \"electableSpecs\": {\n \"diskSizeGB\": 0.5,\n \"effectiveInstanceSize\": \"M0\",\n \"instanceSize\": \"M0\"\n },\n \"priority\": 7,\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdba77fa26276b31c91cd\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"CREATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
request_responses:
- path: /api/atlas/v2/groups/{groupId}/clusters
method: POST
version: '2024-10-23'
text: "{\n \"clusterType\": \"REPLICASET\",\n \"labels\": [],\n \"name\": \"{clusterName}\",\n \"replicationSpecs\": [\n {\n \"regionConfigs\": [\n {\n \"backingProviderName\": \"AWS\",\n \"electableSpecs\": {\n \"instanceSize\": \"M0\"\n },\n \"priority\": 7,\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"tags\": []\n}"
responses:
- response_index: 1
status: 201
text: "{\n \"backupEnabled\": false,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:19Z\",\n \"diskWarmingMode\": \"FULLY_WARMED\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdba77fa26276b31c91d4\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.14\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdba77fa26276b31c91cf\",\n \"regionConfigs\": [\n {\n \"backingProviderName\": \"AWS\",\n \"electableSpecs\": {\n \"diskSizeGB\": 0.5,\n \"effectiveInstanceSize\": \"M0\",\n \"instanceSize\": \"M0\"\n },\n \"priority\": 7,\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdba77fa26276b31c91cd\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"CREATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- path: /api/atlas/v2/groups/{groupId}/clusters/{clusterName}
method: GET
version: '2024-08-05'
text: ""
responses:
- response_index: 2
status: 200
duplicate_responses: 5
text: "{\n \"backupEnabled\": false,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:19Z\",\n \"diskWarmingMode\": \"FULLY_WARMED\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdba77fa26276b31c91d4\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.12\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdba77fa26276b31c91cf\",\n \"regionConfigs\": [\n {\n \"backingProviderName\": \"AWS\",\n \"electableSpecs\": {\n \"diskSizeGB\": 0.5,\n \"effectiveInstanceSize\": \"M0\",\n \"instanceSize\": \"M0\"\n },\n \"priority\": 7,\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdba77fa26276b31c91cd\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"IDLE\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- path: /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs
method: GET
version: '2024-08-05'
text: ""
responses:
- response_index: 3
status: 200
duplicate_responses: 7
text: "{\n \"changeStreamOptionsPreAndPostImagesExpireAfterSeconds\": null,\n \"chunkMigrationConcurrency\": null,\n \"customOpensslCipherConfigTls12\": [],\n \"defaultMaxTimeMS\": null,\n \"defaultWriteConcern\": null,\n \"javascriptEnabled\": true,\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"noTableScan\": false,\n \"oplogMinRetentionHours\": null,\n \"oplogSizeMB\": null,\n \"queryStatsLogVerbosity\": 1,\n \"sampleRefreshIntervalBIConnector\": null,\n \"sampleSizeBIConnector\": null,\n \"tlsCipherConfigMode\": \"DEFAULT\",\n \"transactionLifetimeLimitSeconds\": null\n}"
- path: /api/atlas/v2/groups/{groupId}/clusters
method: GET
version: '2024-08-05'
text: ""
responses:
- response_index: 5
status: 200
duplicate_responses: 2
text: "{\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?includeCount=true\\u0026includeDeletedWithRetainedBackups=false\\u0026pageNum=1\\u0026itemsPerPage=100\",\n \"rel\": \"self\"\n }\n ],\n \"results\": [\n {\n \"backupEnabled\": false,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:19Z\",\n \"diskWarmingMode\": \"FULLY_WARMED\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdba77fa26276b31c91d4\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.12\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdba77fa26276b31c91cf\",\n \"regionConfigs\": [\n {\n \"backingProviderName\": \"AWS\",\n \"electableSpecs\": {\n \"diskSizeGB\": 0.5,\n \"effectiveInstanceSize\": \"M0\",\n \"instanceSize\": \"M0\"\n },\n \"priority\": 7,\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdba77fa26276b31c91cd\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"IDLE\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n }\n ],\n \"totalCount\": 1\n}"
- path: /api/atlas/v2/groups/{groupId}/flexClusters
method: GET
version: '2024-11-13'
text: ""
responses:
- response_index: 8
status: 200
duplicate_responses: 2
text: "{\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/flexClusters?includeCount=true\\u0026pageNum=1\\u0026itemsPerPage=100\",\n \"rel\": \"self\"\n }\n ],\n \"results\": [],\n \"totalCount\": 0\n}"
- config: |-
resource "mongodbatlas_advanced_cluster" "test" {
project_id = "68dbdb9b7fa26276b31c9014"
name = "test-acc-tf-c-4545944392606000118"
cluster_type = "REPLICASET"
backup_enabled = true
replication_specs = [{
region_configs = [{
priority = 7
provider_name = "AWS"
region_name = "US_EAST_1"
electable_specs = {
instance_size = "M40_NVME"
ebs_volume_type = "PROVISIONED"
node_count = 3
}
}]
zone_name = "Zone 1"
}]
}
data "mongodbatlas_advanced_cluster" "test" {
project_id = mongodbatlas_advanced_cluster.test.project_id
name = mongodbatlas_advanced_cluster.test.name
depends_on = [mongodbatlas_advanced_cluster.test]
}
data "mongodbatlas_advanced_clusters" "test" {
project_id = mongodbatlas_advanced_cluster.test.project_id
depends_on = [mongodbatlas_advanced_cluster.test]
}
diff_requests:
- path: /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade
method: POST
version: '2023-01-01'
text: "{\n \"name\": \"{clusterName}\",\n \"providerBackupEnabled\": true,\n \"providerSettings\": {\n \"instanceSizeName\": \"M40_NVME\",\n \"providerName\": \"AWS\",\n \"regionName\": \"US_EAST_1\"\n }\n}"
responses:
- response_index: 24
status: 200
text: "{\n \"autoScaling\": {\n \"compute\": {\n \"enabled\": false,\n \"predictiveEnabled\": false,\n \"scaleDownEnabled\": false\n },\n \"diskGBEnabled\": false\n },\n \"backupEnabled\": false,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:19Z\",\n \"diskSizeGB\": 0.5,\n \"diskWarmingMode\": \"FULLY_WARMED\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdba77fa26276b31c91d4\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.12\",\n \"mongoURI\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017\",\n \"mongoURIUpdated\": \"2025-09-30T13:31:24Z\",\n \"mongoURIWithOptions\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"name\": \"{clusterName}\",\n \"numShards\": 1,\n \"paused\": false,\n \"pitEnabled\": false,\n \"providerBackupEnabled\": false,\n \"providerSettings\": {\n \"autoScaling\": {\n \"compute\": {\n \"maxInstanceSize\": null,\n \"minInstanceSize\": null\n }\n },\n \"backingProviderName\": \"AWS\",\n \"effectiveInstanceSizeName\": \"M0\",\n \"instanceSizeName\": \"M0\",\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n },\n \"replicationFactor\": 3,\n \"replicationSpec\": {\n \"US_EAST_1\": {\n \"analyticsNodes\": 0,\n \"electableNodes\": 3,\n \"priority\": 7,\n \"readOnlyNodes\": 0\n }\n },\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdba77fa26276b31c91ce\",\n \"numShards\": 1,\n \"regionsConfig\": {\n \"US_EAST_1\": {\n \"analyticsNodes\": 0,\n \"electableNodes\": 3,\n \"priority\": 7,\n \"readOnlyNodes\": 0\n }\n },\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"srvAddress\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\",\n \"stateName\": \"UPDATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
request_responses:
- path: /api/atlas/v2/groups/{groupId}/clusters/{clusterName}
method: GET
version: '2024-08-05'
text: ""
responses:
- response_index: 22
status: 200
text: "{\n \"backupEnabled\": false,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:19Z\",\n \"diskWarmingMode\": \"FULLY_WARMED\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdba77fa26276b31c91d4\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.12\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdba77fa26276b31c91cf\",\n \"regionConfigs\": [\n {\n \"backingProviderName\": \"AWS\",\n \"electableSpecs\": {\n \"diskSizeGB\": 0.5,\n \"effectiveInstanceSize\": \"M0\",\n \"instanceSize\": \"M0\"\n },\n \"priority\": 7,\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdba77fa26276b31c91cd\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"IDLE\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- response_index: 25
status: 200
text: "{\n \"backupEnabled\": false,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:19Z\",\n \"diskWarmingMode\": \"FULLY_WARMED\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdba77fa26276b31c91d4\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.12\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdba77fa26276b31c91cf\",\n \"regionConfigs\": [\n {\n \"backingProviderName\": \"AWS\",\n \"electableSpecs\": {\n \"diskSizeGB\": 0.5,\n \"effectiveInstanceSize\": \"M0\",\n \"instanceSize\": \"M0\"\n },\n \"priority\": 7,\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdba77fa26276b31c91cd\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"UPDATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- response_index: 26
status: 200
text: "{\n \"backupEnabled\": false,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:19Z\",\n \"diskWarmingMode\": \"FULLY_WARMED\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdba77fa26276b31c91d4\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.12\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdba77fa26276b31c91cf\",\n \"regionConfigs\": [\n {\n \"backingProviderName\": \"AWS\",\n \"electableSpecs\": {\n \"diskSizeGB\": 0.5,\n \"effectiveInstanceSize\": \"M0\",\n \"instanceSize\": \"M0\"\n },\n \"priority\": 7,\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdba77fa26276b31c91cd\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"UPDATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- response_index: 27
status: 200
duplicate_responses: 21
text: "{\n \"advancedConfiguration\": {\n \"customOpensslCipherConfigTls12\": [],\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"tlsCipherConfigMode\": \"DEFAULT\"\n },\n \"backupEnabled\": true,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {},\n \"createDate\": \"2025-09-30T13:31:57Z\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdbcd7fa26276b31c98cb\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.14\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdbcd7fa26276b31c98ca\",\n \"regionConfigs\": [\n {\n \"analyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"autoScaling\": {\n \"compute\": {\n \"enabled\": false,\n \"predictiveEnabled\": false,\n \"scaleDownEnabled\": false\n },\n \"diskGB\": {\n \"enabled\": true\n }\n },\n \"effectiveAnalyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"effectiveElectableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"effectiveReadOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"electableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"priority\": 7,\n \"providerName\": \"AWS\",\n \"readOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdbcd7fa26276b31c98c9\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"UPDATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- response_index: 49
status: 200
duplicate_responses: 5
text: "{\n \"advancedConfiguration\": {\n \"customOpensslCipherConfigTls12\": [],\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"tlsCipherConfigMode\": \"DEFAULT\"\n },\n \"backupEnabled\": true,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:57Z\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdbcd7fa26276b31c98cb\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.14\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdbcd7fa26276b31c98ca\",\n \"regionConfigs\": [\n {\n \"analyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"autoScaling\": {\n \"compute\": {\n \"enabled\": false,\n \"predictiveEnabled\": false,\n \"scaleDownEnabled\": false\n },\n \"diskGB\": {\n \"enabled\": true\n }\n },\n \"effectiveAnalyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"effectiveElectableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"effectiveReadOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"electableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"priority\": 7,\n \"providerName\": \"AWS\",\n \"readOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdbcd7fa26276b31c98c9\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"IDLE\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- response_index: 71
status: 200
text: "{\n \"advancedConfiguration\": {\n \"customOpensslCipherConfigTls12\": [],\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"tlsCipherConfigMode\": \"DEFAULT\"\n },\n \"backupEnabled\": true,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:57Z\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdbcd7fa26276b31c98cb\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.14\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdbcd7fa26276b31c98ca\",\n \"regionConfigs\": [\n {\n \"analyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"autoScaling\": {\n \"compute\": {\n \"enabled\": false,\n \"predictiveEnabled\": false,\n \"scaleDownEnabled\": false\n },\n \"diskGB\": {\n \"enabled\": true\n }\n },\n \"effectiveAnalyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"effectiveElectableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"effectiveReadOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"electableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"priority\": 7,\n \"providerName\": \"AWS\",\n \"readOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdbcd7fa26276b31c98c9\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"UPDATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- path: /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs
method: GET
version: '2024-08-05'
text: ""
responses:
- response_index: 23
status: 200
duplicate_responses: 8
text: "{\n \"changeStreamOptionsPreAndPostImagesExpireAfterSeconds\": null,\n \"chunkMigrationConcurrency\": null,\n \"customOpensslCipherConfigTls12\": [],\n \"defaultMaxTimeMS\": null,\n \"defaultWriteConcern\": null,\n \"javascriptEnabled\": true,\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"noTableScan\": false,\n \"oplogMinRetentionHours\": null,\n \"oplogSizeMB\": null,\n \"queryStatsLogVerbosity\": 1,\n \"sampleRefreshIntervalBIConnector\": null,\n \"sampleSizeBIConnector\": null,\n \"tlsCipherConfigMode\": \"DEFAULT\",\n \"transactionLifetimeLimitSeconds\": null\n}"
- path: /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade
method: POST
version: '2023-01-01'
text: "{\n \"name\": \"{clusterName}\",\n \"providerBackupEnabled\": true,\n \"providerSettings\": {\n \"instanceSizeName\": \"M40_NVME\",\n \"providerName\": \"AWS\",\n \"regionName\": \"US_EAST_1\"\n }\n}"
responses:
- response_index: 24
status: 200
text: "{\n \"autoScaling\": {\n \"compute\": {\n \"enabled\": false,\n \"predictiveEnabled\": false,\n \"scaleDownEnabled\": false\n },\n \"diskGBEnabled\": false\n },\n \"backupEnabled\": false,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:19Z\",\n \"diskSizeGB\": 0.5,\n \"diskWarmingMode\": \"FULLY_WARMED\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdba77fa26276b31c91d4\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.12\",\n \"mongoURI\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017\",\n \"mongoURIUpdated\": \"2025-09-30T13:31:24Z\",\n \"mongoURIWithOptions\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"name\": \"{clusterName}\",\n \"numShards\": 1,\n \"paused\": false,\n \"pitEnabled\": false,\n \"providerBackupEnabled\": false,\n \"providerSettings\": {\n \"autoScaling\": {\n \"compute\": {\n \"maxInstanceSize\": null,\n \"minInstanceSize\": null\n }\n },\n \"backingProviderName\": \"AWS\",\n \"effectiveInstanceSizeName\": \"M0\",\n \"instanceSizeName\": \"M0\",\n \"providerName\": \"TENANT\",\n \"regionName\": \"US_EAST_1\"\n },\n \"replicationFactor\": 3,\n \"replicationSpec\": {\n \"US_EAST_1\": {\n \"analyticsNodes\": 0,\n \"electableNodes\": 3,\n \"priority\": 7,\n \"readOnlyNodes\": 0\n }\n },\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdba77fa26276b31c91ce\",\n \"numShards\": 1,\n \"regionsConfig\": {\n \"US_EAST_1\": {\n \"analyticsNodes\": 0,\n \"electableNodes\": 3,\n \"priority\": 7,\n \"readOnlyNodes\": 0\n }\n },\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"srvAddress\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\",\n \"stateName\": \"UPDATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- path: /api/atlas/v2/groups/{groupId}/containers?providerName=AWS
method: GET
version: '2023-01-01'
text: ""
responses:
- response_index: 50
status: 200
duplicate_responses: 7
text: "{\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/containers?includeCount=true\\u0026providerName=AWS\\u0026pageNum=1\\u0026itemsPerPage=100\",\n \"rel\": \"self\"\n }\n ],\n \"results\": [\n {\n \"atlasCidrBlock\": \"192.168.248.0/21\",\n \"id\": \"68dbdbcd7fa26276b31c98d0\",\n \"providerName\": \"AWS\",\n \"provisioned\": true,\n \"regionName\": \"US_EAST_1\",\n \"vpcId\": \"vpc-0bf77991f016d2e6e\"\n }\n ],\n \"totalCount\": 1\n}"
- path: /api/atlas/v2/groups/{groupId}/clusters
method: GET
version: '2024-08-05'
text: ""
responses:
- response_index: 52
status: 200
duplicate_responses: 1
text: "{\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?includeCount=true\\u0026includeDeletedWithRetainedBackups=false\\u0026pageNum=1\\u0026itemsPerPage=100\",\n \"rel\": \"self\"\n }\n ],\n \"results\": [\n {\n \"advancedConfiguration\": {\n \"customOpensslCipherConfigTls12\": [],\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"tlsCipherConfigMode\": \"DEFAULT\"\n },\n \"backupEnabled\": true,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:57Z\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdbcd7fa26276b31c98cb\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.14\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdbcd7fa26276b31c98ca\",\n \"regionConfigs\": [\n {\n \"analyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"autoScaling\": {\n \"compute\": {\n \"enabled\": false,\n \"predictiveEnabled\": false,\n \"scaleDownEnabled\": false\n },\n \"diskGB\": {\n \"enabled\": true\n }\n },\n \"effectiveAnalyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"effectiveElectableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"effectiveReadOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"electableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"priority\": 7,\n \"providerName\": \"AWS\",\n \"readOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdbcd7fa26276b31c98c9\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"IDLE\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n }\n ],\n \"totalCount\": 1\n}"
- response_index: 72
status: 200
text: "{\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?includeCount=true\\u0026includeDeletedWithRetainedBackups=false\\u0026pageNum=1\\u0026itemsPerPage=100\",\n \"rel\": \"self\"\n }\n ],\n \"results\": [\n {\n \"advancedConfiguration\": {\n \"customOpensslCipherConfigTls12\": [],\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"tlsCipherConfigMode\": \"DEFAULT\"\n },\n \"backupEnabled\": true,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:57Z\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdbcd7fa26276b31c98cb\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.14\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdbcd7fa26276b31c98ca\",\n \"regionConfigs\": [\n {\n \"analyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"autoScaling\": {\n \"compute\": {\n \"enabled\": false,\n \"predictiveEnabled\": false,\n \"scaleDownEnabled\": false\n },\n \"diskGB\": {\n \"enabled\": true\n }\n },\n \"effectiveAnalyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"effectiveElectableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"effectiveReadOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"electableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"priority\": 7,\n \"providerName\": \"AWS\",\n \"readOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdbcd7fa26276b31c98c9\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"UPDATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n }\n ],\n \"totalCount\": 1\n}"
- path: /api/atlas/v2/groups/{groupId}/flexClusters
method: GET
version: '2024-11-13'
text: ""
responses:
- response_index: 58
status: 200
duplicate_responses: 2
text: "{\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/flexClusters?includeCount=true\\u0026pageNum=1\\u0026itemsPerPage=100\",\n \"rel\": \"self\"\n }\n ],\n \"results\": [],\n \"totalCount\": 0\n}"
- config: ""
diff_requests:
- path: /api/atlas/v2/groups/{groupId}/clusters/{clusterName}
method: DELETE
version: '2023-02-01'
text: ""
responses:
- response_index: 88
status: 202
text: "{}"
request_responses:
- path: /api/atlas/v2/groups/{groupId}/clusters/{clusterName}
method: GET
version: '2024-08-05'
text: ""
responses:
- response_index: 78
status: 200
duplicate_responses: 1
text: "{\n \"advancedConfiguration\": {\n \"customOpensslCipherConfigTls12\": [],\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"tlsCipherConfigMode\": \"DEFAULT\"\n },\n \"backupEnabled\": true,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:57Z\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdbcd7fa26276b31c98cb\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.14\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdbcd7fa26276b31c98ca\",\n \"regionConfigs\": [\n {\n \"analyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"autoScaling\": {\n \"compute\": {\n \"enabled\": false,\n \"predictiveEnabled\": false,\n \"scaleDownEnabled\": false\n },\n \"diskGB\": {\n \"enabled\": true\n }\n },\n \"effectiveAnalyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"effectiveElectableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"effectiveReadOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"electableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"priority\": 7,\n \"providerName\": \"AWS\",\n \"readOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdbcd7fa26276b31c98c9\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"UPDATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- response_index: 89
status: 200
duplicate_responses: 6
text: "{\n \"advancedConfiguration\": {\n \"customOpensslCipherConfigTls12\": [],\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"tlsCipherConfigMode\": \"DEFAULT\"\n },\n \"backupEnabled\": false,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:57Z\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdbcd7fa26276b31c98cb\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.14\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdbcd7fa26276b31c98ca\",\n \"regionConfigs\": [\n {\n \"analyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"autoScaling\": {\n \"compute\": {\n \"enabled\": false,\n \"predictiveEnabled\": false,\n \"scaleDownEnabled\": false\n },\n \"diskGB\": {\n \"enabled\": true\n }\n },\n \"effectiveAnalyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"effectiveElectableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"effectiveReadOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"electableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"priority\": 7,\n \"providerName\": \"AWS\",\n \"readOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdbcd7fa26276b31c98c9\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"DELETING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n}"
- response_index: 96
status: 404
duplicate_responses: 2
text: "{\n \"detail\": \"No cluster named {clusterName} exists in group {groupId}.\",\n \"error\": 404,\n \"errorCode\": \"CLUSTER_NOT_FOUND\",\n \"parameters\": [\n \"{clusterName}\",\n \"{groupId}\"\n ],\n \"reason\": \"Not Found\"\n}"
- path: /api/atlas/v2/groups/{groupId}/containers?providerName=AWS
method: GET
version: '2023-01-01'
text: ""
responses:
- response_index: 79
status: 200
duplicate_responses: 2
text: "{\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/containers?includeCount=true\\u0026providerName=AWS\\u0026pageNum=1\\u0026itemsPerPage=100\",\n \"rel\": \"self\"\n }\n ],\n \"results\": [\n {\n \"atlasCidrBlock\": \"192.168.248.0/21\",\n \"id\": \"68dbdbcd7fa26276b31c98d0\",\n \"providerName\": \"AWS\",\n \"provisioned\": true,\n \"regionName\": \"US_EAST_1\",\n \"vpcId\": \"vpc-0bf77991f016d2e6e\"\n }\n ],\n \"totalCount\": 1\n}"
- path: /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs
method: GET
version: '2024-08-05'
text: ""
responses:
- response_index: 80
status: 200
duplicate_responses: 2
text: "{\n \"changeStreamOptionsPreAndPostImagesExpireAfterSeconds\": null,\n \"chunkMigrationConcurrency\": null,\n \"customOpensslCipherConfigTls12\": [],\n \"defaultMaxTimeMS\": null,\n \"defaultWriteConcern\": null,\n \"javascriptEnabled\": true,\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"noTableScan\": false,\n \"oplogMinRetentionHours\": null,\n \"oplogSizeMB\": null,\n \"queryStatsLogVerbosity\": 1,\n \"sampleRefreshIntervalBIConnector\": null,\n \"sampleSizeBIConnector\": null,\n \"tlsCipherConfigMode\": \"DEFAULT\",\n \"transactionLifetimeLimitSeconds\": null\n}"
- path: /api/atlas/v2/groups/{groupId}/clusters
method: GET
version: '2024-08-05'
text: ""
responses:
- response_index: 82
status: 200
text: "{\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?includeCount=true\\u0026includeDeletedWithRetainedBackups=false\\u0026pageNum=1\\u0026itemsPerPage=100\",\n \"rel\": \"self\"\n }\n ],\n \"results\": [\n {\n \"advancedConfiguration\": {\n \"customOpensslCipherConfigTls12\": [],\n \"minimumEnabledTlsProtocol\": \"TLS1_2\",\n \"tlsCipherConfigMode\": \"DEFAULT\"\n },\n \"backupEnabled\": true,\n \"biConnector\": {\n \"enabled\": false,\n \"readPreference\": \"secondary\"\n },\n \"clusterType\": \"REPLICASET\",\n \"connectionStrings\": {\n \"standard\": \"mongodb://ac-6ss40ch-shard-00-00.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-01.avbf80m.mongodb-dev.net:27017,ac-6ss40ch-shard-00-02.avbf80m.mongodb-dev.net:27017/?ssl=true\\u0026authSource=admin\\u0026replicaSet=atlas-raotkl-shard-0\",\n \"standardSrv\": \"mongodb+srv://test-acc-tf-c-454594439.avbf80m.mongodb-dev.net\"\n },\n \"createDate\": \"2025-09-30T13:31:57Z\",\n \"encryptionAtRestProvider\": \"NONE\",\n \"featureCompatibilityVersion\": \"8.0\",\n \"globalClusterSelfManagedSharding\": false,\n \"groupId\": \"{groupId}\",\n \"id\": \"68dbdbcd7fa26276b31c98cb\",\n \"internalClusterRole\": \"NONE\",\n \"labels\": [],\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\",\n \"rel\": \"self\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\",\n \"rel\": \"https://cloud.mongodb.com/restoreJobs\"\n },\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\",\n \"rel\": \"https://cloud.mongodb.com/snapshots\"\n }\n ],\n \"mongoDBMajorVersion\": \"8.0\",\n \"mongoDBVersion\": \"8.0.14\",\n \"name\": \"{clusterName}\",\n \"paused\": false,\n \"pitEnabled\": false,\n \"redactClientLogData\": false,\n \"replicationSpecs\": [\n {\n \"id\": \"68dbdbcd7fa26276b31c98ca\",\n \"regionConfigs\": [\n {\n \"analyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"autoScaling\": {\n \"compute\": {\n \"enabled\": false,\n \"predictiveEnabled\": false,\n \"scaleDownEnabled\": false\n },\n \"diskGB\": {\n \"enabled\": true\n }\n },\n \"effectiveAnalyticsSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"effectiveElectableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"effectiveReadOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"electableSpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 3\n },\n \"priority\": 7,\n \"providerName\": \"AWS\",\n \"readOnlySpecs\": {\n \"diskIOPS\": 135125,\n \"diskSizeGB\": 380,\n \"ebsVolumeType\": \"PROVISIONED\",\n \"instanceSize\": \"M40_NVME\",\n \"nodeCount\": 0\n },\n \"regionName\": \"US_EAST_1\"\n }\n ],\n \"zoneId\": \"68dbdbcd7fa26276b31c98c9\",\n \"zoneName\": \"Zone 1\"\n }\n ],\n \"rootCertType\": \"ISRGROOTX1\",\n \"stateName\": \"UPDATING\",\n \"tags\": [],\n \"terminationProtectionEnabled\": false,\n \"useAwsTimeBasedSnapshotCopyForFastInitialSync\": false,\n \"versionReleaseSystem\": \"LTS\"\n }\n ],\n \"totalCount\": 1\n}"
- path: /api/atlas/v2/groups/{groupId}/flexClusters
method: GET
version: '2024-11-13'
text: ""
responses:
- response_index: 87
status: 200
text: "{\n \"links\": [\n {\n \"href\": \"https://cloud-dev.mongodb.com/api/atlas/v2/groups/{groupId}/flexClusters?includeCount=true\\u0026pageNum=1\\u0026itemsPerPage=100\",\n \"rel\": \"self\"\n }\n ],\n \"results\": [],\n \"totalCount\": 0\n}"
- path: /api/atlas/v2/groups/{groupId}/clusters/{clusterName}
method: DELETE
version: '2023-02-01'
text: ""
responses:
- response_index: 88
status: 202
text: "{}"