diff --git a/tools/cli/internal/openapi/filter/code_sample.go b/tools/cli/internal/openapi/filter/code_sample.go index 21bca1808d..5f6036e0ed 100644 --- a/tools/cli/internal/openapi/filter/code_sample.go +++ b/tools/cli/internal/openapi/filter/code_sample.go @@ -55,8 +55,9 @@ func (f *CodeSampleFilter) Apply() error { } func (f *CodeSampleFilter) newCurlCodeSamplesForOperation(pathName, opMethod string) codeSample { + version := apiVersion(f.metadata.targetVersion) source := "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n " + - "--header \"Accept: application/vnd.atlas." + apiVersion(f.metadata.targetVersion) + "+json\" \\\n " + "--header \"Accept: application/vnd.atlas." + version + "+json\" \\\n " switch opMethod { case "GET": @@ -64,6 +65,7 @@ func (f *CodeSampleFilter) newCurlCodeSamplesForOperation(pathName, opMethod str case "DELETE": source += "-X " + opMethod + " \"" + pathName + "\"" case "POST", "PATCH", "PUT": + source += "--header \"Content-Type: application/vnd.atlas." + version + "+json\" \\\n " source += "-X " + opMethod + " \"" + pathName + "\"\n " source += "-d " + "{ }" } diff --git a/tools/cli/test/data/split/dev/openapi-v2-2023-01-01.json b/tools/cli/test/data/split/dev/openapi-v2-2023-01-01.json index 9ff189d3c7..cdafb2f5b4 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2023-01-01.json +++ b/tools/cli/test/data/split/dev/openapi-v2-2023-01-01.json @@ -772,7 +772,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -907,7 +907,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -1139,7 +1139,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1392,7 +1392,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1605,7 +1605,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -1872,7 +1872,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" }, { "lang": "cURL", @@ -2030,7 +2030,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2393,7 +2393,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2616,7 +2616,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -2701,7 +2701,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3022,7 +3022,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3240,7 +3240,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3406,7 +3406,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3487,7 +3487,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3613,7 +3613,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -3736,7 +3736,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -3879,7 +3879,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4169,7 +4169,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4297,7 +4297,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4535,7 +4535,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -4691,7 +4691,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -4857,7 +4857,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" }, { "lang": "cURL", @@ -4937,7 +4937,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5185,7 +5185,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5348,7 +5348,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5588,7 +5588,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -5973,7 +5973,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6136,7 +6136,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6630,7 +6630,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -6722,7 +6722,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" }, { "lang": "cURL", @@ -6811,7 +6811,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7381,7 +7381,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -7754,7 +7754,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -7991,7 +7991,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8175,7 +8175,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" }, { "lang": "cURL", @@ -8351,7 +8351,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -8524,7 +8524,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -8913,7 +8913,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9154,7 +9154,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9322,7 +9322,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" }, { "lang": "cURL", @@ -9390,7 +9390,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -9566,7 +9566,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -9882,7 +9882,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -9968,7 +9968,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10118,7 +10118,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -10467,7 +10467,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -10817,7 +10817,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -11121,7 +11121,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -11259,7 +11259,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -11485,7 +11485,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -11633,7 +11633,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -11853,7 +11853,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -12175,7 +12175,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -12567,7 +12567,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -12823,7 +12823,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -12993,7 +12993,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -13368,7 +13368,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -13515,7 +13515,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -14622,7 +14622,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -14725,7 +14725,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -14869,7 +14869,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -14937,7 +14937,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -15160,7 +15160,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -15564,7 +15564,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -15644,7 +15644,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" }, { "lang": "cURL", @@ -15725,7 +15725,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -15934,7 +15934,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -16109,7 +16109,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" }, { "lang": "cURL", @@ -16163,7 +16163,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" }, { "lang": "cURL", @@ -16217,7 +16217,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -16388,7 +16388,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -16668,7 +16668,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -16897,7 +16897,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -17026,7 +17026,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -17249,7 +17249,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -17487,7 +17487,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" }, { "lang": "cURL", @@ -17559,7 +17559,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -17901,7 +17901,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" }, { "lang": "cURL", @@ -17973,7 +17973,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -18102,7 +18102,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -18254,7 +18254,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -18501,7 +18501,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -18849,7 +18849,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -19174,7 +19174,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -19315,7 +19315,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -20891,7 +20891,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -20964,7 +20964,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -21036,7 +21036,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -21240,7 +21240,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -21408,7 +21408,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -21797,7 +21797,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -22026,7 +22026,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -22161,7 +22161,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -22318,7 +22318,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -22485,7 +22485,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -22611,7 +22611,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -22793,7 +22793,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -23104,7 +23104,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -23259,7 +23259,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -23464,7 +23464,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -23604,7 +23604,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -23833,7 +23833,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -24011,7 +24011,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -24254,7 +24254,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -24811,7 +24811,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -24883,7 +24883,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -25109,7 +25109,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -25655,7 +25655,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -25790,7 +25790,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -25945,7 +25945,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -26268,7 +26268,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -26450,7 +26450,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -26771,7 +26771,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -26839,7 +26839,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-01-01+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", diff --git a/tools/cli/test/data/split/dev/openapi-v2-2023-01-01.yaml b/tools/cli/test/data/split/dev/openapi-v2-2023-01-01.yaml index f34cfd950f..0b868b9db5 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2023-01-01.yaml +++ b/tools/cli/test/data/split/dev/openapi-v2-2023-01-01.yaml @@ -28641,6 +28641,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI @@ -28728,6 +28729,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI @@ -28882,6 +28884,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PUT "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI @@ -29052,6 +29055,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI @@ -29190,6 +29194,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups" -d { } - label: Atlas CLI @@ -29314,6 +29319,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI @@ -29411,6 +29417,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI @@ -29655,6 +29662,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI @@ -29814,6 +29822,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -29876,6 +29885,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -30093,6 +30103,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI @@ -30232,6 +30243,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI @@ -30339,6 +30351,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -30393,6 +30406,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -30474,6 +30488,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI @@ -30553,6 +30568,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI @@ -30644,6 +30660,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI @@ -30838,6 +30855,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI @@ -30921,6 +30939,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI @@ -31078,6 +31097,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI @@ -31177,6 +31197,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI @@ -31343,6 +31364,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI @@ -31449,6 +31471,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI @@ -31608,6 +31631,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -31869,6 +31893,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI @@ -31977,6 +32002,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI @@ -32151,6 +32177,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -32368,6 +32395,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI @@ -32427,6 +32455,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI @@ -32802,6 +32831,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI @@ -33055,6 +33085,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI @@ -33214,6 +33245,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI @@ -33337,6 +33369,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI @@ -33459,6 +33492,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI @@ -33571,6 +33605,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI @@ -33760,6 +33795,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI @@ -33995,6 +34031,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI @@ -34108,6 +34145,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI @@ -34154,6 +34192,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI @@ -34272,6 +34311,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI @@ -34486,6 +34526,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -34544,6 +34585,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -34650,6 +34692,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI @@ -34882,6 +34925,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -35112,6 +35156,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI @@ -35164,6 +35209,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI @@ -35267,6 +35313,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI @@ -35425,6 +35472,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI @@ -35553,6 +35601,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI @@ -35699,6 +35748,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI @@ -35795,6 +35845,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI @@ -35938,6 +35989,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI @@ -36175,6 +36227,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI @@ -36422,6 +36475,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI @@ -36628,6 +36682,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI @@ -36741,6 +36796,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI @@ -37002,6 +37058,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI @@ -37097,6 +37154,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI @@ -37825,6 +37883,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -37893,6 +37952,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -37987,6 +38047,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -38032,6 +38093,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -38183,6 +38245,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -38507,6 +38570,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI @@ -38567,6 +38631,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI @@ -38651,6 +38716,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI @@ -38704,6 +38770,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI @@ -38870,6 +38937,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI @@ -38906,6 +38974,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI @@ -38942,6 +39011,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI @@ -39051,6 +39121,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI @@ -39231,6 +39302,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI @@ -39382,6 +39454,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI @@ -39467,6 +39540,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI @@ -39616,6 +39690,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI @@ -39770,6 +39845,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI @@ -39818,6 +39894,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI @@ -40043,6 +40120,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI @@ -40275,6 +40353,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI @@ -40449,6 +40528,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI @@ -40532,6 +40612,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI @@ -40637,6 +40718,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI @@ -40805,6 +40887,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI @@ -40894,6 +40977,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI @@ -41001,6 +41085,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI @@ -42103,6 +42188,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -42151,6 +42237,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -42200,6 +42287,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI @@ -42330,6 +42418,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI @@ -42438,6 +42527,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -42695,6 +42785,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI @@ -42846,6 +42937,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI @@ -42933,6 +43025,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI @@ -43032,6 +43125,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI @@ -43144,6 +43238,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -43228,6 +43323,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI @@ -43348,6 +43444,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI @@ -43548,6 +43645,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -43696,6 +43794,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/orgs" -d { } - label: Atlas CLI @@ -43834,6 +43933,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI @@ -43922,6 +44022,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI @@ -44074,6 +44175,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -44186,6 +44288,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI @@ -44348,6 +44451,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI @@ -44720,6 +44824,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -44767,6 +44872,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -44916,6 +45022,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -45283,6 +45390,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI @@ -45370,6 +45478,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI @@ -45468,6 +45577,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI @@ -45632,6 +45742,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -45751,6 +45862,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI @@ -46009,6 +46121,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X PUT "/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -46059,6 +46172,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-01-01+json" \ -X POST "/api/atlas/v2/users" -d { } - label: Atlas CLI diff --git a/tools/cli/test/data/split/dev/openapi-v2-2023-02-01.json b/tools/cli/test/data/split/dev/openapi-v2-2023-02-01.json index edfe326d02..4548a5d8c1 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2023-02-01.json +++ b/tools/cli/test/data/split/dev/openapi-v2-2023-02-01.json @@ -776,7 +776,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -911,7 +911,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -1143,7 +1143,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1396,7 +1396,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1609,7 +1609,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -1876,7 +1876,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" }, { "lang": "cURL", @@ -1952,7 +1952,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2110,7 +2110,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2473,7 +2473,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2696,7 +2696,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -2781,7 +2781,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3102,7 +3102,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3320,7 +3320,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3486,7 +3486,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3567,7 +3567,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3693,7 +3693,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -3816,7 +3816,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -3959,7 +3959,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4249,7 +4249,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4377,7 +4377,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4615,7 +4615,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -4771,7 +4771,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -4937,7 +4937,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" }, { "lang": "cURL", @@ -5017,7 +5017,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5263,7 +5263,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5426,7 +5426,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5666,7 +5666,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -6051,7 +6051,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6214,7 +6214,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6708,7 +6708,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -6800,7 +6800,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" }, { "lang": "cURL", @@ -6889,7 +6889,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7459,7 +7459,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -7832,7 +7832,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -8069,7 +8069,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8253,7 +8253,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" }, { "lang": "cURL", @@ -8429,7 +8429,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -8602,7 +8602,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -8991,7 +8991,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9232,7 +9232,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9400,7 +9400,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" }, { "lang": "cURL", @@ -9467,7 +9467,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -9642,7 +9642,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -9958,7 +9958,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10044,7 +10044,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10194,7 +10194,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -10543,7 +10543,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -10891,7 +10891,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -11195,7 +11195,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -11333,7 +11333,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -11559,7 +11559,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -11707,7 +11707,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -11927,7 +11927,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -12249,7 +12249,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -12641,7 +12641,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -12897,7 +12897,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -13067,7 +13067,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -13442,7 +13442,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -13589,7 +13589,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -14696,7 +14696,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -14799,7 +14799,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -14943,7 +14943,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -15011,7 +15011,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -15234,7 +15234,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -15638,7 +15638,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -15718,7 +15718,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" }, { "lang": "cURL", @@ -15799,7 +15799,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -16008,7 +16008,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -16183,7 +16183,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" }, { "lang": "cURL", @@ -16237,7 +16237,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" }, { "lang": "cURL", @@ -16291,7 +16291,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -16462,7 +16462,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -16742,7 +16742,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -16971,7 +16971,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -17100,7 +17100,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -17323,7 +17323,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -17561,7 +17561,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" }, { "lang": "cURL", @@ -17633,7 +17633,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -17975,7 +17975,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" }, { "lang": "cURL", @@ -18047,7 +18047,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -18176,7 +18176,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -18328,7 +18328,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -18575,7 +18575,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -18923,7 +18923,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -19248,7 +19248,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -19389,7 +19389,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -20965,7 +20965,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -21038,7 +21038,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -21110,7 +21110,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -21314,7 +21314,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -21482,7 +21482,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -21871,7 +21871,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -22100,7 +22100,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -22235,7 +22235,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -22367,7 +22367,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -22598,7 +22598,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -22853,7 +22853,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -23100,7 +23100,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" }, { "lang": "cURL", @@ -23257,7 +23257,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -23424,7 +23424,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -23550,7 +23550,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -23732,7 +23732,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -24043,7 +24043,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -24198,7 +24198,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -24403,7 +24403,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -24543,7 +24543,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -24772,7 +24772,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -24950,7 +24950,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -25193,7 +25193,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -25750,7 +25750,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -25822,7 +25822,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -26048,7 +26048,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -26594,7 +26594,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -26729,7 +26729,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -26884,7 +26884,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -27207,7 +27207,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -27389,7 +27389,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -27710,7 +27710,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -27778,7 +27778,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-02-01+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", diff --git a/tools/cli/test/data/split/dev/openapi-v2-2023-02-01.yaml b/tools/cli/test/data/split/dev/openapi-v2-2023-02-01.yaml index 03aa3e2f10..b70612118c 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2023-02-01.yaml +++ b/tools/cli/test/data/split/dev/openapi-v2-2023-02-01.yaml @@ -29005,6 +29005,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI @@ -29092,6 +29093,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI @@ -29246,6 +29248,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PUT "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI @@ -29416,6 +29419,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI @@ -29554,6 +29558,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups" -d { } - label: Atlas CLI @@ -29678,6 +29683,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI @@ -29727,6 +29733,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI @@ -29824,6 +29831,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI @@ -30068,6 +30076,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI @@ -30227,6 +30236,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -30289,6 +30299,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -30506,6 +30517,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI @@ -30645,6 +30657,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI @@ -30752,6 +30765,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -30806,6 +30820,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -30887,6 +30902,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI @@ -30966,6 +30982,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI @@ -31057,6 +31074,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI @@ -31251,6 +31269,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI @@ -31334,6 +31353,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI @@ -31491,6 +31511,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI @@ -31590,6 +31611,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI @@ -31754,6 +31776,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI @@ -31860,6 +31883,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI @@ -32019,6 +32043,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -32280,6 +32305,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI @@ -32388,6 +32414,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI @@ -32562,6 +32589,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -32779,6 +32807,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI @@ -32838,6 +32867,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI @@ -33213,6 +33243,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI @@ -33466,6 +33497,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI @@ -33625,6 +33657,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI @@ -33748,6 +33781,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI @@ -33870,6 +33904,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI @@ -33982,6 +34017,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI @@ -34171,6 +34207,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI @@ -34406,6 +34443,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI @@ -34519,6 +34557,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI @@ -34564,6 +34603,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI @@ -34681,6 +34721,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI @@ -34895,6 +34936,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -34953,6 +34995,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -35059,6 +35102,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI @@ -35291,6 +35335,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -35519,6 +35564,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI @@ -35571,6 +35617,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI @@ -35674,6 +35721,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI @@ -35832,6 +35880,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI @@ -35960,6 +36009,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI @@ -36106,6 +36156,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI @@ -36202,6 +36253,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI @@ -36345,6 +36397,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI @@ -36582,6 +36635,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI @@ -36829,6 +36883,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI @@ -37035,6 +37090,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI @@ -37148,6 +37204,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI @@ -37409,6 +37466,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI @@ -37504,6 +37562,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI @@ -38232,6 +38291,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -38300,6 +38360,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -38394,6 +38455,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -38439,6 +38501,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -38590,6 +38653,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -38914,6 +38978,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI @@ -38974,6 +39039,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI @@ -39058,6 +39124,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI @@ -39111,6 +39178,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI @@ -39277,6 +39345,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI @@ -39313,6 +39382,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI @@ -39349,6 +39419,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI @@ -39458,6 +39529,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI @@ -39638,6 +39710,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI @@ -39789,6 +39862,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI @@ -39874,6 +39948,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI @@ -40023,6 +40098,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI @@ -40177,6 +40253,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI @@ -40225,6 +40302,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI @@ -40450,6 +40528,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI @@ -40682,6 +40761,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI @@ -40856,6 +40936,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI @@ -40939,6 +41020,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI @@ -41044,6 +41126,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI @@ -41212,6 +41295,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI @@ -41301,6 +41385,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI @@ -41408,6 +41493,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI @@ -42510,6 +42596,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -42558,6 +42645,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -42607,6 +42695,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI @@ -42737,6 +42826,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI @@ -42845,6 +42935,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -43102,6 +43193,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI @@ -43253,6 +43345,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI @@ -43340,6 +43433,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI @@ -43423,6 +43517,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI @@ -43573,6 +43668,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI @@ -43739,6 +43835,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI @@ -43900,6 +43997,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI @@ -43999,6 +44097,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI @@ -44111,6 +44210,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -44195,6 +44295,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI @@ -44315,6 +44416,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI @@ -44515,6 +44617,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -44663,6 +44766,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/orgs" -d { } - label: Atlas CLI @@ -44801,6 +44905,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI @@ -44889,6 +44994,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI @@ -45041,6 +45147,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -45153,6 +45260,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI @@ -45315,6 +45423,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI @@ -45687,6 +45796,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -45734,6 +45844,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -45883,6 +45994,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -46250,6 +46362,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI @@ -46337,6 +46450,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI @@ -46435,6 +46549,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI @@ -46599,6 +46714,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -46718,6 +46834,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI @@ -46976,6 +47093,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X PUT "/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -47026,6 +47144,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-02-01+json" \ -X POST "/api/atlas/v2/users" -d { } - label: Atlas CLI diff --git a/tools/cli/test/data/split/dev/openapi-v2-2023-10-01.json b/tools/cli/test/data/split/dev/openapi-v2-2023-10-01.json index ee80a5f118..07914fa739 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2023-10-01.json +++ b/tools/cli/test/data/split/dev/openapi-v2-2023-10-01.json @@ -776,7 +776,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -911,7 +911,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -1143,7 +1143,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1396,7 +1396,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1609,7 +1609,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -1876,7 +1876,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" }, { "lang": "cURL", @@ -1952,7 +1952,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2110,7 +2110,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2473,7 +2473,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2696,7 +2696,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -2781,7 +2781,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3102,7 +3102,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3320,7 +3320,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3486,7 +3486,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3567,7 +3567,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3693,7 +3693,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -3816,7 +3816,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -3959,7 +3959,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4245,7 +4245,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4372,7 +4372,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4610,7 +4610,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -4766,7 +4766,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -4932,7 +4932,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" }, { "lang": "cURL", @@ -5012,7 +5012,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5258,7 +5258,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5421,7 +5421,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5661,7 +5661,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -6046,7 +6046,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6209,7 +6209,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6703,7 +6703,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -6795,7 +6795,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" }, { "lang": "cURL", @@ -6884,7 +6884,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7454,7 +7454,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -7827,7 +7827,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -8064,7 +8064,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8248,7 +8248,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" }, { "lang": "cURL", @@ -8424,7 +8424,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -8597,7 +8597,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -8986,7 +8986,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9227,7 +9227,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9395,7 +9395,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" }, { "lang": "cURL", @@ -9462,7 +9462,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -9637,7 +9637,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -9953,7 +9953,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10039,7 +10039,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10189,7 +10189,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -10538,7 +10538,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -10886,7 +10886,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -11190,7 +11190,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -11328,7 +11328,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -11554,7 +11554,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -11702,7 +11702,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -11922,7 +11922,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -12244,7 +12244,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -12636,7 +12636,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -12892,7 +12892,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -13062,7 +13062,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -13437,7 +13437,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -13584,7 +13584,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -14691,7 +14691,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -14794,7 +14794,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -14938,7 +14938,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -15006,7 +15006,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -15229,7 +15229,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -15633,7 +15633,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -15713,7 +15713,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" }, { "lang": "cURL", @@ -15794,7 +15794,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -16003,7 +16003,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -16178,7 +16178,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" }, { "lang": "cURL", @@ -16232,7 +16232,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" }, { "lang": "cURL", @@ -16286,7 +16286,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -16457,7 +16457,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -16737,7 +16737,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -16966,7 +16966,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -17095,7 +17095,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -17318,7 +17318,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -17556,7 +17556,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" }, { "lang": "cURL", @@ -17628,7 +17628,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -17970,7 +17970,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" }, { "lang": "cURL", @@ -18042,7 +18042,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -18171,7 +18171,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -18323,7 +18323,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -18570,7 +18570,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -18918,7 +18918,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -19243,7 +19243,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -19384,7 +19384,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -20960,7 +20960,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -21033,7 +21033,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -21105,7 +21105,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -21309,7 +21309,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -21477,7 +21477,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -21866,7 +21866,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -22095,7 +22095,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -22231,7 +22231,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -22449,7 +22449,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -22532,7 +22532,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -22667,7 +22667,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -22799,7 +22799,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -23030,7 +23030,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -23285,7 +23285,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -23532,7 +23532,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" }, { "lang": "cURL", @@ -23689,7 +23689,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -23856,7 +23856,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -23982,7 +23982,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -24164,7 +24164,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -24475,7 +24475,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -24630,7 +24630,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -24835,7 +24835,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -24975,7 +24975,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -25204,7 +25204,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -25382,7 +25382,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -25625,7 +25625,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -26182,7 +26182,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -26254,7 +26254,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -26480,7 +26480,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -27026,7 +27026,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -27161,7 +27161,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -27375,7 +27375,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -27530,7 +27530,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" }, { "lang": "cURL", @@ -27740,7 +27740,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -27895,7 +27895,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -28218,7 +28218,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -28400,7 +28400,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -28721,7 +28721,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -28789,7 +28789,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-10-01+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", diff --git a/tools/cli/test/data/split/dev/openapi-v2-2023-10-01.yaml b/tools/cli/test/data/split/dev/openapi-v2-2023-10-01.yaml index 6c39fce6ba..ab4fab51ac 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2023-10-01.yaml +++ b/tools/cli/test/data/split/dev/openapi-v2-2023-10-01.yaml @@ -29426,6 +29426,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI @@ -29513,6 +29514,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI @@ -29667,6 +29669,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PUT "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI @@ -29837,6 +29840,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI @@ -29975,6 +29979,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups" -d { } - label: Atlas CLI @@ -30099,6 +30104,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI @@ -30148,6 +30154,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI @@ -30245,6 +30252,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI @@ -30489,6 +30497,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI @@ -30648,6 +30657,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -30710,6 +30720,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -30927,6 +30938,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI @@ -31066,6 +31078,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI @@ -31173,6 +31186,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -31227,6 +31241,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -31308,6 +31323,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI @@ -31387,6 +31403,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI @@ -31478,6 +31495,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI @@ -31668,6 +31686,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI @@ -31750,6 +31769,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI @@ -31907,6 +31927,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI @@ -32006,6 +32027,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI @@ -32170,6 +32192,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI @@ -32276,6 +32299,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI @@ -32435,6 +32459,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -32696,6 +32721,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI @@ -32804,6 +32830,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI @@ -32978,6 +33005,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -33195,6 +33223,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI @@ -33254,6 +33283,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI @@ -33629,6 +33659,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI @@ -33882,6 +33913,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI @@ -34041,6 +34073,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI @@ -34164,6 +34197,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI @@ -34286,6 +34320,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI @@ -34398,6 +34433,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI @@ -34587,6 +34623,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI @@ -34822,6 +34859,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI @@ -34935,6 +34973,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI @@ -34980,6 +35019,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI @@ -35097,6 +35137,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI @@ -35311,6 +35352,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -35369,6 +35411,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -35475,6 +35518,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI @@ -35707,6 +35751,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -35935,6 +35980,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI @@ -35987,6 +36033,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI @@ -36090,6 +36137,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI @@ -36248,6 +36296,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI @@ -36376,6 +36425,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI @@ -36522,6 +36572,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI @@ -36618,6 +36669,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI @@ -36761,6 +36813,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI @@ -36998,6 +37051,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI @@ -37245,6 +37299,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI @@ -37451,6 +37506,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI @@ -37564,6 +37620,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI @@ -37825,6 +37882,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI @@ -37920,6 +37978,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI @@ -38648,6 +38707,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -38716,6 +38776,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -38810,6 +38871,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -38855,6 +38917,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -39006,6 +39069,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -39330,6 +39394,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI @@ -39390,6 +39455,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI @@ -39474,6 +39540,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI @@ -39527,6 +39594,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI @@ -39693,6 +39761,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI @@ -39729,6 +39798,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI @@ -39765,6 +39835,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI @@ -39874,6 +39945,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI @@ -40054,6 +40126,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI @@ -40205,6 +40278,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI @@ -40290,6 +40364,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI @@ -40439,6 +40514,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI @@ -40593,6 +40669,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI @@ -40641,6 +40718,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI @@ -40866,6 +40944,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI @@ -41098,6 +41177,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI @@ -41272,6 +41352,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI @@ -41355,6 +41436,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI @@ -41460,6 +41542,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI @@ -41628,6 +41711,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI @@ -41717,6 +41801,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI @@ -41824,6 +41909,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI @@ -42926,6 +43012,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -42974,6 +43061,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -43023,6 +43111,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI @@ -43153,6 +43242,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI @@ -43261,6 +43351,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -43518,6 +43609,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI @@ -43669,6 +43761,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI @@ -43755,6 +43848,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serviceAccounts" -d { } - label: Atlas CLI @@ -43896,6 +43990,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -43951,6 +44046,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -44038,6 +44134,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI @@ -44121,6 +44218,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI @@ -44271,6 +44369,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI @@ -44437,6 +44536,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI @@ -44598,6 +44698,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI @@ -44697,6 +44798,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI @@ -44809,6 +44911,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -44893,6 +44996,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI @@ -45013,6 +45117,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI @@ -45213,6 +45318,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -45361,6 +45467,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/orgs" -d { } - label: Atlas CLI @@ -45499,6 +45606,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI @@ -45587,6 +45695,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI @@ -45739,6 +45848,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -45851,6 +45961,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI @@ -46013,6 +46124,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI @@ -46385,6 +46497,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -46432,6 +46545,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -46581,6 +46695,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -46948,6 +47063,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI @@ -47033,6 +47149,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/serviceAccounts" -d { } - label: Atlas CLI @@ -47171,6 +47288,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -47269,6 +47387,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" -d { } - label: Atlas CLI @@ -47404,6 +47523,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI @@ -47502,6 +47622,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI @@ -47666,6 +47787,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -47785,6 +47907,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI @@ -48043,6 +48166,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X PUT "/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -48093,6 +48217,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ + --header "Content-Type: application/vnd.atlas.2023-10-01+json" \ -X POST "/api/atlas/v2/users" -d { } - label: Atlas CLI diff --git a/tools/cli/test/data/split/dev/openapi-v2-2023-11-15.json b/tools/cli/test/data/split/dev/openapi-v2-2023-11-15.json index 90deb2d14f..3c85afe5fb 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2023-11-15.json +++ b/tools/cli/test/data/split/dev/openapi-v2-2023-11-15.json @@ -780,7 +780,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -915,7 +915,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -1147,7 +1147,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1317,7 +1317,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" }, { "lang": "cURL", @@ -1534,7 +1534,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1813,7 +1813,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -2080,7 +2080,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" }, { "lang": "cURL", @@ -2156,7 +2156,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2314,7 +2314,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2677,7 +2677,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2900,7 +2900,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -2985,7 +2985,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3306,7 +3306,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3524,7 +3524,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3690,7 +3690,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3771,7 +3771,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3897,7 +3897,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -4020,7 +4020,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -4163,7 +4163,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4449,7 +4449,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4576,7 +4576,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4814,7 +4814,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -4970,7 +4970,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -5136,7 +5136,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" }, { "lang": "cURL", @@ -5216,7 +5216,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5462,7 +5462,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5625,7 +5625,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5865,7 +5865,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -6250,7 +6250,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6413,7 +6413,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6907,7 +6907,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -6999,7 +6999,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" }, { "lang": "cURL", @@ -7088,7 +7088,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7731,7 +7731,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" }, { "lang": "cURL", @@ -7823,7 +7823,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" }, { "lang": "cURL", @@ -7906,7 +7906,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\"\n -d { }" }, { "lang": "cURL", @@ -7997,7 +7997,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -8370,7 +8370,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -8607,7 +8607,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8791,7 +8791,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" }, { "lang": "cURL", @@ -8967,7 +8967,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -9140,7 +9140,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -9529,7 +9529,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9770,7 +9770,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9938,7 +9938,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" }, { "lang": "cURL", @@ -10005,7 +10005,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -10180,7 +10180,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -10496,7 +10496,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10582,7 +10582,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10732,7 +10732,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -11081,7 +11081,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -11720,7 +11720,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -12024,7 +12024,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -12162,7 +12162,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -12388,7 +12388,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -12536,7 +12536,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -12756,7 +12756,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -13078,7 +13078,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -13470,7 +13470,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -13726,7 +13726,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -13896,7 +13896,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -14271,7 +14271,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -14418,7 +14418,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -15525,7 +15525,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -15628,7 +15628,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -15772,7 +15772,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -15840,7 +15840,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -16063,7 +16063,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -16467,7 +16467,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -16547,7 +16547,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" }, { "lang": "cURL", @@ -16628,7 +16628,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -16837,7 +16837,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -17012,7 +17012,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" }, { "lang": "cURL", @@ -17066,7 +17066,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" }, { "lang": "cURL", @@ -17120,7 +17120,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -17291,7 +17291,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -17571,7 +17571,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -17800,7 +17800,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -17929,7 +17929,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -18152,7 +18152,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -18390,7 +18390,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" }, { "lang": "cURL", @@ -18462,7 +18462,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -18804,7 +18804,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" }, { "lang": "cURL", @@ -18876,7 +18876,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -19005,7 +19005,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -19157,7 +19157,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -19404,7 +19404,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -19752,7 +19752,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -20077,7 +20077,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -20218,7 +20218,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -21977,7 +21977,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -22050,7 +22050,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -22122,7 +22122,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -22326,7 +22326,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -22494,7 +22494,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -22883,7 +22883,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -23112,7 +23112,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -23248,7 +23248,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -23466,7 +23466,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -23549,7 +23549,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -23684,7 +23684,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -23816,7 +23816,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -24047,7 +24047,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -24302,7 +24302,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -24549,7 +24549,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" }, { "lang": "cURL", @@ -24706,7 +24706,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -24873,7 +24873,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -24999,7 +24999,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -25181,7 +25181,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -25492,7 +25492,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -25647,7 +25647,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -25852,7 +25852,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -25992,7 +25992,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -26221,7 +26221,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -26399,7 +26399,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -26642,7 +26642,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -27199,7 +27199,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -27271,7 +27271,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -27497,7 +27497,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -28043,7 +28043,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -28178,7 +28178,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -28392,7 +28392,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -28547,7 +28547,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" }, { "lang": "cURL", @@ -28757,7 +28757,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -28912,7 +28912,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -29235,7 +29235,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -29417,7 +29417,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -29738,7 +29738,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -29849,7 +29849,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n --header \"Content-Type: application/vnd.atlas.2023-11-15+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", diff --git a/tools/cli/test/data/split/dev/openapi-v2-2023-11-15.yaml b/tools/cli/test/data/split/dev/openapi-v2-2023-11-15.yaml index 89d6f0be80..5e77030fd9 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2023-11-15.yaml +++ b/tools/cli/test/data/split/dev/openapi-v2-2023-11-15.yaml @@ -29947,6 +29947,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI @@ -30034,6 +30035,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI @@ -30188,6 +30190,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PUT "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI @@ -30302,6 +30305,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" -d { } - label: Atlas CLI @@ -30449,6 +30453,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI @@ -30630,6 +30635,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups" -d { } - label: Atlas CLI @@ -30754,6 +30760,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI @@ -30803,6 +30810,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI @@ -30900,6 +30908,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI @@ -31144,6 +31153,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI @@ -31303,6 +31313,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -31365,6 +31376,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -31582,6 +31594,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI @@ -31721,6 +31734,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI @@ -31828,6 +31842,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -31882,6 +31897,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -31963,6 +31979,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI @@ -32042,6 +32059,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI @@ -32133,6 +32151,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI @@ -32323,6 +32342,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI @@ -32405,6 +32425,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI @@ -32562,6 +32583,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI @@ -32661,6 +32683,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI @@ -32825,6 +32848,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI @@ -33087,6 +33111,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI @@ -33246,6 +33271,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -33507,6 +33533,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI @@ -33615,6 +33642,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI @@ -33789,6 +33817,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -34006,6 +34035,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI @@ -34065,6 +34095,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI @@ -34489,6 +34520,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI @@ -34551,6 +34583,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI @@ -34607,6 +34640,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" -d { } - label: Atlas CLI @@ -34668,6 +34702,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI @@ -34921,6 +34956,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI @@ -35080,6 +35116,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI @@ -35203,6 +35240,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI @@ -35325,6 +35363,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI @@ -35437,6 +35476,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI @@ -35626,6 +35666,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI @@ -35861,6 +35902,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI @@ -35974,6 +36016,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI @@ -36019,6 +36062,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI @@ -36136,6 +36180,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI @@ -36350,6 +36395,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -36408,6 +36454,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -36514,6 +36561,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI @@ -36746,6 +36794,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -36974,6 +37023,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI @@ -37026,6 +37076,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI @@ -37168,6 +37219,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI @@ -37326,6 +37378,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI @@ -37454,6 +37507,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI @@ -37600,6 +37654,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI @@ -37696,6 +37751,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI @@ -37839,6 +37895,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI @@ -38076,6 +38133,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI @@ -38323,6 +38381,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI @@ -38529,6 +38588,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI @@ -38642,6 +38702,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI @@ -38903,6 +38964,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI @@ -38998,6 +39060,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI @@ -39726,6 +39789,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -39794,6 +39858,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -39888,6 +39953,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -39933,6 +39999,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -40084,6 +40151,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -40408,6 +40476,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI @@ -40468,6 +40537,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI @@ -40552,6 +40622,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI @@ -40605,6 +40676,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI @@ -40771,6 +40843,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI @@ -40807,6 +40880,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI @@ -40843,6 +40917,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI @@ -40952,6 +41027,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI @@ -41132,6 +41208,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI @@ -41283,6 +41360,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI @@ -41368,6 +41446,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI @@ -41517,6 +41596,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI @@ -41671,6 +41751,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI @@ -41719,6 +41800,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI @@ -41944,6 +42026,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI @@ -42176,6 +42259,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI @@ -42350,6 +42434,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI @@ -42433,6 +42518,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI @@ -42538,6 +42624,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI @@ -42706,6 +42793,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI @@ -42795,6 +42883,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI @@ -42902,6 +42991,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI @@ -44122,6 +44212,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -44170,6 +44261,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -44219,6 +44311,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI @@ -44349,6 +44442,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI @@ -44457,6 +44551,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -44714,6 +44809,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI @@ -44865,6 +44961,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI @@ -44951,6 +45048,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serviceAccounts" -d { } - label: Atlas CLI @@ -45092,6 +45190,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -45147,6 +45246,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -45234,6 +45334,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI @@ -45317,6 +45418,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI @@ -45467,6 +45569,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI @@ -45633,6 +45736,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI @@ -45794,6 +45898,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI @@ -45893,6 +45998,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI @@ -46005,6 +46111,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -46089,6 +46196,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI @@ -46209,6 +46317,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI @@ -46409,6 +46518,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -46557,6 +46667,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/orgs" -d { } - label: Atlas CLI @@ -46695,6 +46806,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI @@ -46783,6 +46895,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI @@ -46935,6 +47048,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -47047,6 +47161,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI @@ -47209,6 +47324,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI @@ -47581,6 +47697,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -47628,6 +47745,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -47777,6 +47895,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -48144,6 +48263,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI @@ -48229,6 +48349,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/serviceAccounts" -d { } - label: Atlas CLI @@ -48367,6 +48488,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -48465,6 +48587,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" -d { } - label: Atlas CLI @@ -48600,6 +48723,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI @@ -48698,6 +48822,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI @@ -48862,6 +48987,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -48981,6 +49107,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI @@ -49239,6 +49366,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X PUT "/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -49319,6 +49447,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ + --header "Content-Type: application/vnd.atlas.2023-11-15+json" \ -X POST "/api/atlas/v2/users" -d { } - label: Atlas CLI diff --git a/tools/cli/test/data/split/dev/openapi-v2-2024-05-30.json b/tools/cli/test/data/split/dev/openapi-v2-2024-05-30.json index a67a10d996..d988fb5901 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2024-05-30.json +++ b/tools/cli/test/data/split/dev/openapi-v2-2024-05-30.json @@ -780,7 +780,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -915,7 +915,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -1147,7 +1147,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1317,7 +1317,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" }, { "lang": "cURL", @@ -1534,7 +1534,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1813,7 +1813,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -2080,7 +2080,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" }, { "lang": "cURL", @@ -2156,7 +2156,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2314,7 +2314,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2677,7 +2677,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2900,7 +2900,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -2985,7 +2985,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3305,7 +3305,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3522,7 +3522,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3688,7 +3688,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3769,7 +3769,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3895,7 +3895,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -4018,7 +4018,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -4211,7 +4211,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4528,7 +4528,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4655,7 +4655,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4893,7 +4893,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -5049,7 +5049,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -5215,7 +5215,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" }, { "lang": "cURL", @@ -5295,7 +5295,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5541,7 +5541,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5704,7 +5704,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5944,7 +5944,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -6329,7 +6329,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6492,7 +6492,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6986,7 +6986,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -7078,7 +7078,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" }, { "lang": "cURL", @@ -7167,7 +7167,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7810,7 +7810,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" }, { "lang": "cURL", @@ -7902,7 +7902,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" }, { "lang": "cURL", @@ -7985,7 +7985,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\"\n -d { }" }, { "lang": "cURL", @@ -8076,7 +8076,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -8449,7 +8449,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -8686,7 +8686,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8870,7 +8870,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" }, { "lang": "cURL", @@ -9046,7 +9046,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -9219,7 +9219,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -9608,7 +9608,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9849,7 +9849,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -10017,7 +10017,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" }, { "lang": "cURL", @@ -10084,7 +10084,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -10259,7 +10259,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -10573,7 +10573,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10657,7 +10657,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10834,7 +10834,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\"\n -d { }" }, { "lang": "cURL", @@ -11260,7 +11260,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"\n -d { }" }, { "lang": "cURL", @@ -11544,7 +11544,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -11693,7 +11693,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -12042,7 +12042,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -12431,7 +12431,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\"\n -d { }" }, { "lang": "cURL", @@ -12512,7 +12512,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\"\n -d { }" }, { "lang": "cURL", @@ -12851,7 +12851,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -13155,7 +13155,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -13293,7 +13293,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -13519,7 +13519,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -13667,7 +13667,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -13887,7 +13887,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -14209,7 +14209,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -14601,7 +14601,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -14857,7 +14857,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -15027,7 +15027,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -15402,7 +15402,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -15549,7 +15549,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -16656,7 +16656,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -16759,7 +16759,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -16903,7 +16903,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -16971,7 +16971,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -17194,7 +17194,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -17598,7 +17598,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -17676,7 +17676,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" }, { "lang": "cURL", @@ -17754,7 +17754,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -17962,7 +17962,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -18137,7 +18137,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" }, { "lang": "cURL", @@ -18191,7 +18191,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" }, { "lang": "cURL", @@ -18245,7 +18245,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -18416,7 +18416,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -18696,7 +18696,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -18925,7 +18925,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -19054,7 +19054,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -19277,7 +19277,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -19515,7 +19515,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" }, { "lang": "cURL", @@ -19587,7 +19587,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -19929,7 +19929,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" }, { "lang": "cURL", @@ -20001,7 +20001,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -20130,7 +20130,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -20282,7 +20282,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -20529,7 +20529,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -20877,7 +20877,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -21202,7 +21202,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -21343,7 +21343,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -23102,7 +23102,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -23175,7 +23175,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -23247,7 +23247,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -23451,7 +23451,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -23619,7 +23619,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -24008,7 +24008,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -24237,7 +24237,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -24373,7 +24373,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -24591,7 +24591,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -24674,7 +24674,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -24809,7 +24809,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -24941,7 +24941,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -25172,7 +25172,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -25427,7 +25427,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -25674,7 +25674,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" }, { "lang": "cURL", @@ -25757,7 +25757,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\"\n -d { }" }, { "lang": "cURL", @@ -25995,7 +25995,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\"\n -d { }" }, { "lang": "cURL", @@ -26076,7 +26076,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\"\n -d { }" }, { "lang": "cURL", @@ -26314,7 +26314,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -26481,7 +26481,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -26607,7 +26607,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -26789,7 +26789,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -27100,7 +27100,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -27165,7 +27165,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}:migrate\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}:migrate\"\n -d { }" }, { "lang": "cURL", @@ -27320,7 +27320,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -27525,7 +27525,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -27665,7 +27665,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -27894,7 +27894,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -28072,7 +28072,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -28315,7 +28315,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -28872,7 +28872,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -28944,7 +28944,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -29170,7 +29170,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -29716,7 +29716,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -29851,7 +29851,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -30065,7 +30065,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -30220,7 +30220,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" }, { "lang": "cURL", @@ -30430,7 +30430,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -30585,7 +30585,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -30908,7 +30908,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -31090,7 +31090,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -31411,7 +31411,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -31522,7 +31522,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-05-30+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", diff --git a/tools/cli/test/data/split/dev/openapi-v2-2024-05-30.yaml b/tools/cli/test/data/split/dev/openapi-v2-2024-05-30.yaml index 37e769e2e3..97f33b81ed 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2024-05-30.yaml +++ b/tools/cli/test/data/split/dev/openapi-v2-2024-05-30.yaml @@ -30214,6 +30214,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI @@ -30301,6 +30302,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI @@ -30455,6 +30457,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PUT "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI @@ -30569,6 +30572,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" -d { } - label: Atlas CLI @@ -30716,6 +30720,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI @@ -30897,6 +30902,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups" -d { } - label: Atlas CLI @@ -31021,6 +31027,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI @@ -31070,6 +31077,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI @@ -31167,6 +31175,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI @@ -31411,6 +31420,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI @@ -31570,6 +31580,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -31632,6 +31643,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -31848,6 +31860,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI @@ -31986,6 +31999,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI @@ -32093,6 +32107,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -32147,6 +32162,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -32228,6 +32244,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI @@ -32307,6 +32324,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI @@ -32432,6 +32450,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI @@ -32642,6 +32661,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI @@ -32724,6 +32744,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI @@ -32881,6 +32902,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI @@ -32980,6 +33002,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI @@ -33144,6 +33167,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI @@ -33406,6 +33430,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI @@ -33565,6 +33590,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -33826,6 +33852,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI @@ -33934,6 +33961,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI @@ -34108,6 +34136,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -34325,6 +34354,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI @@ -34384,6 +34414,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI @@ -34808,6 +34839,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI @@ -34870,6 +34902,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI @@ -34926,6 +34959,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" -d { } - label: Atlas CLI @@ -34987,6 +35021,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI @@ -35240,6 +35275,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI @@ -35399,6 +35435,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI @@ -35522,6 +35559,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI @@ -35644,6 +35682,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI @@ -35756,6 +35795,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI @@ -35945,6 +35985,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI @@ -36180,6 +36221,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI @@ -36293,6 +36335,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI @@ -36338,6 +36381,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI @@ -36455,6 +36499,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI @@ -36666,6 +36711,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -36722,6 +36768,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -36839,6 +36886,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" -d { } - label: Atlas CLI @@ -37121,6 +37169,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" -d { } - label: Atlas CLI @@ -37312,6 +37361,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" -d { } - label: Atlas CLI @@ -37417,6 +37467,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI @@ -37649,6 +37700,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -37753,6 +37805,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" -d { } - label: Atlas CLI @@ -37807,6 +37860,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" -d { } - label: Atlas CLI @@ -37990,6 +38044,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI @@ -38042,6 +38097,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI @@ -38184,6 +38240,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI @@ -38342,6 +38399,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI @@ -38470,6 +38528,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI @@ -38616,6 +38675,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI @@ -38712,6 +38772,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI @@ -38855,6 +38916,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI @@ -39092,6 +39154,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI @@ -39339,6 +39402,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI @@ -39545,6 +39609,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI @@ -39658,6 +39723,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI @@ -39919,6 +39985,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI @@ -40014,6 +40081,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI @@ -40742,6 +40810,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -40810,6 +40879,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -40904,6 +40974,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -40949,6 +41020,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -41100,6 +41172,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -41424,6 +41497,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI @@ -41482,6 +41556,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI @@ -41565,6 +41640,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI @@ -41616,6 +41692,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI @@ -41781,6 +41858,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI @@ -41817,6 +41895,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI @@ -41853,6 +41932,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI @@ -41962,6 +42042,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI @@ -42142,6 +42223,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI @@ -42293,6 +42375,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI @@ -42378,6 +42461,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI @@ -42527,6 +42611,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI @@ -42681,6 +42766,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI @@ -42729,6 +42815,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI @@ -42954,6 +43041,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI @@ -43186,6 +43274,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI @@ -43360,6 +43449,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI @@ -43443,6 +43533,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI @@ -43548,6 +43639,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI @@ -43716,6 +43808,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI @@ -43805,6 +43898,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI @@ -43912,6 +44006,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI @@ -45132,6 +45227,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -45180,6 +45276,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -45229,6 +45326,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI @@ -45359,6 +45457,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI @@ -45467,6 +45566,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -45724,6 +45824,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI @@ -45875,6 +45976,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI @@ -45961,6 +46063,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serviceAccounts" -d { } - label: Atlas CLI @@ -46102,6 +46205,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -46157,6 +46261,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -46244,6 +46349,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI @@ -46327,6 +46433,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI @@ -46477,6 +46584,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI @@ -46643,6 +46751,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI @@ -46804,6 +46913,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI @@ -46858,6 +46968,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" -d { } - label: Atlas CLI @@ -47012,6 +47123,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" -d { } - label: Atlas CLI @@ -47065,6 +47177,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" -d { } - label: Atlas CLI @@ -47213,6 +47326,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI @@ -47325,6 +47439,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -47409,6 +47524,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI @@ -47529,6 +47645,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI @@ -47729,6 +47846,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -47772,6 +47890,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/groups/{groupId}:migrate" -d { } - label: Atlas CLI @@ -47920,6 +48039,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/orgs" -d { } - label: Atlas CLI @@ -48058,6 +48178,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI @@ -48146,6 +48267,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI @@ -48298,6 +48420,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -48410,6 +48533,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI @@ -48572,6 +48696,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI @@ -48944,6 +49069,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -48991,6 +49117,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -49140,6 +49267,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -49507,6 +49635,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI @@ -49592,6 +49721,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/serviceAccounts" -d { } - label: Atlas CLI @@ -49730,6 +49860,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -49828,6 +49959,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" -d { } - label: Atlas CLI @@ -49963,6 +50095,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI @@ -50061,6 +50194,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI @@ -50225,6 +50359,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -50344,6 +50479,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI @@ -50602,6 +50738,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X PUT "/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -50682,6 +50819,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ + --header "Content-Type: application/vnd.atlas.2024-05-30+json" \ -X POST "/api/atlas/v2/users" -d { } - label: Atlas CLI diff --git a/tools/cli/test/data/split/dev/openapi-v2-2024-08-05.json b/tools/cli/test/data/split/dev/openapi-v2-2024-08-05.json index fdb3d2188e..04c1806404 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2024-08-05.json +++ b/tools/cli/test/data/split/dev/openapi-v2-2024-08-05.json @@ -780,7 +780,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -915,7 +915,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -1147,7 +1147,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1317,7 +1317,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" }, { "lang": "cURL", @@ -1534,7 +1534,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1813,7 +1813,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -2080,7 +2080,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" }, { "lang": "cURL", @@ -2156,7 +2156,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2314,7 +2314,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2677,7 +2677,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2900,7 +2900,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -2985,7 +2985,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3305,7 +3305,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3522,7 +3522,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3688,7 +3688,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3769,7 +3769,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3895,7 +3895,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -4018,7 +4018,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -4211,7 +4211,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4528,7 +4528,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4655,7 +4655,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4893,7 +4893,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -5053,7 +5053,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -5218,7 +5218,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" }, { "lang": "cURL", @@ -5298,7 +5298,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5542,7 +5542,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5704,7 +5704,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5944,7 +5944,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -6324,7 +6324,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6486,7 +6486,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6980,7 +6980,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -7072,7 +7072,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" }, { "lang": "cURL", @@ -7161,7 +7161,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7804,7 +7804,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" }, { "lang": "cURL", @@ -7896,7 +7896,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" }, { "lang": "cURL", @@ -7979,7 +7979,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\"\n -d { }" }, { "lang": "cURL", @@ -8070,7 +8070,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -8443,7 +8443,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -8676,7 +8676,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8857,7 +8857,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" }, { "lang": "cURL", @@ -9032,7 +9032,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -9205,7 +9205,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -9594,7 +9594,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9835,7 +9835,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -10000,7 +10000,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" }, { "lang": "cURL", @@ -10066,7 +10066,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -10241,7 +10241,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -10555,7 +10555,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10639,7 +10639,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10816,7 +10816,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\"\n -d { }" }, { "lang": "cURL", @@ -11242,7 +11242,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"\n -d { }" }, { "lang": "cURL", @@ -11526,7 +11526,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -11675,7 +11675,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -12024,7 +12024,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -12413,7 +12413,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\"\n -d { }" }, { "lang": "cURL", @@ -12494,7 +12494,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\"\n -d { }" }, { "lang": "cURL", @@ -12833,7 +12833,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -13137,7 +13137,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -13275,7 +13275,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -13501,7 +13501,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -13649,7 +13649,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -13869,7 +13869,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -14191,7 +14191,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -14583,7 +14583,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -14839,7 +14839,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -15009,7 +15009,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -15384,7 +15384,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -15531,7 +15531,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -16638,7 +16638,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -16741,7 +16741,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -16885,7 +16885,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -16953,7 +16953,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -17176,7 +17176,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -17580,7 +17580,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -17658,7 +17658,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" }, { "lang": "cURL", @@ -17736,7 +17736,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -17944,7 +17944,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -18119,7 +18119,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" }, { "lang": "cURL", @@ -18173,7 +18173,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" }, { "lang": "cURL", @@ -18227,7 +18227,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -18398,7 +18398,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -18678,7 +18678,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -18907,7 +18907,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -19036,7 +19036,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -19259,7 +19259,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -19497,7 +19497,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" }, { "lang": "cURL", @@ -19569,7 +19569,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -19911,7 +19911,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" }, { "lang": "cURL", @@ -19983,7 +19983,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -20112,7 +20112,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -20264,7 +20264,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -20511,7 +20511,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -20859,7 +20859,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -21184,7 +21184,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -21325,7 +21325,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -23084,7 +23084,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -23157,7 +23157,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -23229,7 +23229,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -23433,7 +23433,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -23601,7 +23601,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -23990,7 +23990,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -24219,7 +24219,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -24355,7 +24355,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -24573,7 +24573,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -24656,7 +24656,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -24791,7 +24791,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -24923,7 +24923,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -25154,7 +25154,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -25409,7 +25409,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -25656,7 +25656,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" }, { "lang": "cURL", @@ -25739,7 +25739,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\"\n -d { }" }, { "lang": "cURL", @@ -25977,7 +25977,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\"\n -d { }" }, { "lang": "cURL", @@ -26058,7 +26058,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\"\n -d { }" }, { "lang": "cURL", @@ -26296,7 +26296,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -26463,7 +26463,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -26589,7 +26589,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -26771,7 +26771,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -27082,7 +27082,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -27147,7 +27147,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}:migrate\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}:migrate\"\n -d { }" }, { "lang": "cURL", @@ -27302,7 +27302,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -27507,7 +27507,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -27647,7 +27647,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -27876,7 +27876,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -28054,7 +28054,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -28297,7 +28297,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -28854,7 +28854,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -28926,7 +28926,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -29152,7 +29152,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -29698,7 +29698,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -29833,7 +29833,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -30047,7 +30047,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -30202,7 +30202,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" }, { "lang": "cURL", @@ -30412,7 +30412,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -30567,7 +30567,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -30890,7 +30890,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -31072,7 +31072,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -31393,7 +31393,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -31504,7 +31504,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n --header \"Content-Type: application/vnd.atlas.2024-08-05+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", diff --git a/tools/cli/test/data/split/dev/openapi-v2-2024-08-05.yaml b/tools/cli/test/data/split/dev/openapi-v2-2024-08-05.yaml index fea59b727b..16dca8d65a 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2024-08-05.yaml +++ b/tools/cli/test/data/split/dev/openapi-v2-2024-08-05.yaml @@ -30492,6 +30492,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI @@ -30579,6 +30580,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI @@ -30733,6 +30735,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PUT "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI @@ -30847,6 +30850,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" -d { } - label: Atlas CLI @@ -30994,6 +30998,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI @@ -31175,6 +31180,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups" -d { } - label: Atlas CLI @@ -31299,6 +31305,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI @@ -31348,6 +31355,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI @@ -31445,6 +31453,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI @@ -31689,6 +31698,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI @@ -31848,6 +31858,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -31910,6 +31921,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -32126,6 +32138,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI @@ -32264,6 +32277,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI @@ -32371,6 +32385,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -32425,6 +32440,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -32506,6 +32522,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI @@ -32585,6 +32602,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI @@ -32710,6 +32728,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI @@ -32920,6 +32939,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI @@ -33002,6 +33022,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI @@ -33159,6 +33180,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI @@ -33383,6 +33405,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI @@ -33544,6 +33567,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI @@ -33805,6 +33829,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI @@ -33964,6 +33989,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -34220,6 +34246,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI @@ -34327,6 +34354,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI @@ -34501,6 +34529,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -34718,6 +34747,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI @@ -34777,6 +34807,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI @@ -35201,6 +35232,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI @@ -35263,6 +35295,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI @@ -35319,6 +35352,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" -d { } - label: Atlas CLI @@ -35380,6 +35414,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI @@ -35633,6 +35668,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI @@ -35788,6 +35824,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI @@ -35908,6 +35945,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI @@ -36029,6 +36067,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI @@ -36141,6 +36180,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI @@ -36330,6 +36370,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI @@ -36565,6 +36606,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI @@ -36675,6 +36717,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI @@ -36719,6 +36762,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI @@ -36836,6 +36880,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI @@ -37047,6 +37092,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -37103,6 +37149,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -37220,6 +37267,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" -d { } - label: Atlas CLI @@ -37502,6 +37550,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" -d { } - label: Atlas CLI @@ -37693,6 +37742,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" -d { } - label: Atlas CLI @@ -37798,6 +37848,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI @@ -38030,6 +38081,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -38134,6 +38186,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" -d { } - label: Atlas CLI @@ -38188,6 +38241,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" -d { } - label: Atlas CLI @@ -38371,6 +38425,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI @@ -38423,6 +38478,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI @@ -38565,6 +38621,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI @@ -38723,6 +38780,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI @@ -38851,6 +38909,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI @@ -38997,6 +39056,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI @@ -39093,6 +39153,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI @@ -39236,6 +39297,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI @@ -39473,6 +39535,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI @@ -39720,6 +39783,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI @@ -39926,6 +39990,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI @@ -40039,6 +40104,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI @@ -40300,6 +40366,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI @@ -40395,6 +40462,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI @@ -41123,6 +41191,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -41191,6 +41260,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -41285,6 +41355,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -41330,6 +41401,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -41481,6 +41553,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -41805,6 +41878,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI @@ -41863,6 +41937,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI @@ -41946,6 +42021,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI @@ -41997,6 +42073,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI @@ -42162,6 +42239,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI @@ -42198,6 +42276,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI @@ -42234,6 +42313,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI @@ -42343,6 +42423,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI @@ -42523,6 +42604,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI @@ -42674,6 +42756,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI @@ -42759,6 +42842,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI @@ -42908,6 +42992,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI @@ -43062,6 +43147,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI @@ -43110,6 +43196,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI @@ -43335,6 +43422,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI @@ -43567,6 +43655,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI @@ -43741,6 +43830,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI @@ -43824,6 +43914,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI @@ -43929,6 +44020,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI @@ -44097,6 +44189,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI @@ -44186,6 +44279,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI @@ -44293,6 +44387,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI @@ -45513,6 +45608,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -45561,6 +45657,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -45610,6 +45707,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI @@ -45740,6 +45838,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI @@ -45848,6 +45947,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -46105,6 +46205,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI @@ -46256,6 +46357,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI @@ -46342,6 +46444,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serviceAccounts" -d { } - label: Atlas CLI @@ -46483,6 +46586,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -46538,6 +46642,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -46625,6 +46730,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI @@ -46708,6 +46814,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI @@ -46858,6 +46965,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI @@ -47024,6 +47132,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI @@ -47185,6 +47294,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI @@ -47239,6 +47349,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" -d { } - label: Atlas CLI @@ -47393,6 +47504,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" -d { } - label: Atlas CLI @@ -47446,6 +47558,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" -d { } - label: Atlas CLI @@ -47594,6 +47707,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI @@ -47706,6 +47820,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -47790,6 +47905,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI @@ -47910,6 +48026,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI @@ -48110,6 +48227,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -48153,6 +48271,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/groups/{groupId}:migrate" -d { } - label: Atlas CLI @@ -48301,6 +48420,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/orgs" -d { } - label: Atlas CLI @@ -48439,6 +48559,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI @@ -48527,6 +48648,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI @@ -48679,6 +48801,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -48791,6 +48914,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI @@ -48953,6 +49077,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI @@ -49325,6 +49450,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -49372,6 +49498,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -49521,6 +49648,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -49888,6 +50016,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI @@ -49973,6 +50102,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/serviceAccounts" -d { } - label: Atlas CLI @@ -50111,6 +50241,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -50209,6 +50340,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" -d { } - label: Atlas CLI @@ -50344,6 +50476,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI @@ -50442,6 +50575,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI @@ -50606,6 +50740,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -50725,6 +50860,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI @@ -50983,6 +51119,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X PUT "/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -51063,6 +51200,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ + --header "Content-Type: application/vnd.atlas.2024-08-05+json" \ -X POST "/api/atlas/v2/users" -d { } - label: Atlas CLI diff --git a/tools/cli/test/data/split/dev/openapi-v2-2025-01-01.json b/tools/cli/test/data/split/dev/openapi-v2-2025-01-01.json index a33db87a78..2758629645 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2025-01-01.json +++ b/tools/cli/test/data/split/dev/openapi-v2-2025-01-01.json @@ -780,7 +780,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -915,7 +915,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -1147,7 +1147,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1317,7 +1317,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" }, { "lang": "cURL", @@ -1534,7 +1534,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1813,7 +1813,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -2080,7 +2080,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}\"\n -d { }" }, { "lang": "cURL", @@ -2156,7 +2156,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2314,7 +2314,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2677,7 +2677,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2900,7 +2900,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -2985,7 +2985,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3305,7 +3305,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3522,7 +3522,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3688,7 +3688,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3769,7 +3769,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3895,7 +3895,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -4018,7 +4018,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -4211,7 +4211,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4528,7 +4528,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4655,7 +4655,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4893,7 +4893,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -5053,7 +5053,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -5218,7 +5218,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\"\n -d { }" }, { "lang": "cURL", @@ -5298,7 +5298,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5542,7 +5542,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5704,7 +5704,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5944,7 +5944,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -6324,7 +6324,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6486,7 +6486,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6980,7 +6980,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -7072,7 +7072,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\"\n -d { }" }, { "lang": "cURL", @@ -7161,7 +7161,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7804,7 +7804,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" }, { "lang": "cURL", @@ -7896,7 +7896,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned\"\n -d { }" }, { "lang": "cURL", @@ -7979,7 +7979,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin\"\n -d { }" }, { "lang": "cURL", @@ -8070,7 +8070,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -8443,7 +8443,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -8676,7 +8676,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8857,7 +8857,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"\n -d { }" }, { "lang": "cURL", @@ -9032,7 +9032,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -9205,7 +9205,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -9594,7 +9594,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9835,7 +9835,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -10000,7 +10000,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs\"\n -d { }" }, { "lang": "cURL", @@ -10066,7 +10066,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -10241,7 +10241,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -10555,7 +10555,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10639,7 +10639,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10816,7 +10816,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\"\n -d { }" }, { "lang": "cURL", @@ -11242,7 +11242,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"\n -d { }" }, { "lang": "cURL", @@ -11526,7 +11526,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -11675,7 +11675,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -12024,7 +12024,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -12413,7 +12413,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion\"\n -d { }" }, { "lang": "cURL", @@ -12494,7 +12494,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\"\n -d { }" }, { "lang": "cURL", @@ -12833,7 +12833,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -13137,7 +13137,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -13275,7 +13275,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -13501,7 +13501,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -13649,7 +13649,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -13869,7 +13869,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -14191,7 +14191,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -14583,7 +14583,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -14839,7 +14839,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -15009,7 +15009,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -15384,7 +15384,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -15531,7 +15531,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -16638,7 +16638,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -16741,7 +16741,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -16885,7 +16885,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -16953,7 +16953,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -17176,7 +17176,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -17580,7 +17580,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -17658,7 +17658,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations\"\n -d { }" }, { "lang": "cURL", @@ -17736,7 +17736,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -17944,7 +17944,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -18119,7 +18119,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"\n -d { }" }, { "lang": "cURL", @@ -18173,7 +18173,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\"\n -d { }" }, { "lang": "cURL", @@ -18227,7 +18227,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -18398,7 +18398,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -18678,7 +18678,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -18907,7 +18907,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -19036,7 +19036,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -19259,7 +19259,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -19497,7 +19497,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\"\n -d { }" }, { "lang": "cURL", @@ -19569,7 +19569,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -19911,7 +19911,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\"\n -d { }" }, { "lang": "cURL", @@ -19983,7 +19983,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -20112,7 +20112,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -20264,7 +20264,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -20511,7 +20511,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -20859,7 +20859,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -21184,7 +21184,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -21325,7 +21325,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -23084,7 +23084,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -23157,7 +23157,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"\n -d { }" }, { "lang": "cURL", @@ -23229,7 +23229,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -23433,7 +23433,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -23601,7 +23601,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -23990,7 +23990,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -24219,7 +24219,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -24355,7 +24355,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -24573,7 +24573,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -24656,7 +24656,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -24791,7 +24791,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -24923,7 +24923,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -25154,7 +25154,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -25409,7 +25409,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -25656,7 +25656,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" }, { "lang": "cURL", @@ -25739,7 +25739,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\"\n -d { }" }, { "lang": "cURL", @@ -25977,7 +25977,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start\"\n -d { }" }, { "lang": "cURL", @@ -26058,7 +26058,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\"\n -d { }" }, { "lang": "cURL", @@ -26296,7 +26296,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -26463,7 +26463,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -26589,7 +26589,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -26771,7 +26771,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -27082,7 +27082,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -27220,7 +27220,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/uss\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}/uss\"\n -d { }" }, { "lang": "cURL", @@ -27452,7 +27452,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/uss/{name}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/groups/{groupId}/uss/{name}\"\n -d { }" }, { "lang": "cURL", @@ -27517,7 +27517,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}:migrate\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/groups/{groupId}:migrate\"\n -d { }" }, { "lang": "cURL", @@ -27672,7 +27672,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -27877,7 +27877,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -28017,7 +28017,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -28246,7 +28246,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -28424,7 +28424,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -28667,7 +28667,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -29224,7 +29224,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -29296,7 +29296,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -29522,7 +29522,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -30154,7 +30154,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -30289,7 +30289,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -30503,7 +30503,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -30658,7 +30658,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" }, { "lang": "cURL", @@ -30868,7 +30868,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -31023,7 +31023,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -31346,7 +31346,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PATCH \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -31528,7 +31528,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -31849,7 +31849,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X PUT \"/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -31960,7 +31960,7 @@ { "lang": "cURL", "label": "curl", - "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n --header \"Content-Type: application/vnd.atlas.2025-01-01+json\" \\\n -X POST \"/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", diff --git a/tools/cli/test/data/split/dev/openapi-v2-2025-01-01.yaml b/tools/cli/test/data/split/dev/openapi-v2-2025-01-01.yaml index 9d72f3d3ba..133294c253 100644 --- a/tools/cli/test/data/split/dev/openapi-v2-2025-01-01.yaml +++ b/tools/cli/test/data/split/dev/openapi-v2-2025-01-01.yaml @@ -30904,6 +30904,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI @@ -30991,6 +30992,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI @@ -31145,6 +31147,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PUT "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI @@ -31259,6 +31262,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" -d { } - label: Atlas CLI @@ -31406,6 +31410,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI @@ -31587,6 +31592,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups" -d { } - label: Atlas CLI @@ -31711,6 +31717,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI @@ -31760,6 +31767,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI @@ -31857,6 +31865,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI @@ -32101,6 +32110,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI @@ -32260,6 +32270,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -32322,6 +32333,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI @@ -32538,6 +32550,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI @@ -32676,6 +32689,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI @@ -32783,6 +32797,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -32837,6 +32852,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -32918,6 +32934,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI @@ -32997,6 +33014,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI @@ -33122,6 +33140,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI @@ -33332,6 +33351,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI @@ -33414,6 +33434,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI @@ -33571,6 +33592,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI @@ -33795,6 +33817,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI @@ -33956,6 +33979,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI @@ -34217,6 +34241,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI @@ -34376,6 +34401,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -34632,6 +34658,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI @@ -34739,6 +34766,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI @@ -34913,6 +34941,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -35130,6 +35159,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI @@ -35189,6 +35219,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI @@ -35613,6 +35644,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI @@ -35675,6 +35707,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI @@ -35731,6 +35764,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" -d { } - label: Atlas CLI @@ -35792,6 +35826,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI @@ -36045,6 +36080,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI @@ -36200,6 +36236,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI @@ -36320,6 +36357,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI @@ -36441,6 +36479,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI @@ -36553,6 +36592,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI @@ -36742,6 +36782,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI @@ -36977,6 +37018,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI @@ -37087,6 +37129,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI @@ -37131,6 +37174,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI @@ -37248,6 +37292,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI @@ -37459,6 +37504,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -37515,6 +37561,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI @@ -37632,6 +37679,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" -d { } - label: Atlas CLI @@ -37914,6 +37962,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" -d { } - label: Atlas CLI @@ -38105,6 +38154,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" -d { } - label: Atlas CLI @@ -38210,6 +38260,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI @@ -38442,6 +38493,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI @@ -38546,6 +38598,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" -d { } - label: Atlas CLI @@ -38600,6 +38653,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" -d { } - label: Atlas CLI @@ -38783,6 +38837,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI @@ -38835,6 +38890,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI @@ -38977,6 +39033,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI @@ -39135,6 +39192,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI @@ -39263,6 +39321,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI @@ -39409,6 +39468,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI @@ -39505,6 +39565,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI @@ -39648,6 +39709,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI @@ -39885,6 +39947,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI @@ -40132,6 +40195,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI @@ -40338,6 +40402,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI @@ -40451,6 +40516,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI @@ -40712,6 +40778,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI @@ -40807,6 +40874,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI @@ -41535,6 +41603,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -41603,6 +41672,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI @@ -41697,6 +41767,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -41742,6 +41813,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI @@ -41893,6 +41965,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -42217,6 +42290,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI @@ -42275,6 +42349,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI @@ -42358,6 +42433,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI @@ -42409,6 +42485,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI @@ -42574,6 +42651,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI @@ -42610,6 +42688,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI @@ -42646,6 +42725,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI @@ -42755,6 +42835,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI @@ -42935,6 +43016,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI @@ -43086,6 +43168,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI @@ -43171,6 +43254,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI @@ -43320,6 +43404,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI @@ -43474,6 +43559,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI @@ -43522,6 +43608,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI @@ -43747,6 +43834,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI @@ -43979,6 +44067,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI @@ -44153,6 +44242,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI @@ -44236,6 +44326,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI @@ -44341,6 +44432,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI @@ -44509,6 +44601,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI @@ -44598,6 +44691,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI @@ -44705,6 +44799,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI @@ -45925,6 +46020,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -45973,6 +46069,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI @@ -46022,6 +46119,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI @@ -46152,6 +46250,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI @@ -46260,6 +46359,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI @@ -46517,6 +46617,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI @@ -46668,6 +46769,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI @@ -46754,6 +46856,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serviceAccounts" -d { } - label: Atlas CLI @@ -46895,6 +46998,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -46950,6 +47054,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -47037,6 +47142,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI @@ -47120,6 +47226,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI @@ -47270,6 +47377,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI @@ -47436,6 +47544,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI @@ -47597,6 +47706,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI @@ -47651,6 +47761,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" -d { } - label: Atlas CLI @@ -47805,6 +47916,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" -d { } - label: Atlas CLI @@ -47858,6 +47970,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" -d { } - label: Atlas CLI @@ -48006,6 +48119,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI @@ -48118,6 +48232,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -48202,6 +48317,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI @@ -48322,6 +48438,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI @@ -48522,6 +48639,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PUT "/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -48608,6 +48726,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}/uss" -d { } - label: Atlas CLI @@ -48761,6 +48880,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/groups/{groupId}/uss/{name}" -d { } - label: Atlas CLI @@ -48804,6 +48924,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/groups/{groupId}:migrate" -d { } - label: Atlas CLI @@ -48952,6 +49073,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/orgs" -d { } - label: Atlas CLI @@ -49090,6 +49212,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI @@ -49178,6 +49301,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI @@ -49330,6 +49454,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI @@ -49442,6 +49567,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI @@ -49604,6 +49730,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI @@ -49976,6 +50103,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -50023,6 +50151,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI @@ -50172,6 +50301,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI @@ -50594,6 +50724,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI @@ -50679,6 +50810,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/serviceAccounts" -d { } - label: Atlas CLI @@ -50817,6 +50949,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI @@ -50915,6 +51048,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" -d { } - label: Atlas CLI @@ -51050,6 +51184,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI @@ -51148,6 +51283,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI @@ -51312,6 +51448,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PATCH "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI @@ -51431,6 +51568,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI @@ -51689,6 +51827,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X PUT "/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI @@ -51769,6 +51908,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ + --header "Content-Type: application/vnd.atlas.2025-01-01+json" \ -X POST "/api/atlas/v2/users" -d { } - label: Atlas CLI