diff --git a/tools/cli/internal/openapi/filter/code_sample.go b/tools/cli/internal/openapi/filter/code_sample.go index 5f6036e0ed..5b0087f68c 100644 --- a/tools/cli/internal/openapi/filter/code_sample.go +++ b/tools/cli/internal/openapi/filter/code_sample.go @@ -61,12 +61,12 @@ func (f *CodeSampleFilter) newCurlCodeSamplesForOperation(pathName, opMethod str switch opMethod { case "GET": - source += "-X " + opMethod + " \"" + pathName + "?pretty=true\"" + source += "-X " + opMethod + " \"https://cloud.mongodb.com" + pathName + "?pretty=true\"" case "DELETE": - source += "-X " + opMethod + " \"" + pathName + "\"" + source += "-X " + opMethod + " \"https://cloud.mongodb.com" + pathName + "\"" case "POST", "PATCH", "PUT": source += "--header \"Content-Type: application/vnd.atlas." + version + "+json\" \\\n " - source += "-X " + opMethod + " \"" + pathName + "\"\n " + source += "-X " + opMethod + " \"https://cloud.mongodb.com" + pathName + "\"\n " source += "-d " + "{ }" } diff --git a/tools/cli/internal/openapi/filter/code_sample_test.go b/tools/cli/internal/openapi/filter/code_sample_test.go index 10ffb6e214..5cdc8e9c77 100644 --- a/tools/cli/internal/openapi/filter/code_sample_test.go +++ b/tools/cli/internal/openapi/filter/code_sample_test.go @@ -34,7 +34,7 @@ func TestCodeSampleFilter(t *testing.T) { name: "stable api", version: "2025-01-01", oas: &openapi3.T{ - Paths: openapi3.NewPaths(openapi3.WithPath("test", &openapi3.PathItem{ + Paths: openapi3.NewPaths(openapi3.WithPath("/test", &openapi3.PathItem{ Get: &openapi3.Operation{ OperationID: "testOperationID", Summary: "testSummary", @@ -57,7 +57,7 @@ func TestCodeSampleFilter(t *testing.T) { })), }, expectedOas: &openapi3.T{ - Paths: openapi3.NewPaths(openapi3.WithPath("test", &openapi3.PathItem{ + Paths: openapi3.NewPaths(openapi3.WithPath("/test", &openapi3.PathItem{ Get: &openapi3.Operation{ OperationID: "testOperationID", Summary: "testSummary", @@ -80,7 +80,7 @@ func TestCodeSampleFilter(t *testing.T) { 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 GET \"test?pretty=true\"", + "--header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { Lang: "cURL", @@ -97,7 +97,7 @@ func TestCodeSampleFilter(t *testing.T) { name: "preview api", version: "preview", oas: &openapi3.T{ - Paths: openapi3.NewPaths(openapi3.WithPath("test", &openapi3.PathItem{ + Paths: openapi3.NewPaths(openapi3.WithPath("/test", &openapi3.PathItem{ Get: &openapi3.Operation{ OperationID: "testOperationID", Summary: "testSummary", @@ -120,7 +120,7 @@ func TestCodeSampleFilter(t *testing.T) { })), }, expectedOas: &openapi3.T{ - Paths: openapi3.NewPaths(openapi3.WithPath("test", &openapi3.PathItem{ + Paths: openapi3.NewPaths(openapi3.WithPath("/test", &openapi3.PathItem{ Get: &openapi3.Operation{ OperationID: "testOperationID", Summary: "testSummary", @@ -143,7 +143,7 @@ func TestCodeSampleFilter(t *testing.T) { Lang: "cURL", Label: "curl", Source: "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n " + - "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"test?pretty=true\"", + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { Lang: "cURL", @@ -160,7 +160,7 @@ func TestCodeSampleFilter(t *testing.T) { name: "upcoming api", version: "2025-01-01.upcoming", oas: &openapi3.T{ - Paths: openapi3.NewPaths(openapi3.WithPath("test", &openapi3.PathItem{ + Paths: openapi3.NewPaths(openapi3.WithPath("/test", &openapi3.PathItem{ Get: &openapi3.Operation{ OperationID: "testOperationID", Summary: "testSummary", @@ -183,7 +183,7 @@ func TestCodeSampleFilter(t *testing.T) { })), }, expectedOas: &openapi3.T{ - Paths: openapi3.NewPaths(openapi3.WithPath("test", &openapi3.PathItem{ + Paths: openapi3.NewPaths(openapi3.WithPath("/test", &openapi3.PathItem{ Get: &openapi3.Operation{ OperationID: "testOperationID", Summary: "testSummary", @@ -206,7 +206,7 @@ func TestCodeSampleFilter(t *testing.T) { Lang: "cURL", Label: "curl", Source: "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n " + - "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"test?pretty=true\"", + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, { Lang: "cURL", 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 cdafb2f5b4..2abce759e1 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 @@ -243,7 +243,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 GET \"/api/atlas/v2?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", @@ -300,7 +300,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 GET \"/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" }, { "lang": "cURL", @@ -363,7 +363,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 GET \"/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { "lang": "cURL", @@ -426,7 +426,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 GET \"/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { "lang": "cURL", @@ -480,7 +480,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", @@ -546,7 +546,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" }, { "lang": "cURL", @@ -619,7 +619,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { "lang": "cURL", @@ -690,7 +690,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" }, { "lang": "cURL", @@ -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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -835,7 +835,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -980,7 +980,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" }, { "lang": "cURL", @@ -1054,7 +1054,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1237,7 +1237,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" }, { "lang": "cURL", @@ -1311,7 +1311,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1453,7 +1453,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" }, { "lang": "cURL", @@ -1519,7 +1519,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 GET \"/api/atlas/v2/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -1679,7 +1679,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 GET \"/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" }, { "lang": "cURL", @@ -1739,7 +1739,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 DELETE \"/api/atlas/v2/groups/{groupId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", @@ -1797,7 +1797,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 GET \"/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"\n -d { }" }, { "lang": "cURL", @@ -1942,7 +1942,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 GET \"/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2105,7 +2105,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 DELETE \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { "lang": "cURL", @@ -2181,7 +2181,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" }, { "lang": "cURL", @@ -2258,7 +2258,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" }, { "lang": "cURL", @@ -2324,7 +2324,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2463,7 +2463,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 DELETE \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { "lang": "cURL", @@ -2534,7 +2534,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -2783,7 +2783,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -2865,7 +2865,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 GET \"/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -2937,7 +2937,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3104,7 +3104,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" }, { "lang": "cURL", @@ -3174,7 +3174,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 GET \"/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3316,7 +3316,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 DELETE \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3544,7 +3544,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 GET \"/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -3670,7 +3670,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 GET \"/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -3803,7 +3803,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -3953,7 +3953,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 DELETE \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" }, { "lang": "cURL", @@ -4022,7 +4022,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" }, { "lang": "cURL", @@ -4084,7 +4084,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 GET \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4227,7 +4227,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4378,7 +4378,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 DELETE \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" }, { "lang": "cURL", @@ -4447,7 +4447,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -4611,7 +4611,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 GET \"/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -4777,7 +4777,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5021,7 +5021,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { "lang": "cURL", @@ -5096,7 +5096,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5264,7 +5264,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5423,7 +5423,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" }, { "lang": "cURL", @@ -5501,7 +5501,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -5672,7 +5672,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" }, { "lang": "cURL", @@ -5751,7 +5751,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -5821,7 +5821,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" }, { "lang": "cURL", @@ -5890,7 +5890,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6055,7 +6055,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6217,7 +6217,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" }, { "lang": "cURL", @@ -6299,7 +6299,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -6371,7 +6371,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" }, { "lang": "cURL", @@ -6455,7 +6455,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -6537,7 +6537,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -6883,7 +6883,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" }, { "lang": "cURL", @@ -6967,7 +6967,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" }, { "lang": "cURL", @@ -7039,7 +7039,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -7123,7 +7123,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -7202,7 +7202,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" }, { "lang": "cURL", @@ -7290,7 +7290,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -7477,7 +7477,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" }, { "lang": "cURL", @@ -7567,7 +7567,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" }, { "lang": "cURL", @@ -7652,7 +7652,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -7829,7 +7829,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" }, { "lang": "cURL", @@ -7904,7 +7904,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8085,7 +8085,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -8433,7 +8433,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -8633,7 +8633,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -8721,7 +8721,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" }, { "lang": "cURL", @@ -8810,7 +8810,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -8992,7 +8992,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" }, { "lang": "cURL", @@ -9069,7 +9069,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9231,7 +9231,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -9484,7 +9484,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -9651,7 +9651,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" }, { "lang": "cURL", @@ -9724,7 +9724,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" }, { "lang": "cURL", @@ -9796,7 +9796,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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-01-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -10211,7 +10211,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -10296,7 +10296,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -10376,7 +10376,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -10536,7 +10536,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" }, { "lang": "cURL", @@ -10654,7 +10654,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" }, { "lang": "cURL", @@ -10739,7 +10739,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 GET \"/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -10883,7 +10883,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 GET \"/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" }, { "lang": "cURL", @@ -10962,7 +10962,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 DELETE \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { "lang": "cURL", @@ -11030,7 +11030,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 GET \"/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -11181,7 +11181,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -11331,7 +11331,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 DELETE \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" }, { "lang": "cURL", @@ -11398,7 +11398,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -11558,7 +11558,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -11699,7 +11699,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { "lang": "cURL", @@ -11766,7 +11766,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -11925,7 +11925,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" }, { "lang": "cURL", @@ -12003,7 +12003,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" }, { "lang": "cURL", @@ -12082,7 +12082,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -12271,7 +12271,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -12337,7 +12337,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -12649,7 +12649,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 DELETE \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" }, { "lang": "cURL", @@ -12726,7 +12726,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -12901,7 +12901,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -13116,7 +13116,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" }, { "lang": "cURL", @@ -13236,7 +13236,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" }, { "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.2023-01-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\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-01-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -13607,7 +13607,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 DELETE \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" }, { "lang": "cURL", @@ -13686,7 +13686,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -13819,7 +13819,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 GET \"/api/atlas/v2/groups/{groupId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true\"" }, { "lang": "cURL", @@ -13900,7 +13900,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 GET \"/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -13960,7 +13960,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" }, { "lang": "cURL", @@ -14066,7 +14066,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -14175,7 +14175,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -14276,7 +14276,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" }, { "lang": "cURL", @@ -14348,7 +14348,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 GET \"/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" }, { "lang": "cURL", @@ -14433,7 +14433,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 DELETE \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { "lang": "cURL", @@ -14516,7 +14516,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 GET \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -14795,7 +14795,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 GET \"/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -15005,7 +15005,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 DELETE \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -15077,7 +15077,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 GET \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -15221,7 +15221,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 GET \"/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" }, { "lang": "cURL", @@ -15290,7 +15290,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 GET \"/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" }, { "lang": "cURL", @@ -15377,7 +15377,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 DELETE \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { "lang": "cURL", @@ -15465,7 +15465,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 GET \"/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -15802,7 +15802,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" }, { "lang": "cURL", @@ -15868,7 +15868,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -15988,7 +15988,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 DELETE \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { "lang": "cURL", @@ -16043,7 +16043,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 GET \"/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -16274,7 +16274,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 GET \"/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" }, { "lang": "cURL", @@ -16331,7 +16331,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 DELETE \"/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -16506,7 +16506,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 GET \"/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" }, { "lang": "cURL", @@ -16589,7 +16589,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 GET \"/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -16740,7 +16740,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 DELETE \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { "lang": "cURL", @@ -16810,7 +16810,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 GET \"/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -16957,7 +16957,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\"\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-01-01+json\" \\\n -X DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { "lang": "cURL", @@ -17165,7 +17165,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -17324,7 +17324,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" }, { "lang": "cURL", @@ -17415,7 +17415,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -17650,7 +17650,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" }, { "lang": "cURL", @@ -17735,7 +17735,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" }, { "lang": "cURL", @@ -17818,7 +17818,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -18033,7 +18033,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\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.2023-01-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -18334,7 +18334,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -18412,7 +18412,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -18576,7 +18576,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" }, { "lang": "cURL", @@ -18660,7 +18660,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" }, { "lang": "cURL", @@ -18745,7 +18745,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -18943,7 +18943,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -19038,7 +19038,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -19100,7 +19100,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 GET \"/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -19246,7 +19246,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -19387,7 +19387,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" }, { "lang": "cURL", @@ -19460,7 +19460,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -19526,7 +19526,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 GET \"/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" }, { "lang": "cURL", @@ -19594,7 +19594,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" }, { "lang": "cURL", @@ -19671,7 +19671,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" }, { "lang": "cURL", @@ -19748,7 +19748,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" }, { "lang": "cURL", @@ -19864,7 +19864,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -19941,7 +19941,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" }, { "lang": "cURL", @@ -20015,7 +20015,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" }, { "lang": "cURL", @@ -20140,7 +20140,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -20372,7 +20372,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -20458,7 +20458,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -20568,7 +20568,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" }, { "lang": "cURL", @@ -20694,7 +20694,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" }, { "lang": "cURL", @@ -20757,7 +20757,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 DELETE \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { "lang": "cURL", @@ -20818,7 +20818,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 GET \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -21102,7 +21102,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 GET \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" }, { "lang": "cURL", @@ -21168,7 +21168,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 GET \"/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -21321,7 +21321,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -21492,7 +21492,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -21573,7 +21573,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -21655,7 +21655,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -21724,7 +21724,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -21872,7 +21872,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 DELETE \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { "lang": "cURL", @@ -21945,7 +21945,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -22089,7 +22089,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 GET \"/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -22236,7 +22236,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 GET \"/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -22394,7 +22394,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 DELETE \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -22542,7 +22542,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -22665,7 +22665,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { "lang": "cURL", @@ -22722,7 +22722,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -22862,7 +22862,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" }, { "lang": "cURL", @@ -22946,7 +22946,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 GET \"/api/atlas/v2/groups/{groupId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true\"" }, { "lang": "cURL", @@ -23018,7 +23018,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 DELETE \"/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -23184,7 +23184,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 GET \"/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -23325,7 +23325,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 DELETE \"/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", @@ -23389,7 +23389,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 GET \"/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -23534,7 +23534,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -23677,7 +23677,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { "lang": "cURL", @@ -23748,7 +23748,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -23915,7 +23915,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -24101,7 +24101,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" }, { "lang": "cURL", @@ -24186,7 +24186,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -24335,7 +24335,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 GET \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" }, { "lang": "cURL", @@ -24440,7 +24440,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 GET \"/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" }, { "lang": "cURL", @@ -24521,7 +24521,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 GET \"/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -24584,7 +24584,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 GET \"/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" }, { "lang": "cURL", @@ -24664,7 +24664,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 GET \"/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" }, { "lang": "cURL", @@ -24739,7 +24739,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 GET \"/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -24955,7 +24955,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 DELETE \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -25025,7 +25025,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 GET \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -25257,7 +25257,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" }, { "lang": "cURL", @@ -25317,7 +25317,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" }, { "lang": "cURL", @@ -25395,7 +25395,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" }, { "lang": "cURL", @@ -25466,7 +25466,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" }, { "lang": "cURL", @@ -25529,7 +25529,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 GET \"/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" }, { "lang": "cURL", @@ -25586,7 +25586,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 DELETE \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -25718,7 +25718,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 GET \"/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -25866,7 +25866,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 GET \"/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -26021,7 +26021,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" }, { "lang": "cURL", @@ -26100,7 +26100,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { "lang": "cURL", @@ -26177,7 +26177,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -26356,7 +26356,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -26538,7 +26538,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" }, { "lang": "cURL", @@ -26610,7 +26610,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 GET \"/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" }, { "lang": "cURL", @@ -26685,7 +26685,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 DELETE \"/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", @@ -26906,7 +26906,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 GET \"/api/atlas/v2/users/byName/{userName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true\"" }, { "lang": "cURL", @@ -26975,7 +26975,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 GET \"/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { "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 0b868b9db5..dbeaff795d 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 @@ -28299,7 +28299,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSystemStatus --help @@ -28336,7 +28336,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationMatchersFieldNames --help @@ -28374,7 +28374,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClustersForAllProjects --help @@ -28412,7 +28412,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/eventTypes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listEventTypes --help @@ -28448,7 +28448,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: Atlas CLI lang: cURL source: atlas api deleteFederationApp --help @@ -28489,7 +28489,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listConnectedOrgConfigs --help @@ -28538,7 +28538,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api removeConnectedOrgConfig --help @@ -28586,7 +28586,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getConnectedOrgConfig --help @@ -28642,7 +28642,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -28683,7 +28683,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listRoleMappings --help @@ -28730,7 +28730,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI lang: cURL @@ -28779,7 +28779,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: Atlas CLI lang: cURL source: atlas api deleteRoleMapping --help @@ -28828,7 +28828,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRoleMapping --help @@ -28885,7 +28885,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI lang: cURL @@ -28949,7 +28949,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIdentityProviders --help @@ -28998,7 +28998,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProvider --help @@ -29056,7 +29056,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI lang: cURL @@ -29097,7 +29097,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProviderMetadata --help @@ -29137,7 +29137,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjects --help @@ -29195,7 +29195,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" -d { } - label: Atlas CLI lang: cURL @@ -29234,7 +29234,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: Atlas CLI lang: cURL source: atlas api deleteProject --help @@ -29271,7 +29271,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProject --help @@ -29320,7 +29320,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI lang: cURL @@ -29363,7 +29363,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectIpAccessLists --help @@ -29418,7 +29418,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -29473,7 +29473,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectIpAccessList --help @@ -29523,7 +29523,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpList --help @@ -29573,7 +29573,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpAccessListStatus --help @@ -29615,7 +29615,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurations --help @@ -29663,7 +29663,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI lang: cURL @@ -29713,7 +29713,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: Atlas CLI lang: cURL source: atlas api deleteAlertConfiguration --help @@ -29763,7 +29763,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlertConfiguration --help @@ -29823,7 +29823,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -29886,7 +29886,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -29941,7 +29941,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertsByAlertConfigurationId --help @@ -29994,7 +29994,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlerts --help @@ -30044,7 +30044,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlert --help @@ -30104,7 +30104,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI lang: cURL @@ -30159,7 +30159,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationsByAlertId --help @@ -30201,7 +30201,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectApiKeys --help @@ -30244,7 +30244,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -30295,7 +30295,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectApiKey --help @@ -30352,7 +30352,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -30407,7 +30407,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -30444,7 +30444,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAuditingConfiguration --help @@ -30489,7 +30489,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI lang: cURL @@ -30526,7 +30526,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAWSCustomDNS --help @@ -30569,7 +30569,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI lang: cURL @@ -30610,7 +30610,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listExportBuckets --help @@ -30661,7 +30661,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI lang: cURL @@ -30712,7 +30712,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI lang: cURL source: atlas api deleteExportBucket --help @@ -30759,7 +30759,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getExportBucket --help @@ -30799,7 +30799,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataProtectionSettings --help @@ -30856,7 +30856,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI lang: cURL @@ -30894,7 +30894,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderAccessRoles --help @@ -30940,7 +30940,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI lang: cURL @@ -30994,7 +30994,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: Atlas CLI lang: cURL source: atlas api deauthorizeCloudProviderAccessRole --help @@ -31039,7 +31039,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCloudProviderAccessRole --help @@ -31098,7 +31098,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI lang: cURL @@ -31145,7 +31145,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClusters --help @@ -31198,7 +31198,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI lang: cURL @@ -31255,7 +31255,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: Atlas CLI lang: cURL source: atlas api deleteCluster --help @@ -31305,7 +31305,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCluster --help @@ -31365,7 +31365,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI lang: cURL @@ -31415,7 +31415,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupExportJobs --help @@ -31472,7 +31472,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI lang: cURL @@ -31523,7 +31523,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupExportJob --help @@ -31571,7 +31571,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupRestoreJobs --help @@ -31632,7 +31632,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -31689,7 +31689,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: Atlas CLI lang: cURL source: atlas api cancelBackupRestoreJob --help @@ -31742,7 +31742,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupRestoreJob --help @@ -31789,7 +31789,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: Atlas CLI lang: cURL source: atlas api deleteAllBackupSchedules --help @@ -31835,7 +31835,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupSchedule --help @@ -31894,7 +31894,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI lang: cURL @@ -31946,7 +31946,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listReplicaSetBackups --help @@ -32003,7 +32003,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI lang: cURL @@ -32060,7 +32060,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteReplicaSetBackup --help @@ -32115,7 +32115,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getReplicaSetBackup --help @@ -32178,7 +32178,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -32233,7 +32233,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteShardedClusterBackup --help @@ -32288,7 +32288,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getShardedClusterBackup --help @@ -32335,7 +32335,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listShardedClusterBackups --help @@ -32396,7 +32396,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI lang: cURL @@ -32456,7 +32456,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI lang: cURL @@ -32504,7 +32504,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackupRestoreJobs --help @@ -32560,7 +32560,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackupRestoreJob --help @@ -32607,7 +32607,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackups --help @@ -32663,7 +32663,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackup --help @@ -32712,7 +32712,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupCheckpoints --help @@ -32771,7 +32771,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupCheckpoint --help @@ -32832,7 +32832,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI lang: cURL @@ -32897,7 +32897,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexesDeprecated --help @@ -32958,7 +32958,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndexDeprecated --help @@ -33016,7 +33016,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndexDeprecated --help @@ -33086,7 +33086,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI lang: cURL @@ -33137,7 +33137,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedNamespace --help @@ -33187,7 +33187,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: Atlas CLI lang: cURL source: atlas api deleteAllCustomZoneMappings --help @@ -33246,7 +33246,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI lang: cURL @@ -33309,7 +33309,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI lang: cURL source: atlas api deleteManagedNamespace --help @@ -33370,7 +33370,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI lang: cURL @@ -33493,7 +33493,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI lang: cURL @@ -33545,7 +33545,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOnlineArchives --help @@ -33606,7 +33606,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI lang: cURL @@ -33666,7 +33666,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: Atlas CLI lang: cURL source: atlas api deleteOnlineArchive --help @@ -33726,7 +33726,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOnlineArchive --help @@ -33796,7 +33796,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI lang: cURL @@ -33872,7 +33872,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadOnlineArchiveQueryLogs --help @@ -33924,7 +33924,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: Atlas CLI lang: cURL source: atlas api endOutageSimulation --help @@ -33975,7 +33975,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOutageSimulation --help @@ -34032,7 +34032,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI lang: cURL @@ -34084,7 +34084,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterAdvancedConfiguration --help @@ -34146,7 +34146,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI lang: cURL @@ -34193,7 +34193,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI lang: cURL @@ -34257,7 +34257,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupRestoreJobs --help @@ -34312,7 +34312,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -34373,7 +34373,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupRestoreJob --help @@ -34421,7 +34421,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchDeployment --help @@ -34469,7 +34469,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchDeployment --help @@ -34527,7 +34527,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -34586,7 +34586,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -34637,7 +34637,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshotSchedule --help @@ -34693,7 +34693,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI lang: cURL @@ -34753,7 +34753,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacySnapshots --help @@ -34810,7 +34810,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteLegacySnapshot --help @@ -34864,7 +34864,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshot --help @@ -34926,7 +34926,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -34972,7 +34972,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterStatus --help @@ -35053,7 +35053,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostLogs --help @@ -35105,7 +35105,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderRegions --help @@ -35157,7 +35157,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI lang: cURL @@ -35210,7 +35210,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI lang: cURL @@ -35263,7 +35263,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainerByCloudProvider --help @@ -35314,7 +35314,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI lang: cURL @@ -35367,7 +35367,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/containers/{containerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringContainer --help @@ -35412,7 +35412,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringContainer --help @@ -35473,7 +35473,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI lang: cURL @@ -35513,7 +35513,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainers --help @@ -35551,7 +35551,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCustomDatabaseRoles --help @@ -35602,7 +35602,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI lang: cURL @@ -35649,7 +35649,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: Atlas CLI lang: cURL source: atlas api deleteCustomDatabaseRole --help @@ -35692,7 +35692,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCustomDatabaseRole --help @@ -35749,7 +35749,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI lang: cURL @@ -35797,7 +35797,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listFederatedDatabases --help @@ -35846,7 +35846,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI lang: cURL @@ -35889,7 +35889,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteFederatedDatabase --help @@ -35933,7 +35933,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederatedDatabase --help @@ -35990,7 +35990,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -36037,7 +36037,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimits --help @@ -36097,7 +36097,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteOneDataFederationInstanceQueryLimit --help @@ -36157,7 +36157,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimit --help @@ -36228,7 +36228,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -36295,7 +36295,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadFederatedDatabaseQueryLogs --help @@ -36334,7 +36334,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUsers --help @@ -36476,7 +36476,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI lang: cURL @@ -36543,7 +36543,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: Atlas CLI lang: cURL source: atlas api deleteDatabaseUser --help @@ -36606,7 +36606,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseUser --help @@ -36683,7 +36683,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI lang: cURL @@ -36731,7 +36731,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUserCertificates --help @@ -36797,7 +36797,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI lang: cURL @@ -36880,7 +36880,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByClusterName --help @@ -36959,7 +36959,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByHostname --help @@ -36998,7 +36998,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRest --help @@ -37059,7 +37059,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI lang: cURL @@ -37104,7 +37104,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help @@ -37155,7 +37155,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI lang: cURL @@ -37216,7 +37216,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help @@ -37268,7 +37268,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpoint --help @@ -37361,7 +37361,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectEvents --help @@ -37417,7 +37417,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectEvent --help @@ -37455,7 +37455,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listMetricTypes --help @@ -37523,7 +37523,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIndexMetrics --help @@ -37590,7 +37590,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIndexMetrics --help @@ -37656,7 +37656,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMeasurements --help @@ -37699,7 +37699,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listThirdPartyIntegrations --help @@ -37757,7 +37757,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: Atlas CLI lang: cURL source: atlas api deleteThirdPartyIntegration --help @@ -37814,7 +37814,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getThirdPartyIntegration --help @@ -37884,7 +37884,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -37953,7 +37953,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -37999,7 +37999,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectInvitations --help @@ -38048,7 +38048,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -38094,7 +38094,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -38141,7 +38141,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectInvitation --help @@ -38189,7 +38189,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectInvitation --help @@ -38246,7 +38246,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -38286,7 +38286,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllIPAddresses --help @@ -38330,7 +38330,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectLimits --help @@ -38406,7 +38406,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectLimit --help @@ -38483,7 +38483,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLimit --help @@ -38571,7 +38571,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -38632,7 +38632,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI lang: cURL @@ -38675,7 +38675,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushMigration --help @@ -38717,7 +38717,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI lang: cURL @@ -38771,7 +38771,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI lang: cURL @@ -38824,7 +38824,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getValidationStatus --help @@ -38859,7 +38859,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/maintenanceWindow" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: Atlas CLI lang: cURL source: atlas api resetMaintenanceWindow --help @@ -38894,7 +38894,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMaintenanceWindow --help @@ -38938,7 +38938,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI lang: cURL @@ -38975,7 +38975,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI lang: cURL @@ -39012,7 +39012,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI lang: cURL @@ -39049,7 +39049,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedSlowMs --help @@ -39085,7 +39085,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: Atlas CLI lang: cURL source: atlas api disableSlowOperationThresholding --help @@ -39122,7 +39122,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI lang: cURL @@ -39200,7 +39200,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLTSVersions --help @@ -39251,7 +39251,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringConnections --help @@ -39303,7 +39303,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI lang: cURL @@ -39351,7 +39351,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/peers/{peerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringConnection --help @@ -39397,7 +39397,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringConnection --help @@ -39455,7 +39455,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI lang: cURL @@ -39495,7 +39495,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelines --help @@ -39541,7 +39541,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI lang: cURL @@ -39588,7 +39588,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: Atlas CLI lang: cURL source: atlas api deletePipeline --help @@ -39634,7 +39634,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipeline --help @@ -39691,7 +39691,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI lang: cURL @@ -39741,7 +39741,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSchedules --help @@ -39798,7 +39798,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSnapshots --help @@ -39846,7 +39846,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI lang: cURL @@ -39895,7 +39895,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI lang: cURL @@ -39953,7 +39953,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineRuns --help @@ -40010,7 +40010,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: Atlas CLI lang: cURL source: atlas api deletePipelineRunDataset --help @@ -40066,7 +40066,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipelineRun --help @@ -40121,7 +40121,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI lang: cURL @@ -40171,7 +40171,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPrivateEndpointServices --help @@ -40227,7 +40227,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpointService --help @@ -40284,7 +40284,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpointService --help @@ -40354,7 +40354,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -40418,7 +40418,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpoint --help @@ -40482,7 +40482,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpoint --help @@ -40529,7 +40529,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI lang: cURL @@ -40568,7 +40568,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRegionalizedPrivateEndpointSetting --help @@ -40613,7 +40613,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI lang: cURL @@ -40661,7 +40661,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessPrivateEndpoints --help @@ -40719,7 +40719,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -40774,7 +40774,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessPrivateEndpoint --help @@ -40827,7 +40827,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessPrivateEndpoint --help @@ -40888,7 +40888,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI lang: cURL @@ -40929,7 +40929,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help @@ -40978,7 +40978,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI lang: cURL @@ -41022,7 +41022,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDataFederationPrivateEndpoints --help @@ -41086,7 +41086,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI lang: cURL @@ -41134,7 +41134,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteDataFederationPrivateEndpoint --help @@ -41182,7 +41182,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataFederationPrivateEndpoint --help @@ -41221,7 +41221,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasProcesses --help @@ -41265,7 +41265,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasProcess --help @@ -41312,7 +41312,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabases --help @@ -41362,7 +41362,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabase --help @@ -41438,7 +41438,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseMeasurements --help @@ -41485,7 +41485,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskPartitions --help @@ -41534,7 +41534,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskMeasurements --help @@ -41626,7 +41626,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDiskMeasurements --help @@ -41829,7 +41829,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostMeasurements --help @@ -41893,7 +41893,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueryNamespaces --help @@ -41974,7 +41974,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueries --help @@ -42062,7 +42062,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSuggestedIndexes --help @@ -42102,7 +42102,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: Atlas CLI lang: cURL source: atlas api deletePushBasedLogConfiguration --help @@ -42141,7 +42141,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushBasedLogConfiguration --help @@ -42189,7 +42189,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -42238,7 +42238,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -42288,7 +42288,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI lang: cURL @@ -42333,7 +42333,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSampleDatasetLoadStatus --help @@ -42372,7 +42372,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessInstances --help @@ -42419,7 +42419,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI lang: cURL @@ -42470,7 +42470,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackupRestoreJobs --help @@ -42528,7 +42528,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -42585,7 +42585,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackupRestoreJob --help @@ -42635,7 +42635,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackups --help @@ -42691,7 +42691,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackup --help @@ -42736,7 +42736,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessAutoIndexing --help @@ -42786,7 +42786,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI lang: cURL @@ -42836,7 +42836,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serverless/{name}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessInstance --help @@ -42884,7 +42884,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessInstance --help @@ -42938,7 +42938,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI lang: cURL @@ -42979,7 +42979,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectSettings --help @@ -43026,7 +43026,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -43072,7 +43072,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectTeams --help @@ -43126,7 +43126,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -43178,7 +43178,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectTeam --help @@ -43239,7 +43239,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -43276,7 +43276,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfiguration --help @@ -43324,7 +43324,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI lang: cURL @@ -43363,7 +43363,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: Atlas CLI lang: cURL source: atlas api disableCustomerManagedX509 --help @@ -43399,7 +43399,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: Atlas CLI lang: cURL source: atlas api deleteLDAPConfiguration --help @@ -43445,7 +43445,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI lang: cURL @@ -43491,7 +43491,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfigurationStatus --help @@ -43542,7 +43542,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectUsers --help @@ -43589,7 +43589,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectUser --help @@ -43646,7 +43646,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -43696,7 +43696,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/groups/byName/{groupName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectByName --help @@ -43745,7 +43745,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizations --help @@ -43795,7 +43795,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" -d { } - label: Atlas CLI lang: cURL @@ -43844,7 +43844,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganization --help @@ -43885,7 +43885,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganization --help @@ -43934,7 +43934,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -43977,7 +43977,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeys --help @@ -44023,7 +44023,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -44072,7 +44072,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKey --help @@ -44119,7 +44119,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKey --help @@ -44176,7 +44176,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -44228,7 +44228,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeyAccessListsEntries --help @@ -44289,7 +44289,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -44350,7 +44350,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKeyAccessListEntry --help @@ -44407,7 +44407,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKeyAccessList --help @@ -44452,7 +44452,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI lang: cURL @@ -44507,7 +44507,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api createCostExplorerQueryProcess_1 --help @@ -44578,7 +44578,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationEvents --help @@ -44634,7 +44634,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationEvent --help @@ -44674,7 +44674,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederationSettings --help @@ -44730,7 +44730,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationProjects --help @@ -44778,7 +44778,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationInvitations --help @@ -44825,7 +44825,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -44873,7 +44873,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -44920,7 +44920,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganizationInvitation --help @@ -44967,7 +44967,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationInvitation --help @@ -45023,7 +45023,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -45124,7 +45124,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listInvoices --help @@ -45177,7 +45177,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getInvoice --help @@ -45231,7 +45231,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadInvoiceCSV --help @@ -45269,7 +45269,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPendingInvoices --help @@ -45309,7 +45309,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSourceProjects --help @@ -45346,7 +45346,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: Atlas CLI lang: cURL source: atlas api deleteLinkToken --help @@ -45391,7 +45391,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI lang: cURL @@ -45432,7 +45432,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationSettings --help @@ -45479,7 +45479,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -45526,7 +45526,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationTeams --help @@ -45578,7 +45578,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -45631,7 +45631,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api deleteTeam --help @@ -45682,7 +45682,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamById --help @@ -45743,7 +45743,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -45800,7 +45800,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listTeamUsers --help @@ -45863,7 +45863,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI lang: cURL @@ -45923,7 +45923,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeTeamUser --help @@ -45972,7 +45972,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamByName --help @@ -46015,7 +46015,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationUsers --help @@ -46065,7 +46065,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeOrganizationUser --help @@ -46122,7 +46122,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -46173,7 +46173,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" -d { } - label: Atlas CLI lang: cURL @@ -46220,7 +46220,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/users/{userId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUser --help @@ -46264,7 +46264,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ - -X GET "/api/atlas/v2/users/byName/{userName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUserByUsername --help 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 4548a5d8c1..a6ec949aed 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 @@ -247,7 +247,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 GET \"/api/atlas/v2?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", @@ -304,7 +304,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 GET \"/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" }, { "lang": "cURL", @@ -367,7 +367,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 GET \"/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { "lang": "cURL", @@ -430,7 +430,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 GET \"/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { "lang": "cURL", @@ -484,7 +484,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", @@ -550,7 +550,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" }, { "lang": "cURL", @@ -623,7 +623,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { "lang": "cURL", @@ -694,7 +694,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" }, { "lang": "cURL", @@ -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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -839,7 +839,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -984,7 +984,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" }, { "lang": "cURL", @@ -1058,7 +1058,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1241,7 +1241,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" }, { "lang": "cURL", @@ -1315,7 +1315,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1457,7 +1457,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" }, { "lang": "cURL", @@ -1523,7 +1523,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 GET \"/api/atlas/v2/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -1683,7 +1683,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 GET \"/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" }, { "lang": "cURL", @@ -1743,7 +1743,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 DELETE \"/api/atlas/v2/groups/{groupId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", @@ -1801,7 +1801,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 GET \"/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2022,7 +2022,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 GET \"/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2185,7 +2185,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 DELETE \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { "lang": "cURL", @@ -2261,7 +2261,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" }, { "lang": "cURL", @@ -2338,7 +2338,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" }, { "lang": "cURL", @@ -2404,7 +2404,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2543,7 +2543,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 DELETE \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { "lang": "cURL", @@ -2614,7 +2614,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -2863,7 +2863,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -2945,7 +2945,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 GET \"/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -3017,7 +3017,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3184,7 +3184,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" }, { "lang": "cURL", @@ -3254,7 +3254,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 GET \"/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3396,7 +3396,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 DELETE \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3624,7 +3624,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 GET \"/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -3750,7 +3750,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 GET \"/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -3883,7 +3883,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4033,7 +4033,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 DELETE \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" }, { "lang": "cURL", @@ -4102,7 +4102,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" }, { "lang": "cURL", @@ -4164,7 +4164,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 GET \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4307,7 +4307,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4458,7 +4458,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 DELETE \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" }, { "lang": "cURL", @@ -4527,7 +4527,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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-02-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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-02-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5100,7 +5100,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { "lang": "cURL", @@ -5174,7 +5174,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5342,7 +5342,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5501,7 +5501,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" }, { "lang": "cURL", @@ -5579,7 +5579,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -5750,7 +5750,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" }, { "lang": "cURL", @@ -5829,7 +5829,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -5899,7 +5899,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" }, { "lang": "cURL", @@ -5968,7 +5968,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6133,7 +6133,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6295,7 +6295,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" }, { "lang": "cURL", @@ -6377,7 +6377,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -6449,7 +6449,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" }, { "lang": "cURL", @@ -6533,7 +6533,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -6615,7 +6615,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -6961,7 +6961,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" }, { "lang": "cURL", @@ -7045,7 +7045,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" }, { "lang": "cURL", @@ -7117,7 +7117,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -7201,7 +7201,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -7280,7 +7280,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" }, { "lang": "cURL", @@ -7368,7 +7368,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -7555,7 +7555,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" }, { "lang": "cURL", @@ -7645,7 +7645,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" }, { "lang": "cURL", @@ -7730,7 +7730,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -7907,7 +7907,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" }, { "lang": "cURL", @@ -7982,7 +7982,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8163,7 +8163,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -8511,7 +8511,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -8711,7 +8711,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -8799,7 +8799,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" }, { "lang": "cURL", @@ -8888,7 +8888,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9070,7 +9070,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" }, { "lang": "cURL", @@ -9147,7 +9147,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9309,7 +9309,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -9560,7 +9560,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -9727,7 +9727,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" }, { "lang": "cURL", @@ -9800,7 +9800,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" }, { "lang": "cURL", @@ -9872,7 +9872,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10115,7 +10115,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -10287,7 +10287,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -10372,7 +10372,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -10452,7 +10452,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -10612,7 +10612,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" }, { "lang": "cURL", @@ -10729,7 +10729,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" }, { "lang": "cURL", @@ -10813,7 +10813,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 GET \"/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -10957,7 +10957,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 GET \"/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" }, { "lang": "cURL", @@ -11036,7 +11036,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 DELETE \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { "lang": "cURL", @@ -11104,7 +11104,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 GET \"/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -11255,7 +11255,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -11405,7 +11405,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 DELETE \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" }, { "lang": "cURL", @@ -11472,7 +11472,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -11632,7 +11632,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -11773,7 +11773,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { "lang": "cURL", @@ -11840,7 +11840,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -11999,7 +11999,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" }, { "lang": "cURL", @@ -12077,7 +12077,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" }, { "lang": "cURL", @@ -12156,7 +12156,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -12345,7 +12345,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -12411,7 +12411,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -12723,7 +12723,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 DELETE \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" }, { "lang": "cURL", @@ -12800,7 +12800,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -12975,7 +12975,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -13190,7 +13190,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" }, { "lang": "cURL", @@ -13310,7 +13310,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" }, { "lang": "cURL", @@ -13367,7 +13367,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -13511,7 +13511,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -13681,7 +13681,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 DELETE \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" }, { "lang": "cURL", @@ -13760,7 +13760,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -13893,7 +13893,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 GET \"/api/atlas/v2/groups/{groupId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true\"" }, { "lang": "cURL", @@ -13974,7 +13974,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 GET \"/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -14034,7 +14034,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" }, { "lang": "cURL", @@ -14140,7 +14140,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -14249,7 +14249,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -14350,7 +14350,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" }, { "lang": "cURL", @@ -14422,7 +14422,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 GET \"/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" }, { "lang": "cURL", @@ -14507,7 +14507,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 DELETE \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { "lang": "cURL", @@ -14590,7 +14590,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 GET \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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-02-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -15079,7 +15079,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 DELETE \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -15151,7 +15151,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 GET \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -15295,7 +15295,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 GET \"/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" }, { "lang": "cURL", @@ -15364,7 +15364,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 GET \"/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" }, { "lang": "cURL", @@ -15451,7 +15451,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 DELETE \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { "lang": "cURL", @@ -15539,7 +15539,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 GET \"/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -15876,7 +15876,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" }, { "lang": "cURL", @@ -15942,7 +15942,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -16062,7 +16062,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 DELETE \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { "lang": "cURL", @@ -16117,7 +16117,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 GET \"/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -16348,7 +16348,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 GET \"/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" }, { "lang": "cURL", @@ -16405,7 +16405,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 DELETE \"/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -16580,7 +16580,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 GET \"/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" }, { "lang": "cURL", @@ -16663,7 +16663,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 GET \"/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -16814,7 +16814,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 DELETE \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { "lang": "cURL", @@ -16884,7 +16884,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 GET \"/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -17031,7 +17031,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -17169,7 +17169,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { "lang": "cURL", @@ -17239,7 +17239,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -17398,7 +17398,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" }, { "lang": "cURL", @@ -17489,7 +17489,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -17724,7 +17724,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" }, { "lang": "cURL", @@ -17809,7 +17809,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" }, { "lang": "cURL", @@ -17892,7 +17892,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -18107,7 +18107,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -18247,7 +18247,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -18408,7 +18408,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -18486,7 +18486,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -18650,7 +18650,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" }, { "lang": "cURL", @@ -18734,7 +18734,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" }, { "lang": "cURL", @@ -18819,7 +18819,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -19017,7 +19017,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -19112,7 +19112,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" }, { "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-02-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -19320,7 +19320,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -19461,7 +19461,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" }, { "lang": "cURL", @@ -19534,7 +19534,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -19600,7 +19600,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 GET \"/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" }, { "lang": "cURL", @@ -19668,7 +19668,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" }, { "lang": "cURL", @@ -19745,7 +19745,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" }, { "lang": "cURL", @@ -19822,7 +19822,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" }, { "lang": "cURL", @@ -19938,7 +19938,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -20015,7 +20015,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" }, { "lang": "cURL", @@ -20089,7 +20089,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" }, { "lang": "cURL", @@ -20214,7 +20214,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -20446,7 +20446,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -20532,7 +20532,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -20642,7 +20642,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" }, { "lang": "cURL", @@ -20768,7 +20768,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" }, { "lang": "cURL", @@ -20831,7 +20831,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 DELETE \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { "lang": "cURL", @@ -20892,7 +20892,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 GET \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -21176,7 +21176,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 GET \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" }, { "lang": "cURL", @@ -21242,7 +21242,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 GET \"/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -21395,7 +21395,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -21566,7 +21566,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -21647,7 +21647,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -21729,7 +21729,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -21798,7 +21798,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -21946,7 +21946,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 DELETE \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { "lang": "cURL", @@ -22019,7 +22019,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -22163,7 +22163,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 GET \"/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -22298,7 +22298,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 GET \"/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -22439,7 +22439,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { "lang": "cURL", @@ -22514,7 +22514,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -22697,7 +22697,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" }, { "lang": "cURL", @@ -22772,7 +22772,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -22934,7 +22934,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" }, { "lang": "cURL", @@ -23007,7 +23007,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\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.2023-02-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -23333,7 +23333,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 DELETE \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -23481,7 +23481,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\"\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-02-01+json\" \\\n -X DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { "lang": "cURL", @@ -23661,7 +23661,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -23801,7 +23801,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" }, { "lang": "cURL", @@ -23885,7 +23885,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 GET \"/api/atlas/v2/groups/{groupId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true\"" }, { "lang": "cURL", @@ -23957,7 +23957,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 DELETE \"/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -24123,7 +24123,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 GET \"/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -24264,7 +24264,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 DELETE \"/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", @@ -24328,7 +24328,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 GET \"/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -24473,7 +24473,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -24616,7 +24616,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { "lang": "cURL", @@ -24687,7 +24687,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -24854,7 +24854,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -25040,7 +25040,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" }, { "lang": "cURL", @@ -25125,7 +25125,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -25274,7 +25274,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 GET \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" }, { "lang": "cURL", @@ -25379,7 +25379,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 GET \"/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" }, { "lang": "cURL", @@ -25460,7 +25460,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 GET \"/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -25523,7 +25523,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 GET \"/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" }, { "lang": "cURL", @@ -25603,7 +25603,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 GET \"/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" }, { "lang": "cURL", @@ -25678,7 +25678,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 GET \"/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -25894,7 +25894,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 DELETE \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -25964,7 +25964,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 GET \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -26196,7 +26196,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" }, { "lang": "cURL", @@ -26256,7 +26256,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" }, { "lang": "cURL", @@ -26334,7 +26334,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" }, { "lang": "cURL", @@ -26405,7 +26405,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" }, { "lang": "cURL", @@ -26468,7 +26468,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 GET \"/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" }, { "lang": "cURL", @@ -26525,7 +26525,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 DELETE \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -26657,7 +26657,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 GET \"/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -26805,7 +26805,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 GET \"/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -26960,7 +26960,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" }, { "lang": "cURL", @@ -27039,7 +27039,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { "lang": "cURL", @@ -27116,7 +27116,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -27295,7 +27295,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -27477,7 +27477,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" }, { "lang": "cURL", @@ -27549,7 +27549,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 GET \"/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" }, { "lang": "cURL", @@ -27624,7 +27624,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 DELETE \"/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", @@ -27845,7 +27845,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 GET \"/api/atlas/v2/users/byName/{userName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true\"" }, { "lang": "cURL", @@ -27914,7 +27914,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 GET \"/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { "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 b70612118c..c095e18f88 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 @@ -28663,7 +28663,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSystemStatus --help @@ -28700,7 +28700,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationMatchersFieldNames --help @@ -28738,7 +28738,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClustersForAllProjects --help @@ -28776,7 +28776,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/eventTypes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listEventTypes --help @@ -28812,7 +28812,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: Atlas CLI lang: cURL source: atlas api deleteFederationApp --help @@ -28853,7 +28853,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listConnectedOrgConfigs --help @@ -28902,7 +28902,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api removeConnectedOrgConfig --help @@ -28950,7 +28950,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getConnectedOrgConfig --help @@ -29006,7 +29006,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -29047,7 +29047,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listRoleMappings --help @@ -29094,7 +29094,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI lang: cURL @@ -29143,7 +29143,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: Atlas CLI lang: cURL source: atlas api deleteRoleMapping --help @@ -29192,7 +29192,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRoleMapping --help @@ -29249,7 +29249,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI lang: cURL @@ -29313,7 +29313,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIdentityProviders --help @@ -29362,7 +29362,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProvider --help @@ -29420,7 +29420,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI lang: cURL @@ -29461,7 +29461,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProviderMetadata --help @@ -29501,7 +29501,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjects --help @@ -29559,7 +29559,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" -d { } - label: Atlas CLI lang: cURL @@ -29598,7 +29598,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: Atlas CLI lang: cURL source: atlas api deleteProject --help @@ -29635,7 +29635,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProject --help @@ -29684,7 +29684,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI lang: cURL @@ -29734,7 +29734,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI lang: cURL @@ -29777,7 +29777,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectIpAccessLists --help @@ -29832,7 +29832,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -29887,7 +29887,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectIpAccessList --help @@ -29937,7 +29937,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpList --help @@ -29987,7 +29987,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpAccessListStatus --help @@ -30029,7 +30029,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurations --help @@ -30077,7 +30077,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI lang: cURL @@ -30127,7 +30127,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: Atlas CLI lang: cURL source: atlas api deleteAlertConfiguration --help @@ -30177,7 +30177,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlertConfiguration --help @@ -30237,7 +30237,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -30300,7 +30300,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -30355,7 +30355,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertsByAlertConfigurationId --help @@ -30408,7 +30408,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlerts --help @@ -30458,7 +30458,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlert --help @@ -30518,7 +30518,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI lang: cURL @@ -30573,7 +30573,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationsByAlertId --help @@ -30615,7 +30615,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectApiKeys --help @@ -30658,7 +30658,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -30709,7 +30709,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectApiKey --help @@ -30766,7 +30766,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -30821,7 +30821,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -30858,7 +30858,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAuditingConfiguration --help @@ -30903,7 +30903,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI lang: cURL @@ -30940,7 +30940,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAWSCustomDNS --help @@ -30983,7 +30983,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI lang: cURL @@ -31024,7 +31024,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listExportBuckets --help @@ -31075,7 +31075,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI lang: cURL @@ -31126,7 +31126,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI lang: cURL source: atlas api deleteExportBucket --help @@ -31173,7 +31173,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getExportBucket --help @@ -31213,7 +31213,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataProtectionSettings --help @@ -31270,7 +31270,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI lang: cURL @@ -31308,7 +31308,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderAccessRoles --help @@ -31354,7 +31354,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI lang: cURL @@ -31408,7 +31408,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: Atlas CLI lang: cURL source: atlas api deauthorizeCloudProviderAccessRole --help @@ -31453,7 +31453,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCloudProviderAccessRole --help @@ -31512,7 +31512,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI lang: cURL @@ -31559,7 +31559,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClusters --help @@ -31612,7 +31612,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI lang: cURL @@ -31668,7 +31668,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: Atlas CLI lang: cURL source: atlas api deleteCluster --help @@ -31717,7 +31717,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCluster --help @@ -31777,7 +31777,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI lang: cURL @@ -31827,7 +31827,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupExportJobs --help @@ -31884,7 +31884,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI lang: cURL @@ -31935,7 +31935,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupExportJob --help @@ -31983,7 +31983,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupRestoreJobs --help @@ -32044,7 +32044,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -32101,7 +32101,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: Atlas CLI lang: cURL source: atlas api cancelBackupRestoreJob --help @@ -32154,7 +32154,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupRestoreJob --help @@ -32201,7 +32201,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: Atlas CLI lang: cURL source: atlas api deleteAllBackupSchedules --help @@ -32247,7 +32247,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupSchedule --help @@ -32306,7 +32306,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI lang: cURL @@ -32358,7 +32358,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listReplicaSetBackups --help @@ -32415,7 +32415,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI lang: cURL @@ -32472,7 +32472,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteReplicaSetBackup --help @@ -32527,7 +32527,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getReplicaSetBackup --help @@ -32590,7 +32590,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -32645,7 +32645,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteShardedClusterBackup --help @@ -32700,7 +32700,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getShardedClusterBackup --help @@ -32747,7 +32747,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listShardedClusterBackups --help @@ -32808,7 +32808,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI lang: cURL @@ -32868,7 +32868,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI lang: cURL @@ -32916,7 +32916,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackupRestoreJobs --help @@ -32972,7 +32972,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackupRestoreJob --help @@ -33019,7 +33019,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackups --help @@ -33075,7 +33075,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackup --help @@ -33124,7 +33124,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupCheckpoints --help @@ -33183,7 +33183,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupCheckpoint --help @@ -33244,7 +33244,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI lang: cURL @@ -33309,7 +33309,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexesDeprecated --help @@ -33370,7 +33370,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndexDeprecated --help @@ -33428,7 +33428,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndexDeprecated --help @@ -33498,7 +33498,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI lang: cURL @@ -33549,7 +33549,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedNamespace --help @@ -33599,7 +33599,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: Atlas CLI lang: cURL source: atlas api deleteAllCustomZoneMappings --help @@ -33658,7 +33658,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI lang: cURL @@ -33721,7 +33721,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI lang: cURL source: atlas api deleteManagedNamespace --help @@ -33782,7 +33782,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI lang: cURL @@ -33905,7 +33905,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI lang: cURL @@ -33957,7 +33957,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOnlineArchives --help @@ -34018,7 +34018,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI lang: cURL @@ -34078,7 +34078,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: Atlas CLI lang: cURL source: atlas api deleteOnlineArchive --help @@ -34138,7 +34138,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOnlineArchive --help @@ -34208,7 +34208,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI lang: cURL @@ -34284,7 +34284,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadOnlineArchiveQueryLogs --help @@ -34336,7 +34336,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: Atlas CLI lang: cURL source: atlas api endOutageSimulation --help @@ -34387,7 +34387,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOutageSimulation --help @@ -34444,7 +34444,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI lang: cURL @@ -34496,7 +34496,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterAdvancedConfiguration --help @@ -34558,7 +34558,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI lang: cURL @@ -34604,7 +34604,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI lang: cURL @@ -34667,7 +34667,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupRestoreJobs --help @@ -34722,7 +34722,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -34783,7 +34783,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupRestoreJob --help @@ -34831,7 +34831,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchDeployment --help @@ -34879,7 +34879,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchDeployment --help @@ -34937,7 +34937,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -34996,7 +34996,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -35047,7 +35047,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshotSchedule --help @@ -35103,7 +35103,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI lang: cURL @@ -35163,7 +35163,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacySnapshots --help @@ -35220,7 +35220,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteLegacySnapshot --help @@ -35274,7 +35274,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshot --help @@ -35336,7 +35336,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -35382,7 +35382,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterStatus --help @@ -35462,7 +35462,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostLogs --help @@ -35513,7 +35513,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderRegions --help @@ -35565,7 +35565,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI lang: cURL @@ -35618,7 +35618,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI lang: cURL @@ -35671,7 +35671,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainerByCloudProvider --help @@ -35722,7 +35722,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI lang: cURL @@ -35775,7 +35775,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/containers/{containerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringContainer --help @@ -35820,7 +35820,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringContainer --help @@ -35881,7 +35881,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI lang: cURL @@ -35921,7 +35921,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainers --help @@ -35959,7 +35959,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCustomDatabaseRoles --help @@ -36010,7 +36010,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI lang: cURL @@ -36057,7 +36057,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: Atlas CLI lang: cURL source: atlas api deleteCustomDatabaseRole --help @@ -36100,7 +36100,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCustomDatabaseRole --help @@ -36157,7 +36157,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI lang: cURL @@ -36205,7 +36205,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listFederatedDatabases --help @@ -36254,7 +36254,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI lang: cURL @@ -36297,7 +36297,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteFederatedDatabase --help @@ -36341,7 +36341,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederatedDatabase --help @@ -36398,7 +36398,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -36445,7 +36445,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimits --help @@ -36505,7 +36505,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteOneDataFederationInstanceQueryLimit --help @@ -36565,7 +36565,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimit --help @@ -36636,7 +36636,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -36703,7 +36703,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadFederatedDatabaseQueryLogs --help @@ -36742,7 +36742,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUsers --help @@ -36884,7 +36884,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI lang: cURL @@ -36951,7 +36951,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: Atlas CLI lang: cURL source: atlas api deleteDatabaseUser --help @@ -37014,7 +37014,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseUser --help @@ -37091,7 +37091,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI lang: cURL @@ -37139,7 +37139,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUserCertificates --help @@ -37205,7 +37205,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI lang: cURL @@ -37288,7 +37288,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByClusterName --help @@ -37367,7 +37367,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByHostname --help @@ -37406,7 +37406,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRest --help @@ -37467,7 +37467,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI lang: cURL @@ -37512,7 +37512,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help @@ -37563,7 +37563,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI lang: cURL @@ -37624,7 +37624,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help @@ -37676,7 +37676,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpoint --help @@ -37769,7 +37769,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectEvents --help @@ -37825,7 +37825,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectEvent --help @@ -37863,7 +37863,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listMetricTypes --help @@ -37931,7 +37931,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIndexMetrics --help @@ -37998,7 +37998,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIndexMetrics --help @@ -38064,7 +38064,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMeasurements --help @@ -38107,7 +38107,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listThirdPartyIntegrations --help @@ -38165,7 +38165,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: Atlas CLI lang: cURL source: atlas api deleteThirdPartyIntegration --help @@ -38222,7 +38222,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getThirdPartyIntegration --help @@ -38292,7 +38292,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -38361,7 +38361,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -38407,7 +38407,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectInvitations --help @@ -38456,7 +38456,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -38502,7 +38502,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -38549,7 +38549,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectInvitation --help @@ -38597,7 +38597,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectInvitation --help @@ -38654,7 +38654,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -38694,7 +38694,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllIPAddresses --help @@ -38738,7 +38738,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectLimits --help @@ -38814,7 +38814,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectLimit --help @@ -38891,7 +38891,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLimit --help @@ -38979,7 +38979,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -39040,7 +39040,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI lang: cURL @@ -39083,7 +39083,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushMigration --help @@ -39125,7 +39125,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI lang: cURL @@ -39179,7 +39179,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI lang: cURL @@ -39232,7 +39232,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getValidationStatus --help @@ -39267,7 +39267,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/maintenanceWindow" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: Atlas CLI lang: cURL source: atlas api resetMaintenanceWindow --help @@ -39302,7 +39302,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMaintenanceWindow --help @@ -39346,7 +39346,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI lang: cURL @@ -39383,7 +39383,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI lang: cURL @@ -39420,7 +39420,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI lang: cURL @@ -39457,7 +39457,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedSlowMs --help @@ -39493,7 +39493,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: Atlas CLI lang: cURL source: atlas api disableSlowOperationThresholding --help @@ -39530,7 +39530,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI lang: cURL @@ -39608,7 +39608,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLTSVersions --help @@ -39659,7 +39659,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringConnections --help @@ -39711,7 +39711,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI lang: cURL @@ -39759,7 +39759,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/peers/{peerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringConnection --help @@ -39805,7 +39805,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringConnection --help @@ -39863,7 +39863,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI lang: cURL @@ -39903,7 +39903,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelines --help @@ -39949,7 +39949,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI lang: cURL @@ -39996,7 +39996,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: Atlas CLI lang: cURL source: atlas api deletePipeline --help @@ -40042,7 +40042,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipeline --help @@ -40099,7 +40099,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI lang: cURL @@ -40149,7 +40149,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSchedules --help @@ -40206,7 +40206,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSnapshots --help @@ -40254,7 +40254,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI lang: cURL @@ -40303,7 +40303,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI lang: cURL @@ -40361,7 +40361,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineRuns --help @@ -40418,7 +40418,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: Atlas CLI lang: cURL source: atlas api deletePipelineRunDataset --help @@ -40474,7 +40474,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipelineRun --help @@ -40529,7 +40529,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI lang: cURL @@ -40579,7 +40579,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPrivateEndpointServices --help @@ -40635,7 +40635,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpointService --help @@ -40692,7 +40692,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpointService --help @@ -40762,7 +40762,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -40826,7 +40826,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpoint --help @@ -40890,7 +40890,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpoint --help @@ -40937,7 +40937,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI lang: cURL @@ -40976,7 +40976,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRegionalizedPrivateEndpointSetting --help @@ -41021,7 +41021,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI lang: cURL @@ -41069,7 +41069,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessPrivateEndpoints --help @@ -41127,7 +41127,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -41182,7 +41182,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessPrivateEndpoint --help @@ -41235,7 +41235,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessPrivateEndpoint --help @@ -41296,7 +41296,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI lang: cURL @@ -41337,7 +41337,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help @@ -41386,7 +41386,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI lang: cURL @@ -41430,7 +41430,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDataFederationPrivateEndpoints --help @@ -41494,7 +41494,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI lang: cURL @@ -41542,7 +41542,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteDataFederationPrivateEndpoint --help @@ -41590,7 +41590,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataFederationPrivateEndpoint --help @@ -41629,7 +41629,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasProcesses --help @@ -41673,7 +41673,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasProcess --help @@ -41720,7 +41720,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabases --help @@ -41770,7 +41770,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabase --help @@ -41846,7 +41846,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseMeasurements --help @@ -41893,7 +41893,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskPartitions --help @@ -41942,7 +41942,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskMeasurements --help @@ -42034,7 +42034,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDiskMeasurements --help @@ -42237,7 +42237,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostMeasurements --help @@ -42301,7 +42301,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueryNamespaces --help @@ -42382,7 +42382,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueries --help @@ -42470,7 +42470,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSuggestedIndexes --help @@ -42510,7 +42510,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: Atlas CLI lang: cURL source: atlas api deletePushBasedLogConfiguration --help @@ -42549,7 +42549,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushBasedLogConfiguration --help @@ -42597,7 +42597,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -42646,7 +42646,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -42696,7 +42696,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI lang: cURL @@ -42741,7 +42741,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSampleDatasetLoadStatus --help @@ -42780,7 +42780,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessInstances --help @@ -42827,7 +42827,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI lang: cURL @@ -42878,7 +42878,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackupRestoreJobs --help @@ -42936,7 +42936,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -42993,7 +42993,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackupRestoreJob --help @@ -43043,7 +43043,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackups --help @@ -43099,7 +43099,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackup --help @@ -43144,7 +43144,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessAutoIndexing --help @@ -43194,7 +43194,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI lang: cURL @@ -43244,7 +43244,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serverless/{name}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessInstance --help @@ -43292,7 +43292,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessInstance --help @@ -43346,7 +43346,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI lang: cURL @@ -43387,7 +43387,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectSettings --help @@ -43434,7 +43434,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -43473,7 +43473,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamInstances --help @@ -43518,7 +43518,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI lang: cURL @@ -43565,7 +43565,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamInstance --help @@ -43614,7 +43614,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamInstance --help @@ -43669,7 +43669,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -43737,7 +43737,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadStreamTenantAuditLogs --help @@ -43783,7 +43783,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamConnections --help @@ -43836,7 +43836,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI lang: cURL @@ -43889,7 +43889,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamConnection --help @@ -43937,7 +43937,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamConnection --help @@ -43998,7 +43998,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI lang: cURL @@ -44044,7 +44044,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectTeams --help @@ -44098,7 +44098,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -44150,7 +44150,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectTeam --help @@ -44211,7 +44211,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -44248,7 +44248,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfiguration --help @@ -44296,7 +44296,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI lang: cURL @@ -44335,7 +44335,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: Atlas CLI lang: cURL source: atlas api disableCustomerManagedX509 --help @@ -44371,7 +44371,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: Atlas CLI lang: cURL source: atlas api deleteLDAPConfiguration --help @@ -44417,7 +44417,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI lang: cURL @@ -44463,7 +44463,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfigurationStatus --help @@ -44514,7 +44514,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectUsers --help @@ -44561,7 +44561,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectUser --help @@ -44618,7 +44618,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -44668,7 +44668,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/groups/byName/{groupName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectByName --help @@ -44717,7 +44717,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizations --help @@ -44767,7 +44767,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" -d { } - label: Atlas CLI lang: cURL @@ -44816,7 +44816,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganization --help @@ -44857,7 +44857,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganization --help @@ -44906,7 +44906,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -44949,7 +44949,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeys --help @@ -44995,7 +44995,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -45044,7 +45044,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKey --help @@ -45091,7 +45091,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKey --help @@ -45148,7 +45148,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -45200,7 +45200,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeyAccessListsEntries --help @@ -45261,7 +45261,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -45322,7 +45322,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKeyAccessListEntry --help @@ -45379,7 +45379,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKeyAccessList --help @@ -45424,7 +45424,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI lang: cURL @@ -45479,7 +45479,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api createCostExplorerQueryProcess_1 --help @@ -45550,7 +45550,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationEvents --help @@ -45606,7 +45606,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationEvent --help @@ -45646,7 +45646,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederationSettings --help @@ -45702,7 +45702,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationProjects --help @@ -45750,7 +45750,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationInvitations --help @@ -45797,7 +45797,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -45845,7 +45845,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -45892,7 +45892,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganizationInvitation --help @@ -45939,7 +45939,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationInvitation --help @@ -45995,7 +45995,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -46096,7 +46096,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listInvoices --help @@ -46149,7 +46149,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getInvoice --help @@ -46203,7 +46203,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadInvoiceCSV --help @@ -46241,7 +46241,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPendingInvoices --help @@ -46281,7 +46281,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSourceProjects --help @@ -46318,7 +46318,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: Atlas CLI lang: cURL source: atlas api deleteLinkToken --help @@ -46363,7 +46363,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI lang: cURL @@ -46404,7 +46404,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationSettings --help @@ -46451,7 +46451,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -46498,7 +46498,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationTeams --help @@ -46550,7 +46550,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -46603,7 +46603,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api deleteTeam --help @@ -46654,7 +46654,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamById --help @@ -46715,7 +46715,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -46772,7 +46772,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listTeamUsers --help @@ -46835,7 +46835,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI lang: cURL @@ -46895,7 +46895,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeTeamUser --help @@ -46944,7 +46944,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamByName --help @@ -46987,7 +46987,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationUsers --help @@ -47037,7 +47037,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeOrganizationUser --help @@ -47094,7 +47094,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -47145,7 +47145,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" -d { } - label: Atlas CLI lang: cURL @@ -47192,7 +47192,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/users/{userId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUser --help @@ -47236,7 +47236,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ - -X GET "/api/atlas/v2/users/byName/{userName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUserByUsername --help 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 07914fa739..23ce001433 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 @@ -247,7 +247,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 GET \"/api/atlas/v2?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", @@ -304,7 +304,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 GET \"/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" }, { "lang": "cURL", @@ -367,7 +367,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 GET \"/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { "lang": "cURL", @@ -430,7 +430,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 GET \"/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { "lang": "cURL", @@ -484,7 +484,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", @@ -550,7 +550,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" }, { "lang": "cURL", @@ -623,7 +623,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { "lang": "cURL", @@ -694,7 +694,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" }, { "lang": "cURL", @@ -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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -839,7 +839,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -984,7 +984,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" }, { "lang": "cURL", @@ -1058,7 +1058,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1241,7 +1241,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" }, { "lang": "cURL", @@ -1315,7 +1315,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1457,7 +1457,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" }, { "lang": "cURL", @@ -1523,7 +1523,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 GET \"/api/atlas/v2/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -1683,7 +1683,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 GET \"/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" }, { "lang": "cURL", @@ -1743,7 +1743,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 DELETE \"/api/atlas/v2/groups/{groupId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", @@ -1801,7 +1801,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 GET \"/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2022,7 +2022,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 GET \"/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2185,7 +2185,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 DELETE \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { "lang": "cURL", @@ -2261,7 +2261,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" }, { "lang": "cURL", @@ -2338,7 +2338,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" }, { "lang": "cURL", @@ -2404,7 +2404,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2543,7 +2543,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 DELETE \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { "lang": "cURL", @@ -2614,7 +2614,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -2863,7 +2863,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -2945,7 +2945,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 GET \"/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -3017,7 +3017,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3184,7 +3184,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" }, { "lang": "cURL", @@ -3254,7 +3254,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 GET \"/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3396,7 +3396,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 DELETE \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3624,7 +3624,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 GET \"/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -3750,7 +3750,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 GET \"/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -3883,7 +3883,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4033,7 +4033,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 DELETE \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" }, { "lang": "cURL", @@ -4102,7 +4102,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" }, { "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-10-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4302,7 +4302,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4453,7 +4453,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 DELETE \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" }, { "lang": "cURL", @@ -4522,7 +4522,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -4686,7 +4686,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 GET \"/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -4852,7 +4852,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5095,7 +5095,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { "lang": "cURL", @@ -5169,7 +5169,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5337,7 +5337,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5496,7 +5496,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" }, { "lang": "cURL", @@ -5574,7 +5574,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -5745,7 +5745,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" }, { "lang": "cURL", @@ -5824,7 +5824,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -5894,7 +5894,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" }, { "lang": "cURL", @@ -5963,7 +5963,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6128,7 +6128,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6290,7 +6290,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" }, { "lang": "cURL", @@ -6372,7 +6372,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -6444,7 +6444,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" }, { "lang": "cURL", @@ -6528,7 +6528,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -6610,7 +6610,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -6956,7 +6956,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" }, { "lang": "cURL", @@ -7040,7 +7040,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" }, { "lang": "cURL", @@ -7112,7 +7112,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -7196,7 +7196,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -7275,7 +7275,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" }, { "lang": "cURL", @@ -7363,7 +7363,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -7550,7 +7550,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" }, { "lang": "cURL", @@ -7640,7 +7640,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" }, { "lang": "cURL", @@ -7725,7 +7725,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\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.2023-10-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" }, { "lang": "cURL", @@ -7977,7 +7977,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8158,7 +8158,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -8506,7 +8506,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -8706,7 +8706,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -8794,7 +8794,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" }, { "lang": "cURL", @@ -8883,7 +8883,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9065,7 +9065,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" }, { "lang": "cURL", @@ -9142,7 +9142,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9304,7 +9304,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -9555,7 +9555,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -9722,7 +9722,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" }, { "lang": "cURL", @@ -9795,7 +9795,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" }, { "lang": "cURL", @@ -9867,7 +9867,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10110,7 +10110,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -10282,7 +10282,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -10367,7 +10367,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -10447,7 +10447,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -10607,7 +10607,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" }, { "lang": "cURL", @@ -10724,7 +10724,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" }, { "lang": "cURL", @@ -10808,7 +10808,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 GET \"/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -10952,7 +10952,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 GET \"/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" }, { "lang": "cURL", @@ -11031,7 +11031,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 DELETE \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { "lang": "cURL", @@ -11099,7 +11099,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 GET \"/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -11250,7 +11250,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -11400,7 +11400,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 DELETE \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" }, { "lang": "cURL", @@ -11467,7 +11467,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -11627,7 +11627,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -11768,7 +11768,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { "lang": "cURL", @@ -11835,7 +11835,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -11994,7 +11994,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" }, { "lang": "cURL", @@ -12072,7 +12072,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" }, { "lang": "cURL", @@ -12151,7 +12151,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -12340,7 +12340,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -12406,7 +12406,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -12718,7 +12718,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 DELETE \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" }, { "lang": "cURL", @@ -12795,7 +12795,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -12970,7 +12970,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -13185,7 +13185,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" }, { "lang": "cURL", @@ -13305,7 +13305,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" }, { "lang": "cURL", @@ -13362,7 +13362,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -13506,7 +13506,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -13676,7 +13676,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 DELETE \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" }, { "lang": "cURL", @@ -13755,7 +13755,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -13888,7 +13888,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 GET \"/api/atlas/v2/groups/{groupId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true\"" }, { "lang": "cURL", @@ -13969,7 +13969,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 GET \"/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -14029,7 +14029,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" }, { "lang": "cURL", @@ -14135,7 +14135,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -14244,7 +14244,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -14345,7 +14345,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" }, { "lang": "cURL", @@ -14417,7 +14417,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 GET \"/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" }, { "lang": "cURL", @@ -14502,7 +14502,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 DELETE \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { "lang": "cURL", @@ -14585,7 +14585,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 GET \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -14864,7 +14864,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 GET \"/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -15074,7 +15074,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 DELETE \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -15146,7 +15146,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 GET \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -15290,7 +15290,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 GET \"/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" }, { "lang": "cURL", @@ -15359,7 +15359,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 GET \"/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" }, { "lang": "cURL", @@ -15446,7 +15446,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 DELETE \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { "lang": "cURL", @@ -15534,7 +15534,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 GET \"/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -15871,7 +15871,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" }, { "lang": "cURL", @@ -15937,7 +15937,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -16057,7 +16057,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 DELETE \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { "lang": "cURL", @@ -16112,7 +16112,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 GET \"/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -16343,7 +16343,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 GET \"/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" }, { "lang": "cURL", @@ -16400,7 +16400,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 DELETE \"/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -16575,7 +16575,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 GET \"/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" }, { "lang": "cURL", @@ -16658,7 +16658,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 GET \"/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -16809,7 +16809,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 DELETE \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { "lang": "cURL", @@ -16879,7 +16879,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 GET \"/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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-10-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -17164,7 +17164,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { "lang": "cURL", @@ -17234,7 +17234,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -17393,7 +17393,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" }, { "lang": "cURL", @@ -17484,7 +17484,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -17719,7 +17719,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" }, { "lang": "cURL", @@ -17804,7 +17804,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" }, { "lang": "cURL", @@ -17887,7 +17887,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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-10-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -18242,7 +18242,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -18403,7 +18403,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -18481,7 +18481,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -18645,7 +18645,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" }, { "lang": "cURL", @@ -18729,7 +18729,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" }, { "lang": "cURL", @@ -18814,7 +18814,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -19012,7 +19012,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -19107,7 +19107,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -19169,7 +19169,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 GET \"/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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-10-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -19456,7 +19456,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" }, { "lang": "cURL", @@ -19529,7 +19529,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -19595,7 +19595,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 GET \"/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" }, { "lang": "cURL", @@ -19663,7 +19663,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" }, { "lang": "cURL", @@ -19740,7 +19740,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" }, { "lang": "cURL", @@ -19817,7 +19817,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" }, { "lang": "cURL", @@ -19933,7 +19933,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -20010,7 +20010,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" }, { "lang": "cURL", @@ -20084,7 +20084,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" }, { "lang": "cURL", @@ -20209,7 +20209,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -20441,7 +20441,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -20527,7 +20527,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -20637,7 +20637,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" }, { "lang": "cURL", @@ -20763,7 +20763,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" }, { "lang": "cURL", @@ -20826,7 +20826,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 DELETE \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { "lang": "cURL", @@ -20887,7 +20887,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 GET \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -21171,7 +21171,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 GET \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" }, { "lang": "cURL", @@ -21237,7 +21237,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 GET \"/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -21390,7 +21390,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -21561,7 +21561,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -21642,7 +21642,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -21724,7 +21724,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -21793,7 +21793,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -21941,7 +21941,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 DELETE \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { "lang": "cURL", @@ -22014,7 +22014,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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-10-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -22301,7 +22301,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 DELETE \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" }, { "lang": "cURL", @@ -22368,7 +22368,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 GET \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -22595,7 +22595,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 GET \"/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -22730,7 +22730,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 GET \"/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -22871,7 +22871,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { "lang": "cURL", @@ -22946,7 +22946,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -23129,7 +23129,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" }, { "lang": "cURL", @@ -23204,7 +23204,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -23366,7 +23366,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" }, { "lang": "cURL", @@ -23439,7 +23439,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" }, { "lang": "cURL", @@ -23607,7 +23607,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 GET \"/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -23765,7 +23765,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 DELETE \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -23913,7 +23913,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -24036,7 +24036,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { "lang": "cURL", @@ -24093,7 +24093,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -24233,7 +24233,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" }, { "lang": "cURL", @@ -24317,7 +24317,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 GET \"/api/atlas/v2/groups/{groupId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true\"" }, { "lang": "cURL", @@ -24389,7 +24389,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 DELETE \"/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -24555,7 +24555,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 GET \"/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -24696,7 +24696,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 DELETE \"/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", @@ -24760,7 +24760,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 GET \"/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -24905,7 +24905,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -25048,7 +25048,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { "lang": "cURL", @@ -25119,7 +25119,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -25286,7 +25286,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -25472,7 +25472,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" }, { "lang": "cURL", @@ -25557,7 +25557,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -25706,7 +25706,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 GET \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" }, { "lang": "cURL", @@ -25811,7 +25811,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 GET \"/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" }, { "lang": "cURL", @@ -25892,7 +25892,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 GET \"/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -25955,7 +25955,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 GET \"/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" }, { "lang": "cURL", @@ -26035,7 +26035,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 GET \"/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" }, { "lang": "cURL", @@ -26110,7 +26110,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 GET \"/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -26326,7 +26326,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 DELETE \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -26396,7 +26396,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 GET \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -26628,7 +26628,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" }, { "lang": "cURL", @@ -26688,7 +26688,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" }, { "lang": "cURL", @@ -26766,7 +26766,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" }, { "lang": "cURL", @@ -26837,7 +26837,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" }, { "lang": "cURL", @@ -26900,7 +26900,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 GET \"/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" }, { "lang": "cURL", @@ -26957,7 +26957,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 DELETE \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -27092,7 +27092,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -27227,7 +27227,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 DELETE \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" }, { "lang": "cURL", @@ -27294,7 +27294,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -27450,7 +27450,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" }, { "lang": "cURL", @@ -27605,7 +27605,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 DELETE \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" }, { "lang": "cURL", @@ -27668,7 +27668,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 GET \"/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -27816,7 +27816,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 GET \"/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -27971,7 +27971,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" }, { "lang": "cURL", @@ -28050,7 +28050,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { "lang": "cURL", @@ -28127,7 +28127,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -28306,7 +28306,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -28488,7 +28488,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" }, { "lang": "cURL", @@ -28560,7 +28560,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 GET \"/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" }, { "lang": "cURL", @@ -28635,7 +28635,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 DELETE \"/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", @@ -28856,7 +28856,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 GET \"/api/atlas/v2/users/byName/{userName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true\"" }, { "lang": "cURL", @@ -28925,7 +28925,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 GET \"/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { "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 ab4fab51ac..8424423190 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 @@ -29084,7 +29084,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSystemStatus --help @@ -29121,7 +29121,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationMatchersFieldNames --help @@ -29159,7 +29159,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClustersForAllProjects --help @@ -29197,7 +29197,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/eventTypes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listEventTypes --help @@ -29233,7 +29233,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: Atlas CLI lang: cURL source: atlas api deleteFederationApp --help @@ -29274,7 +29274,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listConnectedOrgConfigs --help @@ -29323,7 +29323,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api removeConnectedOrgConfig --help @@ -29371,7 +29371,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getConnectedOrgConfig --help @@ -29427,7 +29427,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -29468,7 +29468,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listRoleMappings --help @@ -29515,7 +29515,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI lang: cURL @@ -29564,7 +29564,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: Atlas CLI lang: cURL source: atlas api deleteRoleMapping --help @@ -29613,7 +29613,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRoleMapping --help @@ -29670,7 +29670,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI lang: cURL @@ -29734,7 +29734,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIdentityProviders --help @@ -29783,7 +29783,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProvider --help @@ -29841,7 +29841,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI lang: cURL @@ -29882,7 +29882,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProviderMetadata --help @@ -29922,7 +29922,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjects --help @@ -29980,7 +29980,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" -d { } - label: Atlas CLI lang: cURL @@ -30019,7 +30019,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: Atlas CLI lang: cURL source: atlas api deleteProject --help @@ -30056,7 +30056,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProject --help @@ -30105,7 +30105,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI lang: cURL @@ -30155,7 +30155,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI lang: cURL @@ -30198,7 +30198,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectIpAccessLists --help @@ -30253,7 +30253,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -30308,7 +30308,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectIpAccessList --help @@ -30358,7 +30358,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpList --help @@ -30408,7 +30408,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpAccessListStatus --help @@ -30450,7 +30450,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurations --help @@ -30498,7 +30498,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI lang: cURL @@ -30548,7 +30548,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: Atlas CLI lang: cURL source: atlas api deleteAlertConfiguration --help @@ -30598,7 +30598,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlertConfiguration --help @@ -30658,7 +30658,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -30721,7 +30721,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -30776,7 +30776,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertsByAlertConfigurationId --help @@ -30829,7 +30829,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlerts --help @@ -30879,7 +30879,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlert --help @@ -30939,7 +30939,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI lang: cURL @@ -30994,7 +30994,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationsByAlertId --help @@ -31036,7 +31036,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectApiKeys --help @@ -31079,7 +31079,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -31130,7 +31130,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectApiKey --help @@ -31187,7 +31187,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -31242,7 +31242,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -31279,7 +31279,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAuditingConfiguration --help @@ -31324,7 +31324,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI lang: cURL @@ -31361,7 +31361,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAWSCustomDNS --help @@ -31404,7 +31404,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI lang: cURL @@ -31445,7 +31445,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listExportBuckets --help @@ -31496,7 +31496,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI lang: cURL @@ -31547,7 +31547,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI lang: cURL source: atlas api deleteExportBucket --help @@ -31594,7 +31594,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getExportBucket --help @@ -31633,7 +31633,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataProtectionSettings --help @@ -31687,7 +31687,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI lang: cURL @@ -31724,7 +31724,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderAccessRoles --help @@ -31770,7 +31770,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI lang: cURL @@ -31824,7 +31824,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: Atlas CLI lang: cURL source: atlas api deauthorizeCloudProviderAccessRole --help @@ -31869,7 +31869,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCloudProviderAccessRole --help @@ -31928,7 +31928,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI lang: cURL @@ -31975,7 +31975,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClusters --help @@ -32028,7 +32028,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI lang: cURL @@ -32084,7 +32084,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: Atlas CLI lang: cURL source: atlas api deleteCluster --help @@ -32133,7 +32133,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCluster --help @@ -32193,7 +32193,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI lang: cURL @@ -32243,7 +32243,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupExportJobs --help @@ -32300,7 +32300,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI lang: cURL @@ -32351,7 +32351,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupExportJob --help @@ -32399,7 +32399,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupRestoreJobs --help @@ -32460,7 +32460,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -32517,7 +32517,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: Atlas CLI lang: cURL source: atlas api cancelBackupRestoreJob --help @@ -32570,7 +32570,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupRestoreJob --help @@ -32617,7 +32617,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: Atlas CLI lang: cURL source: atlas api deleteAllBackupSchedules --help @@ -32663,7 +32663,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupSchedule --help @@ -32722,7 +32722,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI lang: cURL @@ -32774,7 +32774,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listReplicaSetBackups --help @@ -32831,7 +32831,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI lang: cURL @@ -32888,7 +32888,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteReplicaSetBackup --help @@ -32943,7 +32943,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getReplicaSetBackup --help @@ -33006,7 +33006,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -33061,7 +33061,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteShardedClusterBackup --help @@ -33116,7 +33116,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getShardedClusterBackup --help @@ -33163,7 +33163,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listShardedClusterBackups --help @@ -33224,7 +33224,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI lang: cURL @@ -33284,7 +33284,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI lang: cURL @@ -33332,7 +33332,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackupRestoreJobs --help @@ -33388,7 +33388,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackupRestoreJob --help @@ -33435,7 +33435,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackups --help @@ -33491,7 +33491,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackup --help @@ -33540,7 +33540,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupCheckpoints --help @@ -33599,7 +33599,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupCheckpoint --help @@ -33660,7 +33660,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI lang: cURL @@ -33725,7 +33725,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexesDeprecated --help @@ -33786,7 +33786,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndexDeprecated --help @@ -33844,7 +33844,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndexDeprecated --help @@ -33914,7 +33914,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI lang: cURL @@ -33965,7 +33965,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedNamespace --help @@ -34015,7 +34015,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: Atlas CLI lang: cURL source: atlas api deleteAllCustomZoneMappings --help @@ -34074,7 +34074,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI lang: cURL @@ -34137,7 +34137,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI lang: cURL source: atlas api deleteManagedNamespace --help @@ -34198,7 +34198,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI lang: cURL @@ -34321,7 +34321,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI lang: cURL @@ -34373,7 +34373,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOnlineArchives --help @@ -34434,7 +34434,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI lang: cURL @@ -34494,7 +34494,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: Atlas CLI lang: cURL source: atlas api deleteOnlineArchive --help @@ -34554,7 +34554,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOnlineArchive --help @@ -34624,7 +34624,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI lang: cURL @@ -34700,7 +34700,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadOnlineArchiveQueryLogs --help @@ -34752,7 +34752,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: Atlas CLI lang: cURL source: atlas api endOutageSimulation --help @@ -34803,7 +34803,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOutageSimulation --help @@ -34860,7 +34860,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI lang: cURL @@ -34912,7 +34912,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterAdvancedConfiguration --help @@ -34974,7 +34974,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI lang: cURL @@ -35020,7 +35020,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI lang: cURL @@ -35083,7 +35083,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupRestoreJobs --help @@ -35138,7 +35138,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -35199,7 +35199,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupRestoreJob --help @@ -35247,7 +35247,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchDeployment --help @@ -35295,7 +35295,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchDeployment --help @@ -35353,7 +35353,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -35412,7 +35412,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -35463,7 +35463,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshotSchedule --help @@ -35519,7 +35519,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI lang: cURL @@ -35579,7 +35579,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacySnapshots --help @@ -35636,7 +35636,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteLegacySnapshot --help @@ -35690,7 +35690,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshot --help @@ -35752,7 +35752,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -35798,7 +35798,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterStatus --help @@ -35878,7 +35878,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostLogs --help @@ -35929,7 +35929,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderRegions --help @@ -35981,7 +35981,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI lang: cURL @@ -36034,7 +36034,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI lang: cURL @@ -36087,7 +36087,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainerByCloudProvider --help @@ -36138,7 +36138,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI lang: cURL @@ -36191,7 +36191,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/containers/{containerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringContainer --help @@ -36236,7 +36236,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringContainer --help @@ -36297,7 +36297,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI lang: cURL @@ -36337,7 +36337,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainers --help @@ -36375,7 +36375,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCustomDatabaseRoles --help @@ -36426,7 +36426,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI lang: cURL @@ -36473,7 +36473,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: Atlas CLI lang: cURL source: atlas api deleteCustomDatabaseRole --help @@ -36516,7 +36516,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCustomDatabaseRole --help @@ -36573,7 +36573,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI lang: cURL @@ -36621,7 +36621,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listFederatedDatabases --help @@ -36670,7 +36670,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI lang: cURL @@ -36713,7 +36713,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteFederatedDatabase --help @@ -36757,7 +36757,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederatedDatabase --help @@ -36814,7 +36814,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -36861,7 +36861,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimits --help @@ -36921,7 +36921,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteOneDataFederationInstanceQueryLimit --help @@ -36981,7 +36981,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimit --help @@ -37052,7 +37052,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -37119,7 +37119,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadFederatedDatabaseQueryLogs --help @@ -37158,7 +37158,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUsers --help @@ -37300,7 +37300,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI lang: cURL @@ -37367,7 +37367,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: Atlas CLI lang: cURL source: atlas api deleteDatabaseUser --help @@ -37430,7 +37430,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseUser --help @@ -37507,7 +37507,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI lang: cURL @@ -37555,7 +37555,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUserCertificates --help @@ -37621,7 +37621,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI lang: cURL @@ -37704,7 +37704,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByClusterName --help @@ -37783,7 +37783,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByHostname --help @@ -37822,7 +37822,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRest --help @@ -37883,7 +37883,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI lang: cURL @@ -37928,7 +37928,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help @@ -37979,7 +37979,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI lang: cURL @@ -38040,7 +38040,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help @@ -38092,7 +38092,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpoint --help @@ -38185,7 +38185,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectEvents --help @@ -38241,7 +38241,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectEvent --help @@ -38279,7 +38279,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listMetricTypes --help @@ -38347,7 +38347,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIndexMetrics --help @@ -38414,7 +38414,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIndexMetrics --help @@ -38480,7 +38480,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMeasurements --help @@ -38523,7 +38523,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listThirdPartyIntegrations --help @@ -38581,7 +38581,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: Atlas CLI lang: cURL source: atlas api deleteThirdPartyIntegration --help @@ -38638,7 +38638,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getThirdPartyIntegration --help @@ -38708,7 +38708,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -38777,7 +38777,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -38823,7 +38823,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectInvitations --help @@ -38872,7 +38872,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -38918,7 +38918,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -38965,7 +38965,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectInvitation --help @@ -39013,7 +39013,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectInvitation --help @@ -39070,7 +39070,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -39110,7 +39110,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllIPAddresses --help @@ -39154,7 +39154,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectLimits --help @@ -39230,7 +39230,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectLimit --help @@ -39307,7 +39307,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLimit --help @@ -39395,7 +39395,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -39456,7 +39456,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI lang: cURL @@ -39499,7 +39499,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushMigration --help @@ -39541,7 +39541,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI lang: cURL @@ -39595,7 +39595,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI lang: cURL @@ -39648,7 +39648,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getValidationStatus --help @@ -39683,7 +39683,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/maintenanceWindow" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: Atlas CLI lang: cURL source: atlas api resetMaintenanceWindow --help @@ -39718,7 +39718,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMaintenanceWindow --help @@ -39762,7 +39762,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI lang: cURL @@ -39799,7 +39799,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI lang: cURL @@ -39836,7 +39836,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI lang: cURL @@ -39873,7 +39873,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedSlowMs --help @@ -39909,7 +39909,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: Atlas CLI lang: cURL source: atlas api disableSlowOperationThresholding --help @@ -39946,7 +39946,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI lang: cURL @@ -40024,7 +40024,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLTSVersions --help @@ -40075,7 +40075,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringConnections --help @@ -40127,7 +40127,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI lang: cURL @@ -40175,7 +40175,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/peers/{peerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringConnection --help @@ -40221,7 +40221,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringConnection --help @@ -40279,7 +40279,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI lang: cURL @@ -40319,7 +40319,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelines --help @@ -40365,7 +40365,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI lang: cURL @@ -40412,7 +40412,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: Atlas CLI lang: cURL source: atlas api deletePipeline --help @@ -40458,7 +40458,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipeline --help @@ -40515,7 +40515,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI lang: cURL @@ -40565,7 +40565,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSchedules --help @@ -40622,7 +40622,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSnapshots --help @@ -40670,7 +40670,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI lang: cURL @@ -40719,7 +40719,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI lang: cURL @@ -40777,7 +40777,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineRuns --help @@ -40834,7 +40834,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: Atlas CLI lang: cURL source: atlas api deletePipelineRunDataset --help @@ -40890,7 +40890,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipelineRun --help @@ -40945,7 +40945,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI lang: cURL @@ -40995,7 +40995,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPrivateEndpointServices --help @@ -41051,7 +41051,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpointService --help @@ -41108,7 +41108,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpointService --help @@ -41178,7 +41178,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -41242,7 +41242,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpoint --help @@ -41306,7 +41306,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpoint --help @@ -41353,7 +41353,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI lang: cURL @@ -41392,7 +41392,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRegionalizedPrivateEndpointSetting --help @@ -41437,7 +41437,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI lang: cURL @@ -41485,7 +41485,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessPrivateEndpoints --help @@ -41543,7 +41543,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -41598,7 +41598,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessPrivateEndpoint --help @@ -41651,7 +41651,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessPrivateEndpoint --help @@ -41712,7 +41712,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI lang: cURL @@ -41753,7 +41753,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help @@ -41802,7 +41802,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI lang: cURL @@ -41846,7 +41846,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDataFederationPrivateEndpoints --help @@ -41910,7 +41910,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI lang: cURL @@ -41958,7 +41958,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteDataFederationPrivateEndpoint --help @@ -42006,7 +42006,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataFederationPrivateEndpoint --help @@ -42045,7 +42045,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasProcesses --help @@ -42089,7 +42089,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasProcess --help @@ -42136,7 +42136,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabases --help @@ -42186,7 +42186,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabase --help @@ -42262,7 +42262,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseMeasurements --help @@ -42309,7 +42309,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskPartitions --help @@ -42358,7 +42358,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskMeasurements --help @@ -42450,7 +42450,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDiskMeasurements --help @@ -42653,7 +42653,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostMeasurements --help @@ -42717,7 +42717,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueryNamespaces --help @@ -42798,7 +42798,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueries --help @@ -42886,7 +42886,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSuggestedIndexes --help @@ -42926,7 +42926,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: Atlas CLI lang: cURL source: atlas api deletePushBasedLogConfiguration --help @@ -42965,7 +42965,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushBasedLogConfiguration --help @@ -43013,7 +43013,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -43062,7 +43062,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -43112,7 +43112,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI lang: cURL @@ -43157,7 +43157,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSampleDatasetLoadStatus --help @@ -43196,7 +43196,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessInstances --help @@ -43243,7 +43243,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI lang: cURL @@ -43294,7 +43294,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackupRestoreJobs --help @@ -43352,7 +43352,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -43409,7 +43409,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackupRestoreJob --help @@ -43459,7 +43459,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackups --help @@ -43515,7 +43515,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackup --help @@ -43560,7 +43560,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessAutoIndexing --help @@ -43610,7 +43610,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI lang: cURL @@ -43660,7 +43660,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serverless/{name}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessInstance --help @@ -43708,7 +43708,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessInstance --help @@ -43762,7 +43762,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI lang: cURL @@ -43803,7 +43803,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectServiceAccounts --help @@ -43849,7 +43849,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" -d { } - label: Atlas CLI lang: cURL @@ -43895,7 +43895,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectServiceAccount --help @@ -43938,7 +43938,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectServiceAccount --help @@ -43991,7 +43991,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -44047,7 +44047,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -44088,7 +44088,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectSettings --help @@ -44135,7 +44135,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -44174,7 +44174,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamInstances --help @@ -44219,7 +44219,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI lang: cURL @@ -44266,7 +44266,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamInstance --help @@ -44315,7 +44315,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamInstance --help @@ -44370,7 +44370,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -44438,7 +44438,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadStreamTenantAuditLogs --help @@ -44484,7 +44484,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamConnections --help @@ -44537,7 +44537,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI lang: cURL @@ -44590,7 +44590,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamConnection --help @@ -44638,7 +44638,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamConnection --help @@ -44699,7 +44699,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI lang: cURL @@ -44745,7 +44745,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectTeams --help @@ -44799,7 +44799,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -44851,7 +44851,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectTeam --help @@ -44912,7 +44912,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -44949,7 +44949,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfiguration --help @@ -44997,7 +44997,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI lang: cURL @@ -45036,7 +45036,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: Atlas CLI lang: cURL source: atlas api disableCustomerManagedX509 --help @@ -45072,7 +45072,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: Atlas CLI lang: cURL source: atlas api deleteLDAPConfiguration --help @@ -45118,7 +45118,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI lang: cURL @@ -45164,7 +45164,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfigurationStatus --help @@ -45215,7 +45215,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectUsers --help @@ -45262,7 +45262,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectUser --help @@ -45319,7 +45319,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -45369,7 +45369,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/groups/byName/{groupName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectByName --help @@ -45418,7 +45418,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizations --help @@ -45468,7 +45468,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" -d { } - label: Atlas CLI lang: cURL @@ -45517,7 +45517,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganization --help @@ -45558,7 +45558,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganization --help @@ -45607,7 +45607,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -45650,7 +45650,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeys --help @@ -45696,7 +45696,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -45745,7 +45745,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKey --help @@ -45792,7 +45792,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKey --help @@ -45849,7 +45849,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -45901,7 +45901,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeyAccessListsEntries --help @@ -45962,7 +45962,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -46023,7 +46023,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKeyAccessListEntry --help @@ -46080,7 +46080,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKeyAccessList --help @@ -46125,7 +46125,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI lang: cURL @@ -46180,7 +46180,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api createCostExplorerQueryProcess_1 --help @@ -46251,7 +46251,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationEvents --help @@ -46307,7 +46307,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationEvent --help @@ -46347,7 +46347,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederationSettings --help @@ -46403,7 +46403,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationProjects --help @@ -46451,7 +46451,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationInvitations --help @@ -46498,7 +46498,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -46546,7 +46546,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -46593,7 +46593,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganizationInvitation --help @@ -46640,7 +46640,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationInvitation --help @@ -46696,7 +46696,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -46797,7 +46797,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listInvoices --help @@ -46850,7 +46850,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getInvoice --help @@ -46904,7 +46904,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadInvoiceCSV --help @@ -46942,7 +46942,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPendingInvoices --help @@ -46982,7 +46982,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSourceProjects --help @@ -47019,7 +47019,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: Atlas CLI lang: cURL source: atlas api deleteLinkToken --help @@ -47064,7 +47064,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI lang: cURL @@ -47105,7 +47105,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServiceAccounts --help @@ -47150,7 +47150,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" -d { } - label: Atlas CLI lang: cURL @@ -47193,7 +47193,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: Atlas CLI lang: cURL source: atlas api deleteServiceAccount --help @@ -47236,7 +47236,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServiceAccount --help @@ -47289,7 +47289,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -47336,7 +47336,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServiceAccountProjects --help @@ -47388,7 +47388,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" -d { } - label: Atlas CLI lang: cURL @@ -47437,7 +47437,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: Atlas CLI lang: cURL source: atlas api deleteServiceAccountSecret --help @@ -47477,7 +47477,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationSettings --help @@ -47524,7 +47524,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -47571,7 +47571,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationTeams --help @@ -47623,7 +47623,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -47676,7 +47676,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api deleteTeam --help @@ -47727,7 +47727,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamById --help @@ -47788,7 +47788,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -47845,7 +47845,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listTeamUsers --help @@ -47908,7 +47908,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI lang: cURL @@ -47968,7 +47968,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeTeamUser --help @@ -48017,7 +48017,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamByName --help @@ -48060,7 +48060,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationUsers --help @@ -48110,7 +48110,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeOrganizationUser --help @@ -48167,7 +48167,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -48218,7 +48218,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" -d { } - label: Atlas CLI lang: cURL @@ -48265,7 +48265,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/users/{userId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUser --help @@ -48309,7 +48309,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ - -X GET "/api/atlas/v2/users/byName/{userName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUserByUsername --help 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 3c85afe5fb..bb86541385 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 @@ -251,7 +251,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 GET \"/api/atlas/v2?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", @@ -308,7 +308,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 GET \"/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" }, { "lang": "cURL", @@ -371,7 +371,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 GET \"/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { "lang": "cURL", @@ -434,7 +434,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 GET \"/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { "lang": "cURL", @@ -488,7 +488,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", @@ -554,7 +554,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" }, { "lang": "cURL", @@ -627,7 +627,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { "lang": "cURL", @@ -698,7 +698,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" }, { "lang": "cURL", @@ -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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -843,7 +843,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -988,7 +988,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" }, { "lang": "cURL", @@ -1062,7 +1062,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1245,7 +1245,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" }, { "lang": "cURL", @@ -1384,7 +1384,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" }, { "lang": "cURL", @@ -1455,7 +1455,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1601,7 +1601,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks\"" }, { "lang": "cURL", @@ -1661,7 +1661,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" }, { "lang": "cURL", @@ -1727,7 +1727,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 GET \"/api/atlas/v2/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -1887,7 +1887,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 GET \"/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" }, { "lang": "cURL", @@ -1947,7 +1947,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 DELETE \"/api/atlas/v2/groups/{groupId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", @@ -2005,7 +2005,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 GET \"/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2226,7 +2226,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 GET \"/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2389,7 +2389,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 DELETE \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { "lang": "cURL", @@ -2465,7 +2465,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" }, { "lang": "cURL", @@ -2542,7 +2542,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" }, { "lang": "cURL", @@ -2608,7 +2608,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2747,7 +2747,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 DELETE \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { "lang": "cURL", @@ -2818,7 +2818,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3067,7 +3067,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -3149,7 +3149,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 GET \"/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -3221,7 +3221,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3388,7 +3388,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" }, { "lang": "cURL", @@ -3458,7 +3458,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 GET \"/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3600,7 +3600,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 DELETE \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3828,7 +3828,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 GET \"/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -3954,7 +3954,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 GET \"/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -4087,7 +4087,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4237,7 +4237,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 DELETE \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" }, { "lang": "cURL", @@ -4306,7 +4306,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" }, { "lang": "cURL", @@ -4367,7 +4367,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 GET \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4506,7 +4506,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4657,7 +4657,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 DELETE \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" }, { "lang": "cURL", @@ -4726,7 +4726,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -4890,7 +4890,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 GET \"/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -5056,7 +5056,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5299,7 +5299,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { "lang": "cURL", @@ -5373,7 +5373,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\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.2023-11-15+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5700,7 +5700,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" }, { "lang": "cURL", @@ -5778,7 +5778,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -5949,7 +5949,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" }, { "lang": "cURL", @@ -6028,7 +6028,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -6098,7 +6098,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" }, { "lang": "cURL", @@ -6167,7 +6167,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6332,7 +6332,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6494,7 +6494,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" }, { "lang": "cURL", @@ -6576,7 +6576,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -6648,7 +6648,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" }, { "lang": "cURL", @@ -6732,7 +6732,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -6814,7 +6814,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7160,7 +7160,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" }, { "lang": "cURL", @@ -7244,7 +7244,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" }, { "lang": "cURL", @@ -7316,7 +7316,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -7400,7 +7400,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -7479,7 +7479,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" }, { "lang": "cURL", @@ -7567,7 +7567,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" }, { "lang": "cURL", @@ -7639,7 +7639,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -8093,7 +8093,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" }, { "lang": "cURL", @@ -8183,7 +8183,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" }, { "lang": "cURL", @@ -8268,7 +8268,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -8445,7 +8445,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" }, { "lang": "cURL", @@ -8520,7 +8520,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8701,7 +8701,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -9049,7 +9049,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -9249,7 +9249,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -9337,7 +9337,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" }, { "lang": "cURL", @@ -9426,7 +9426,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\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.2023-11-15+json\" \\\n -X DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" }, { "lang": "cURL", @@ -9685,7 +9685,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9847,7 +9847,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -10098,7 +10098,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -10265,7 +10265,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" }, { "lang": "cURL", @@ -10338,7 +10338,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" }, { "lang": "cURL", @@ -10410,7 +10410,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10653,7 +10653,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -10825,7 +10825,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -10910,7 +10910,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -10990,7 +10990,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -11150,7 +11150,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" }, { "lang": "cURL", @@ -11239,7 +11239,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -11381,7 +11381,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" }, { "lang": "cURL", @@ -11498,7 +11498,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" }, { "lang": "cURL", @@ -11558,7 +11558,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 GET \"/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true\"" }, { "lang": "cURL", @@ -11642,7 +11642,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 GET \"/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -11786,7 +11786,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 GET \"/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" }, { "lang": "cURL", @@ -11865,7 +11865,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 DELETE \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { "lang": "cURL", @@ -11933,7 +11933,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 GET \"/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -12084,7 +12084,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -12234,7 +12234,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 DELETE \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" }, { "lang": "cURL", @@ -12301,7 +12301,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -12461,7 +12461,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -12602,7 +12602,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { "lang": "cURL", @@ -12669,7 +12669,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -12828,7 +12828,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" }, { "lang": "cURL", @@ -12906,7 +12906,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" }, { "lang": "cURL", @@ -12985,7 +12985,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -13174,7 +13174,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -13240,7 +13240,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -13552,7 +13552,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 DELETE \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" }, { "lang": "cURL", @@ -13629,7 +13629,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -13804,7 +13804,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -14019,7 +14019,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" }, { "lang": "cURL", @@ -14139,7 +14139,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" }, { "lang": "cURL", @@ -14196,7 +14196,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -14340,7 +14340,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -14510,7 +14510,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 DELETE \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" }, { "lang": "cURL", @@ -14589,7 +14589,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -14722,7 +14722,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 GET \"/api/atlas/v2/groups/{groupId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true\"" }, { "lang": "cURL", @@ -14803,7 +14803,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 GET \"/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -14863,7 +14863,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" }, { "lang": "cURL", @@ -14969,7 +14969,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -15078,7 +15078,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -15179,7 +15179,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" }, { "lang": "cURL", @@ -15251,7 +15251,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 GET \"/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" }, { "lang": "cURL", @@ -15336,7 +15336,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 DELETE \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { "lang": "cURL", @@ -15419,7 +15419,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 GET \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -15698,7 +15698,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 GET \"/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -15908,7 +15908,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 DELETE \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -15980,7 +15980,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 GET \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -16124,7 +16124,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 GET \"/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" }, { "lang": "cURL", @@ -16193,7 +16193,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 GET \"/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" }, { "lang": "cURL", @@ -16280,7 +16280,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 DELETE \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { "lang": "cURL", @@ -16368,7 +16368,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 GET \"/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -16705,7 +16705,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" }, { "lang": "cURL", @@ -16771,7 +16771,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -16891,7 +16891,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 DELETE \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { "lang": "cURL", @@ -16946,7 +16946,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 GET \"/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -17177,7 +17177,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 GET \"/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" }, { "lang": "cURL", @@ -17234,7 +17234,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 DELETE \"/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -17409,7 +17409,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 GET \"/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" }, { "lang": "cURL", @@ -17492,7 +17492,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 GET \"/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -17643,7 +17643,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 DELETE \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { "lang": "cURL", @@ -17713,7 +17713,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 GET \"/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -17860,7 +17860,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -17998,7 +17998,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { "lang": "cURL", @@ -18068,7 +18068,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\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.2023-11-15+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" }, { "lang": "cURL", @@ -18318,7 +18318,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -18553,7 +18553,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" }, { "lang": "cURL", @@ -18638,7 +18638,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" }, { "lang": "cURL", @@ -18721,7 +18721,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -18936,7 +18936,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -19076,7 +19076,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -19237,7 +19237,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" }, { "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-11-15+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -19479,7 +19479,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" }, { "lang": "cURL", @@ -19563,7 +19563,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" }, { "lang": "cURL", @@ -19648,7 +19648,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -19846,7 +19846,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -19941,7 +19941,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -20003,7 +20003,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 GET \"/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -20149,7 +20149,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -20290,7 +20290,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" }, { "lang": "cURL", @@ -20363,7 +20363,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -20429,7 +20429,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 GET \"/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" }, { "lang": "cURL", @@ -20497,7 +20497,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" }, { "lang": "cURL", @@ -20563,7 +20563,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -20640,7 +20640,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" }, { "lang": "cURL", @@ -20717,7 +20717,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" }, { "lang": "cURL", @@ -20833,7 +20833,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -20910,7 +20910,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" }, { "lang": "cURL", @@ -20984,7 +20984,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" }, { "lang": "cURL", @@ -21109,7 +21109,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -21341,7 +21341,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -21427,7 +21427,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -21537,7 +21537,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" }, { "lang": "cURL", @@ -21663,7 +21663,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" }, { "lang": "cURL", @@ -21780,7 +21780,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" }, { "lang": "cURL", @@ -21843,7 +21843,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 DELETE \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { "lang": "cURL", @@ -21904,7 +21904,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 GET \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -22188,7 +22188,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 GET \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" }, { "lang": "cURL", @@ -22254,7 +22254,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 GET \"/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -22407,7 +22407,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -22578,7 +22578,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -22659,7 +22659,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -22741,7 +22741,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -22810,7 +22810,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -22958,7 +22958,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 DELETE \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { "lang": "cURL", @@ -23031,7 +23031,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -23178,7 +23178,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 GET \"/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -23318,7 +23318,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 DELETE \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" }, { "lang": "cURL", @@ -23385,7 +23385,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 GET \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -23612,7 +23612,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 GET \"/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -23747,7 +23747,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 GET \"/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -23888,7 +23888,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { "lang": "cURL", @@ -23963,7 +23963,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -24146,7 +24146,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" }, { "lang": "cURL", @@ -24221,7 +24221,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -24383,7 +24383,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" }, { "lang": "cURL", @@ -24456,7 +24456,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"\n -d { }" }, { "lang": "cURL", @@ -24624,7 +24624,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 GET \"/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -24782,7 +24782,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 DELETE \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -24930,7 +24930,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -25053,7 +25053,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { "lang": "cURL", @@ -25110,7 +25110,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -25250,7 +25250,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" }, { "lang": "cURL", @@ -25334,7 +25334,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 GET \"/api/atlas/v2/groups/{groupId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true\"" }, { "lang": "cURL", @@ -25406,7 +25406,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 DELETE \"/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -25572,7 +25572,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 GET \"/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -25713,7 +25713,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 DELETE \"/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", @@ -25777,7 +25777,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 GET \"/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -25922,7 +25922,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -26065,7 +26065,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { "lang": "cURL", @@ -26136,7 +26136,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -26303,7 +26303,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -26489,7 +26489,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" }, { "lang": "cURL", @@ -26574,7 +26574,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -26723,7 +26723,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 GET \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" }, { "lang": "cURL", @@ -26828,7 +26828,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 GET \"/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" }, { "lang": "cURL", @@ -26909,7 +26909,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 GET \"/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -26972,7 +26972,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 GET \"/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" }, { "lang": "cURL", @@ -27052,7 +27052,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 GET \"/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" }, { "lang": "cURL", @@ -27127,7 +27127,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 GET \"/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -27343,7 +27343,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 DELETE \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -27413,7 +27413,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 GET \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -27645,7 +27645,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" }, { "lang": "cURL", @@ -27705,7 +27705,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" }, { "lang": "cURL", @@ -27783,7 +27783,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" }, { "lang": "cURL", @@ -27854,7 +27854,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" }, { "lang": "cURL", @@ -27917,7 +27917,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 GET \"/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" }, { "lang": "cURL", @@ -27974,7 +27974,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 DELETE \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -28109,7 +28109,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -28244,7 +28244,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 DELETE \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" }, { "lang": "cURL", @@ -28311,7 +28311,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -28467,7 +28467,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" }, { "lang": "cURL", @@ -28622,7 +28622,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 DELETE \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" }, { "lang": "cURL", @@ -28685,7 +28685,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 GET \"/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -28833,7 +28833,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 GET \"/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -28988,7 +28988,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" }, { "lang": "cURL", @@ -29067,7 +29067,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { "lang": "cURL", @@ -29144,7 +29144,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -29323,7 +29323,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -29505,7 +29505,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" }, { "lang": "cURL", @@ -29577,7 +29577,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 GET \"/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" }, { "lang": "cURL", @@ -29652,7 +29652,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 DELETE \"/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -29781,7 +29781,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 GET \"/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", @@ -29916,7 +29916,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 GET \"/api/atlas/v2/users/byName/{userName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true\"" }, { "lang": "cURL", @@ -29985,7 +29985,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 GET \"/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { "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 5e77030fd9..c7c117e369 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 @@ -29605,7 +29605,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSystemStatus --help @@ -29642,7 +29642,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationMatchersFieldNames --help @@ -29680,7 +29680,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClustersForAllProjects --help @@ -29718,7 +29718,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/eventTypes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listEventTypes --help @@ -29754,7 +29754,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: Atlas CLI lang: cURL source: atlas api deleteFederationApp --help @@ -29795,7 +29795,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listConnectedOrgConfigs --help @@ -29844,7 +29844,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api removeConnectedOrgConfig --help @@ -29892,7 +29892,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getConnectedOrgConfig --help @@ -29948,7 +29948,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -29989,7 +29989,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listRoleMappings --help @@ -30036,7 +30036,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI lang: cURL @@ -30085,7 +30085,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: Atlas CLI lang: cURL source: atlas api deleteRoleMapping --help @@ -30134,7 +30134,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRoleMapping --help @@ -30191,7 +30191,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI lang: cURL @@ -30255,7 +30255,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIdentityProviders --help @@ -30306,7 +30306,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" -d { } - label: Atlas CLI lang: cURL @@ -30351,7 +30351,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: Atlas CLI lang: cURL source: atlas api deleteIdentityProvider --help @@ -30398,7 +30398,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProvider --help @@ -30454,7 +30454,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI lang: cURL @@ -30499,7 +30499,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: Atlas CLI lang: cURL source: atlas api revokeJwksFromIdentityProvider --help @@ -30538,7 +30538,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProviderMetadata --help @@ -30578,7 +30578,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjects --help @@ -30636,7 +30636,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" -d { } - label: Atlas CLI lang: cURL @@ -30675,7 +30675,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: Atlas CLI lang: cURL source: atlas api deleteProject --help @@ -30712,7 +30712,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProject --help @@ -30761,7 +30761,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI lang: cURL @@ -30811,7 +30811,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI lang: cURL @@ -30854,7 +30854,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectIpAccessLists --help @@ -30909,7 +30909,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -30964,7 +30964,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectIpAccessList --help @@ -31014,7 +31014,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpList --help @@ -31064,7 +31064,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpAccessListStatus --help @@ -31106,7 +31106,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurations --help @@ -31154,7 +31154,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI lang: cURL @@ -31204,7 +31204,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: Atlas CLI lang: cURL source: atlas api deleteAlertConfiguration --help @@ -31254,7 +31254,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlertConfiguration --help @@ -31314,7 +31314,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -31377,7 +31377,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -31432,7 +31432,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertsByAlertConfigurationId --help @@ -31485,7 +31485,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlerts --help @@ -31535,7 +31535,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlert --help @@ -31595,7 +31595,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI lang: cURL @@ -31650,7 +31650,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationsByAlertId --help @@ -31692,7 +31692,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectApiKeys --help @@ -31735,7 +31735,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -31786,7 +31786,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectApiKey --help @@ -31843,7 +31843,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -31898,7 +31898,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -31935,7 +31935,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAuditingConfiguration --help @@ -31980,7 +31980,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI lang: cURL @@ -32017,7 +32017,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAWSCustomDNS --help @@ -32060,7 +32060,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI lang: cURL @@ -32101,7 +32101,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listExportBuckets --help @@ -32152,7 +32152,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI lang: cURL @@ -32203,7 +32203,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI lang: cURL source: atlas api deleteExportBucket --help @@ -32250,7 +32250,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getExportBucket --help @@ -32289,7 +32289,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataProtectionSettings --help @@ -32343,7 +32343,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI lang: cURL @@ -32380,7 +32380,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderAccessRoles --help @@ -32426,7 +32426,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI lang: cURL @@ -32480,7 +32480,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: Atlas CLI lang: cURL source: atlas api deauthorizeCloudProviderAccessRole --help @@ -32525,7 +32525,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCloudProviderAccessRole --help @@ -32584,7 +32584,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI lang: cURL @@ -32631,7 +32631,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClusters --help @@ -32684,7 +32684,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI lang: cURL @@ -32740,7 +32740,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: Atlas CLI lang: cURL source: atlas api deleteCluster --help @@ -32789,7 +32789,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCluster --help @@ -32849,7 +32849,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI lang: cURL @@ -32950,7 +32950,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help @@ -33007,7 +33007,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespacesForCluster --help @@ -33055,7 +33055,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupExportJobs --help @@ -33112,7 +33112,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI lang: cURL @@ -33163,7 +33163,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupExportJob --help @@ -33211,7 +33211,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupRestoreJobs --help @@ -33272,7 +33272,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -33329,7 +33329,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: Atlas CLI lang: cURL source: atlas api cancelBackupRestoreJob --help @@ -33382,7 +33382,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupRestoreJob --help @@ -33429,7 +33429,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: Atlas CLI lang: cURL source: atlas api deleteAllBackupSchedules --help @@ -33475,7 +33475,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupSchedule --help @@ -33534,7 +33534,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI lang: cURL @@ -33586,7 +33586,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listReplicaSetBackups --help @@ -33643,7 +33643,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI lang: cURL @@ -33700,7 +33700,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteReplicaSetBackup --help @@ -33755,7 +33755,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getReplicaSetBackup --help @@ -33818,7 +33818,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -33873,7 +33873,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteShardedClusterBackup --help @@ -33928,7 +33928,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getShardedClusterBackup --help @@ -33975,7 +33975,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listShardedClusterBackups --help @@ -34036,7 +34036,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI lang: cURL @@ -34096,7 +34096,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI lang: cURL @@ -34144,7 +34144,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackupRestoreJobs --help @@ -34200,7 +34200,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackupRestoreJob --help @@ -34247,7 +34247,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackups --help @@ -34303,7 +34303,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackup --help @@ -34352,7 +34352,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupCheckpoints --help @@ -34411,7 +34411,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupCheckpoint --help @@ -34459,7 +34459,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPinnedNamespaces --help @@ -34521,7 +34521,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI lang: cURL @@ -34584,7 +34584,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI lang: cURL @@ -34641,7 +34641,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" -d { } - label: Atlas CLI lang: cURL @@ -34703,7 +34703,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI lang: cURL @@ -34768,7 +34768,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexesDeprecated --help @@ -34829,7 +34829,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndexDeprecated --help @@ -34887,7 +34887,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndexDeprecated --help @@ -34957,7 +34957,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI lang: cURL @@ -35008,7 +35008,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedNamespace --help @@ -35058,7 +35058,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: Atlas CLI lang: cURL source: atlas api deleteAllCustomZoneMappings --help @@ -35117,7 +35117,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI lang: cURL @@ -35180,7 +35180,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI lang: cURL source: atlas api deleteManagedNamespace --help @@ -35241,7 +35241,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI lang: cURL @@ -35364,7 +35364,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI lang: cURL @@ -35416,7 +35416,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOnlineArchives --help @@ -35477,7 +35477,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI lang: cURL @@ -35537,7 +35537,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: Atlas CLI lang: cURL source: atlas api deleteOnlineArchive --help @@ -35597,7 +35597,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOnlineArchive --help @@ -35667,7 +35667,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI lang: cURL @@ -35743,7 +35743,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadOnlineArchiveQueryLogs --help @@ -35795,7 +35795,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: Atlas CLI lang: cURL source: atlas api endOutageSimulation --help @@ -35846,7 +35846,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOutageSimulation --help @@ -35903,7 +35903,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI lang: cURL @@ -35955,7 +35955,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterAdvancedConfiguration --help @@ -36017,7 +36017,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI lang: cURL @@ -36063,7 +36063,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI lang: cURL @@ -36126,7 +36126,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupRestoreJobs --help @@ -36181,7 +36181,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -36242,7 +36242,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupRestoreJob --help @@ -36290,7 +36290,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchDeployment --help @@ -36338,7 +36338,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchDeployment --help @@ -36396,7 +36396,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -36455,7 +36455,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -36506,7 +36506,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshotSchedule --help @@ -36562,7 +36562,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI lang: cURL @@ -36622,7 +36622,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacySnapshots --help @@ -36679,7 +36679,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteLegacySnapshot --help @@ -36733,7 +36733,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshot --help @@ -36795,7 +36795,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -36841,7 +36841,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterStatus --help @@ -36921,7 +36921,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostLogs --help @@ -36972,7 +36972,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderRegions --help @@ -37024,7 +37024,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI lang: cURL @@ -37077,7 +37077,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI lang: cURL @@ -37117,7 +37117,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceMetrics --help @@ -37169,7 +37169,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainerByCloudProvider --help @@ -37220,7 +37220,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI lang: cURL @@ -37273,7 +37273,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/containers/{containerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringContainer --help @@ -37318,7 +37318,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringContainer --help @@ -37379,7 +37379,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI lang: cURL @@ -37419,7 +37419,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainers --help @@ -37457,7 +37457,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCustomDatabaseRoles --help @@ -37508,7 +37508,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI lang: cURL @@ -37555,7 +37555,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: Atlas CLI lang: cURL source: atlas api deleteCustomDatabaseRole --help @@ -37598,7 +37598,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCustomDatabaseRole --help @@ -37655,7 +37655,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI lang: cURL @@ -37703,7 +37703,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listFederatedDatabases --help @@ -37752,7 +37752,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI lang: cURL @@ -37795,7 +37795,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteFederatedDatabase --help @@ -37839,7 +37839,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederatedDatabase --help @@ -37896,7 +37896,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -37943,7 +37943,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimits --help @@ -38003,7 +38003,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteOneDataFederationInstanceQueryLimit --help @@ -38063,7 +38063,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimit --help @@ -38134,7 +38134,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -38201,7 +38201,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadFederatedDatabaseQueryLogs --help @@ -38240,7 +38240,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUsers --help @@ -38382,7 +38382,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI lang: cURL @@ -38449,7 +38449,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: Atlas CLI lang: cURL source: atlas api deleteDatabaseUser --help @@ -38512,7 +38512,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseUser --help @@ -38589,7 +38589,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI lang: cURL @@ -38637,7 +38637,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUserCertificates --help @@ -38703,7 +38703,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI lang: cURL @@ -38786,7 +38786,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByClusterName --help @@ -38865,7 +38865,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByHostname --help @@ -38904,7 +38904,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRest --help @@ -38965,7 +38965,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI lang: cURL @@ -39010,7 +39010,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help @@ -39061,7 +39061,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI lang: cURL @@ -39122,7 +39122,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help @@ -39174,7 +39174,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpoint --help @@ -39267,7 +39267,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectEvents --help @@ -39323,7 +39323,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectEvent --help @@ -39361,7 +39361,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listMetricTypes --help @@ -39429,7 +39429,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIndexMetrics --help @@ -39496,7 +39496,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIndexMetrics --help @@ -39562,7 +39562,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMeasurements --help @@ -39605,7 +39605,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listThirdPartyIntegrations --help @@ -39663,7 +39663,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: Atlas CLI lang: cURL source: atlas api deleteThirdPartyIntegration --help @@ -39720,7 +39720,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getThirdPartyIntegration --help @@ -39790,7 +39790,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -39859,7 +39859,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -39905,7 +39905,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectInvitations --help @@ -39954,7 +39954,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -40000,7 +40000,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -40047,7 +40047,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectInvitation --help @@ -40095,7 +40095,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectInvitation --help @@ -40152,7 +40152,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -40192,7 +40192,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllIPAddresses --help @@ -40236,7 +40236,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectLimits --help @@ -40312,7 +40312,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectLimit --help @@ -40389,7 +40389,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLimit --help @@ -40477,7 +40477,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -40538,7 +40538,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI lang: cURL @@ -40581,7 +40581,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushMigration --help @@ -40623,7 +40623,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI lang: cURL @@ -40677,7 +40677,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI lang: cURL @@ -40730,7 +40730,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getValidationStatus --help @@ -40765,7 +40765,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/maintenanceWindow" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: Atlas CLI lang: cURL source: atlas api resetMaintenanceWindow --help @@ -40800,7 +40800,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMaintenanceWindow --help @@ -40844,7 +40844,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI lang: cURL @@ -40881,7 +40881,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI lang: cURL @@ -40918,7 +40918,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI lang: cURL @@ -40955,7 +40955,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedSlowMs --help @@ -40991,7 +40991,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: Atlas CLI lang: cURL source: atlas api disableSlowOperationThresholding --help @@ -41028,7 +41028,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI lang: cURL @@ -41106,7 +41106,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLTSVersions --help @@ -41157,7 +41157,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringConnections --help @@ -41209,7 +41209,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI lang: cURL @@ -41257,7 +41257,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/peers/{peerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringConnection --help @@ -41303,7 +41303,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringConnection --help @@ -41361,7 +41361,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI lang: cURL @@ -41401,7 +41401,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelines --help @@ -41447,7 +41447,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI lang: cURL @@ -41494,7 +41494,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: Atlas CLI lang: cURL source: atlas api deletePipeline --help @@ -41540,7 +41540,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipeline --help @@ -41597,7 +41597,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI lang: cURL @@ -41647,7 +41647,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSchedules --help @@ -41704,7 +41704,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSnapshots --help @@ -41752,7 +41752,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI lang: cURL @@ -41801,7 +41801,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI lang: cURL @@ -41859,7 +41859,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineRuns --help @@ -41916,7 +41916,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: Atlas CLI lang: cURL source: atlas api deletePipelineRunDataset --help @@ -41972,7 +41972,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipelineRun --help @@ -42027,7 +42027,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI lang: cURL @@ -42077,7 +42077,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPrivateEndpointServices --help @@ -42133,7 +42133,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpointService --help @@ -42190,7 +42190,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpointService --help @@ -42260,7 +42260,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -42324,7 +42324,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpoint --help @@ -42388,7 +42388,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpoint --help @@ -42435,7 +42435,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI lang: cURL @@ -42474,7 +42474,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRegionalizedPrivateEndpointSetting --help @@ -42519,7 +42519,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI lang: cURL @@ -42567,7 +42567,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessPrivateEndpoints --help @@ -42625,7 +42625,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -42680,7 +42680,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessPrivateEndpoint --help @@ -42733,7 +42733,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessPrivateEndpoint --help @@ -42794,7 +42794,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI lang: cURL @@ -42835,7 +42835,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help @@ -42884,7 +42884,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI lang: cURL @@ -42928,7 +42928,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDataFederationPrivateEndpoints --help @@ -42992,7 +42992,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI lang: cURL @@ -43040,7 +43040,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteDataFederationPrivateEndpoint --help @@ -43088,7 +43088,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataFederationPrivateEndpoint --help @@ -43127,7 +43127,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasProcesses --help @@ -43171,7 +43171,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasProcess --help @@ -43250,7 +43250,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help @@ -43289,7 +43289,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespacesForHost --help @@ -43336,7 +43336,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabases --help @@ -43386,7 +43386,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabase --help @@ -43462,7 +43462,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseMeasurements --help @@ -43509,7 +43509,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskPartitions --help @@ -43558,7 +43558,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskMeasurements --help @@ -43650,7 +43650,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDiskMeasurements --help @@ -43853,7 +43853,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostMeasurements --help @@ -43917,7 +43917,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueryNamespaces --help @@ -43998,7 +43998,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueries --help @@ -44086,7 +44086,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSuggestedIndexes --help @@ -44126,7 +44126,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: Atlas CLI lang: cURL source: atlas api deletePushBasedLogConfiguration --help @@ -44165,7 +44165,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushBasedLogConfiguration --help @@ -44213,7 +44213,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -44262,7 +44262,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -44312,7 +44312,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI lang: cURL @@ -44357,7 +44357,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSampleDatasetLoadStatus --help @@ -44396,7 +44396,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessInstances --help @@ -44443,7 +44443,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI lang: cURL @@ -44494,7 +44494,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackupRestoreJobs --help @@ -44552,7 +44552,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -44609,7 +44609,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackupRestoreJob --help @@ -44659,7 +44659,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackups --help @@ -44715,7 +44715,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackup --help @@ -44760,7 +44760,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessAutoIndexing --help @@ -44810,7 +44810,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI lang: cURL @@ -44860,7 +44860,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serverless/{name}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessInstance --help @@ -44908,7 +44908,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessInstance --help @@ -44962,7 +44962,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI lang: cURL @@ -45003,7 +45003,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectServiceAccounts --help @@ -45049,7 +45049,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" -d { } - label: Atlas CLI lang: cURL @@ -45095,7 +45095,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectServiceAccount --help @@ -45138,7 +45138,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectServiceAccount --help @@ -45191,7 +45191,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -45247,7 +45247,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -45288,7 +45288,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectSettings --help @@ -45335,7 +45335,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -45374,7 +45374,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamInstances --help @@ -45419,7 +45419,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI lang: cURL @@ -45466,7 +45466,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamInstance --help @@ -45515,7 +45515,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamInstance --help @@ -45570,7 +45570,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -45638,7 +45638,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadStreamTenantAuditLogs --help @@ -45684,7 +45684,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamConnections --help @@ -45737,7 +45737,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI lang: cURL @@ -45790,7 +45790,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamConnection --help @@ -45838,7 +45838,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamConnection --help @@ -45899,7 +45899,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI lang: cURL @@ -45945,7 +45945,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectTeams --help @@ -45999,7 +45999,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -46051,7 +46051,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectTeam --help @@ -46112,7 +46112,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -46149,7 +46149,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfiguration --help @@ -46197,7 +46197,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI lang: cURL @@ -46236,7 +46236,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: Atlas CLI lang: cURL source: atlas api disableCustomerManagedX509 --help @@ -46272,7 +46272,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: Atlas CLI lang: cURL source: atlas api deleteLDAPConfiguration --help @@ -46318,7 +46318,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI lang: cURL @@ -46364,7 +46364,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfigurationStatus --help @@ -46415,7 +46415,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectUsers --help @@ -46462,7 +46462,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectUser --help @@ -46519,7 +46519,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -46569,7 +46569,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/groups/byName/{groupName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectByName --help @@ -46618,7 +46618,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizations --help @@ -46668,7 +46668,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" -d { } - label: Atlas CLI lang: cURL @@ -46717,7 +46717,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganization --help @@ -46758,7 +46758,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganization --help @@ -46807,7 +46807,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -46850,7 +46850,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeys --help @@ -46896,7 +46896,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -46945,7 +46945,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKey --help @@ -46992,7 +46992,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKey --help @@ -47049,7 +47049,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -47101,7 +47101,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeyAccessListsEntries --help @@ -47162,7 +47162,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -47223,7 +47223,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKeyAccessListEntry --help @@ -47280,7 +47280,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKeyAccessList --help @@ -47325,7 +47325,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI lang: cURL @@ -47380,7 +47380,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api createCostExplorerQueryProcess_1 --help @@ -47451,7 +47451,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationEvents --help @@ -47507,7 +47507,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationEvent --help @@ -47547,7 +47547,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederationSettings --help @@ -47603,7 +47603,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationProjects --help @@ -47651,7 +47651,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationInvitations --help @@ -47698,7 +47698,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -47746,7 +47746,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -47793,7 +47793,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganizationInvitation --help @@ -47840,7 +47840,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationInvitation --help @@ -47896,7 +47896,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -47997,7 +47997,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listInvoices --help @@ -48050,7 +48050,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getInvoice --help @@ -48104,7 +48104,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadInvoiceCSV --help @@ -48142,7 +48142,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPendingInvoices --help @@ -48182,7 +48182,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSourceProjects --help @@ -48219,7 +48219,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: Atlas CLI lang: cURL source: atlas api deleteLinkToken --help @@ -48264,7 +48264,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI lang: cURL @@ -48305,7 +48305,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServiceAccounts --help @@ -48350,7 +48350,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" -d { } - label: Atlas CLI lang: cURL @@ -48393,7 +48393,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: Atlas CLI lang: cURL source: atlas api deleteServiceAccount --help @@ -48436,7 +48436,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServiceAccount --help @@ -48489,7 +48489,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -48536,7 +48536,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServiceAccountProjects --help @@ -48588,7 +48588,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" -d { } - label: Atlas CLI lang: cURL @@ -48637,7 +48637,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: Atlas CLI lang: cURL source: atlas api deleteServiceAccountSecret --help @@ -48677,7 +48677,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationSettings --help @@ -48724,7 +48724,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -48771,7 +48771,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationTeams --help @@ -48823,7 +48823,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -48876,7 +48876,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api deleteTeam --help @@ -48927,7 +48927,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamById --help @@ -48988,7 +48988,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -49045,7 +49045,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listTeamUsers --help @@ -49108,7 +49108,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI lang: cURL @@ -49168,7 +49168,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeTeamUser --help @@ -49217,7 +49217,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamByName --help @@ -49260,7 +49260,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationUsers --help @@ -49310,7 +49310,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeOrganizationUser --help @@ -49367,7 +49367,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -49398,7 +49398,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllControlPlaneIPAddresses --help @@ -49448,7 +49448,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" -d { } - label: Atlas CLI lang: cURL @@ -49495,7 +49495,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/users/{userId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUser --help @@ -49539,7 +49539,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ - -X GET "/api/atlas/v2/users/byName/{userName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUserByUsername --help 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 d988fb5901..758bcd7fb5 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 @@ -251,7 +251,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 GET \"/api/atlas/v2?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", @@ -308,7 +308,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 GET \"/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" }, { "lang": "cURL", @@ -371,7 +371,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 GET \"/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { "lang": "cURL", @@ -434,7 +434,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 GET \"/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { "lang": "cURL", @@ -488,7 +488,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", @@ -554,7 +554,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" }, { "lang": "cURL", @@ -627,7 +627,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { "lang": "cURL", @@ -698,7 +698,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" }, { "lang": "cURL", @@ -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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -843,7 +843,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -988,7 +988,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" }, { "lang": "cURL", @@ -1062,7 +1062,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1245,7 +1245,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" }, { "lang": "cURL", @@ -1384,7 +1384,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" }, { "lang": "cURL", @@ -1455,7 +1455,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1601,7 +1601,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks\"" }, { "lang": "cURL", @@ -1661,7 +1661,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" }, { "lang": "cURL", @@ -1727,7 +1727,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 GET \"/api/atlas/v2/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -1887,7 +1887,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 GET \"/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" }, { "lang": "cURL", @@ -1947,7 +1947,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 DELETE \"/api/atlas/v2/groups/{groupId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", @@ -2005,7 +2005,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 GET \"/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2226,7 +2226,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 GET \"/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2389,7 +2389,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 DELETE \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { "lang": "cURL", @@ -2465,7 +2465,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" }, { "lang": "cURL", @@ -2542,7 +2542,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" }, { "lang": "cURL", @@ -2608,7 +2608,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2747,7 +2747,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 DELETE \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { "lang": "cURL", @@ -2818,7 +2818,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3067,7 +3067,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -3149,7 +3149,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 GET \"/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -3221,7 +3221,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3386,7 +3386,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" }, { "lang": "cURL", @@ -3456,7 +3456,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 GET \"/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3598,7 +3598,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 DELETE \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3826,7 +3826,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 GET \"/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -3952,7 +3952,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 GET \"/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -4084,7 +4084,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4284,7 +4284,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 DELETE \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" }, { "lang": "cURL", @@ -4386,7 +4386,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" }, { "lang": "cURL", @@ -4446,7 +4446,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 GET \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4585,7 +4585,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4736,7 +4736,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 DELETE \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" }, { "lang": "cURL", @@ -4805,7 +4805,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -4969,7 +4969,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 GET \"/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -5135,7 +5135,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5378,7 +5378,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { "lang": "cURL", @@ -5452,7 +5452,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5620,7 +5620,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5779,7 +5779,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" }, { "lang": "cURL", @@ -5857,7 +5857,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -6028,7 +6028,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" }, { "lang": "cURL", @@ -6107,7 +6107,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -6177,7 +6177,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" }, { "lang": "cURL", @@ -6246,7 +6246,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6411,7 +6411,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6573,7 +6573,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" }, { "lang": "cURL", @@ -6655,7 +6655,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -6727,7 +6727,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" }, { "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.2024-05-30+json\" \\\n -X DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -6893,7 +6893,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7239,7 +7239,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" }, { "lang": "cURL", @@ -7323,7 +7323,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" }, { "lang": "cURL", @@ -7395,7 +7395,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -7479,7 +7479,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -7558,7 +7558,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" }, { "lang": "cURL", @@ -7646,7 +7646,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" }, { "lang": "cURL", @@ -7718,7 +7718,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -8172,7 +8172,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" }, { "lang": "cURL", @@ -8262,7 +8262,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" }, { "lang": "cURL", @@ -8347,7 +8347,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\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.2024-05-30+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" }, { "lang": "cURL", @@ -8599,7 +8599,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8780,7 +8780,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -9128,7 +9128,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -9328,7 +9328,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -9416,7 +9416,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" }, { "lang": "cURL", @@ -9505,7 +9505,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9687,7 +9687,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" }, { "lang": "cURL", @@ -9764,7 +9764,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9926,7 +9926,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -10177,7 +10177,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -10344,7 +10344,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" }, { "lang": "cURL", @@ -10419,7 +10419,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" }, { "lang": "cURL", @@ -10489,7 +10489,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10746,7 +10746,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\"\n -d { }" }, { "lang": "cURL", @@ -10941,7 +10941,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true\"" }, { "lang": "cURL", @@ -11044,7 +11044,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"" }, { "lang": "cURL", @@ -11145,7 +11145,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"\n -d { }" }, { "lang": "cURL", @@ -11348,7 +11348,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"" }, { "lang": "cURL", @@ -11444,7 +11444,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -11614,7 +11614,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -11786,7 +11786,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -11871,7 +11871,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -11951,7 +11951,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -12111,7 +12111,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" }, { "lang": "cURL", @@ -12200,7 +12200,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -12342,7 +12342,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\"\n -d { }" }, { "lang": "cURL", @@ -12629,7 +12629,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" }, { "lang": "cURL", @@ -12689,7 +12689,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 GET \"/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true\"" }, { "lang": "cURL", @@ -12773,7 +12773,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 GET \"/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -12917,7 +12917,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 GET \"/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" }, { "lang": "cURL", @@ -12996,7 +12996,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 DELETE \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { "lang": "cURL", @@ -13064,7 +13064,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 GET \"/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -13215,7 +13215,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -13365,7 +13365,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 DELETE \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" }, { "lang": "cURL", @@ -13432,7 +13432,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -13592,7 +13592,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -13733,7 +13733,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { "lang": "cURL", @@ -13800,7 +13800,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -13959,7 +13959,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" }, { "lang": "cURL", @@ -14037,7 +14037,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" }, { "lang": "cURL", @@ -14116,7 +14116,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -14305,7 +14305,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -14371,7 +14371,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -14683,7 +14683,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 DELETE \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" }, { "lang": "cURL", @@ -14760,7 +14760,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -14935,7 +14935,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -15150,7 +15150,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" }, { "lang": "cURL", @@ -15270,7 +15270,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" }, { "lang": "cURL", @@ -15327,7 +15327,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -15471,7 +15471,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -15641,7 +15641,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 DELETE \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" }, { "lang": "cURL", @@ -15720,7 +15720,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -15853,7 +15853,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 GET \"/api/atlas/v2/groups/{groupId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true\"" }, { "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.2024-05-30+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -15994,7 +15994,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" }, { "lang": "cURL", @@ -16100,7 +16100,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -16209,7 +16209,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -16310,7 +16310,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" }, { "lang": "cURL", @@ -16382,7 +16382,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 GET \"/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" }, { "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.2024-05-30+json\" \\\n -X DELETE \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { "lang": "cURL", @@ -16550,7 +16550,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 GET \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -16829,7 +16829,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 GET \"/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -17039,7 +17039,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 DELETE \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -17111,7 +17111,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 GET \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -17255,7 +17255,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 GET \"/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" }, { "lang": "cURL", @@ -17324,7 +17324,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 GET \"/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" }, { "lang": "cURL", @@ -17411,7 +17411,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 DELETE \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { "lang": "cURL", @@ -17499,7 +17499,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 GET \"/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -17830,7 +17830,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" }, { "lang": "cURL", @@ -17896,7 +17896,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -18016,7 +18016,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 DELETE \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { "lang": "cURL", @@ -18071,7 +18071,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 GET \"/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -18302,7 +18302,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 GET \"/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" }, { "lang": "cURL", @@ -18359,7 +18359,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 DELETE \"/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -18534,7 +18534,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 GET \"/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" }, { "lang": "cURL", @@ -18617,7 +18617,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 GET \"/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -18768,7 +18768,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 DELETE \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { "lang": "cURL", @@ -18838,7 +18838,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 GET \"/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -18985,7 +18985,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -19123,7 +19123,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { "lang": "cURL", @@ -19193,7 +19193,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -19352,7 +19352,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" }, { "lang": "cURL", @@ -19443,7 +19443,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -19678,7 +19678,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" }, { "lang": "cURL", @@ -19763,7 +19763,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" }, { "lang": "cURL", @@ -19846,7 +19846,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -20061,7 +20061,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -20201,7 +20201,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -20362,7 +20362,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -20440,7 +20440,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -20604,7 +20604,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" }, { "lang": "cURL", @@ -20688,7 +20688,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" }, { "lang": "cURL", @@ -20773,7 +20773,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -20971,7 +20971,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -21066,7 +21066,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -21128,7 +21128,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 GET \"/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -21274,7 +21274,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -21415,7 +21415,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" }, { "lang": "cURL", @@ -21488,7 +21488,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -21554,7 +21554,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 GET \"/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" }, { "lang": "cURL", @@ -21622,7 +21622,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" }, { "lang": "cURL", @@ -21688,7 +21688,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -21765,7 +21765,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" }, { "lang": "cURL", @@ -21842,7 +21842,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" }, { "lang": "cURL", @@ -21958,7 +21958,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22035,7 +22035,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" }, { "lang": "cURL", @@ -22109,7 +22109,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" }, { "lang": "cURL", @@ -22234,7 +22234,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22466,7 +22466,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22552,7 +22552,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -22662,7 +22662,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" }, { "lang": "cURL", @@ -22788,7 +22788,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" }, { "lang": "cURL", @@ -22905,7 +22905,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22968,7 +22968,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 DELETE \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { "lang": "cURL", @@ -23029,7 +23029,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 GET \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -23313,7 +23313,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 GET \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" }, { "lang": "cURL", @@ -23379,7 +23379,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 GET \"/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\"\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.2024-05-30+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -23703,7 +23703,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -23784,7 +23784,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -23866,7 +23866,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -23935,7 +23935,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -24083,7 +24083,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 DELETE \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { "lang": "cURL", @@ -24156,7 +24156,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -24303,7 +24303,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 GET \"/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -24443,7 +24443,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 DELETE \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" }, { "lang": "cURL", @@ -24510,7 +24510,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 GET \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -24737,7 +24737,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 GET \"/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -24872,7 +24872,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 GET \"/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -25013,7 +25013,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { "lang": "cURL", @@ -25088,7 +25088,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -25271,7 +25271,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" }, { "lang": "cURL", @@ -25346,7 +25346,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -25508,7 +25508,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" }, { "lang": "cURL", @@ -25581,7 +25581,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\"\n -d { }" }, { "lang": "cURL", @@ -25835,7 +25835,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}\"" }, { "lang": "cURL", @@ -25914,7 +25914,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\"\n -d { }" }, { "lang": "cURL", @@ -26157,7 +26157,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true\"" }, { "lang": "cURL", @@ -26232,7 +26232,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 GET \"/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -26390,7 +26390,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 DELETE \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -26538,7 +26538,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -26661,7 +26661,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { "lang": "cURL", @@ -26718,7 +26718,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -26858,7 +26858,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" }, { "lang": "cURL", @@ -26942,7 +26942,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 GET \"/api/atlas/v2/groups/{groupId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true\"" }, { "lang": "cURL", @@ -27014,7 +27014,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 DELETE \"/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\"\n -d { }" }, { "lang": "cURL", @@ -27245,7 +27245,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 GET \"/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -27386,7 +27386,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 DELETE \"/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", @@ -27450,7 +27450,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 GET \"/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -27595,7 +27595,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -27738,7 +27738,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { "lang": "cURL", @@ -27809,7 +27809,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -27976,7 +27976,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -28162,7 +28162,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" }, { "lang": "cURL", @@ -28247,7 +28247,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -28396,7 +28396,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 GET \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" }, { "lang": "cURL", @@ -28501,7 +28501,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 GET \"/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" }, { "lang": "cURL", @@ -28582,7 +28582,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 GET \"/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -28645,7 +28645,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 GET \"/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" }, { "lang": "cURL", @@ -28725,7 +28725,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 GET \"/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" }, { "lang": "cURL", @@ -28800,7 +28800,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 GET \"/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -29016,7 +29016,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 DELETE \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -29086,7 +29086,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 GET \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -29318,7 +29318,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" }, { "lang": "cURL", @@ -29378,7 +29378,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" }, { "lang": "cURL", @@ -29456,7 +29456,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" }, { "lang": "cURL", @@ -29527,7 +29527,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" }, { "lang": "cURL", @@ -29590,7 +29590,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 GET \"/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" }, { "lang": "cURL", @@ -29647,7 +29647,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 DELETE \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -29782,7 +29782,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -29917,7 +29917,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 DELETE \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" }, { "lang": "cURL", @@ -29984,7 +29984,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -30140,7 +30140,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" }, { "lang": "cURL", @@ -30295,7 +30295,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 DELETE \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" }, { "lang": "cURL", @@ -30358,7 +30358,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 GET \"/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -30506,7 +30506,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 GET \"/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -30661,7 +30661,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" }, { "lang": "cURL", @@ -30740,7 +30740,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { "lang": "cURL", @@ -30817,7 +30817,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -30996,7 +30996,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -31178,7 +31178,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" }, { "lang": "cURL", @@ -31250,7 +31250,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 GET \"/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" }, { "lang": "cURL", @@ -31325,7 +31325,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 DELETE \"/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -31454,7 +31454,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 GET \"/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", @@ -31589,7 +31589,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 GET \"/api/atlas/v2/users/byName/{userName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true\"" }, { "lang": "cURL", @@ -31658,7 +31658,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 GET \"/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { "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 97f33b81ed..a524af0e24 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 @@ -29872,7 +29872,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSystemStatus --help @@ -29909,7 +29909,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationMatchersFieldNames --help @@ -29947,7 +29947,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClustersForAllProjects --help @@ -29985,7 +29985,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/eventTypes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listEventTypes --help @@ -30021,7 +30021,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: Atlas CLI lang: cURL source: atlas api deleteFederationApp --help @@ -30062,7 +30062,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listConnectedOrgConfigs --help @@ -30111,7 +30111,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api removeConnectedOrgConfig --help @@ -30159,7 +30159,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getConnectedOrgConfig --help @@ -30215,7 +30215,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -30256,7 +30256,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listRoleMappings --help @@ -30303,7 +30303,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI lang: cURL @@ -30352,7 +30352,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: Atlas CLI lang: cURL source: atlas api deleteRoleMapping --help @@ -30401,7 +30401,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRoleMapping --help @@ -30458,7 +30458,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI lang: cURL @@ -30522,7 +30522,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIdentityProviders --help @@ -30573,7 +30573,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" -d { } - label: Atlas CLI lang: cURL @@ -30618,7 +30618,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: Atlas CLI lang: cURL source: atlas api deleteIdentityProvider --help @@ -30665,7 +30665,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProvider --help @@ -30721,7 +30721,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI lang: cURL @@ -30766,7 +30766,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: Atlas CLI lang: cURL source: atlas api revokeJwksFromIdentityProvider --help @@ -30805,7 +30805,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProviderMetadata --help @@ -30845,7 +30845,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjects --help @@ -30903,7 +30903,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" -d { } - label: Atlas CLI lang: cURL @@ -30942,7 +30942,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: Atlas CLI lang: cURL source: atlas api deleteProject --help @@ -30979,7 +30979,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProject --help @@ -31028,7 +31028,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI lang: cURL @@ -31078,7 +31078,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI lang: cURL @@ -31121,7 +31121,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectIpAccessLists --help @@ -31176,7 +31176,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -31231,7 +31231,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectIpAccessList --help @@ -31281,7 +31281,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpList --help @@ -31331,7 +31331,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpAccessListStatus --help @@ -31373,7 +31373,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurations --help @@ -31421,7 +31421,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI lang: cURL @@ -31471,7 +31471,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: Atlas CLI lang: cURL source: atlas api deleteAlertConfiguration --help @@ -31521,7 +31521,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlertConfiguration --help @@ -31581,7 +31581,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -31644,7 +31644,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -31699,7 +31699,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertsByAlertConfigurationId --help @@ -31752,7 +31752,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlerts --help @@ -31802,7 +31802,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlert --help @@ -31861,7 +31861,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI lang: cURL @@ -31915,7 +31915,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationsByAlertId --help @@ -31957,7 +31957,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectApiKeys --help @@ -32000,7 +32000,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -32051,7 +32051,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectApiKey --help @@ -32108,7 +32108,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -32163,7 +32163,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -32200,7 +32200,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAuditingConfiguration --help @@ -32245,7 +32245,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI lang: cURL @@ -32282,7 +32282,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAWSCustomDNS --help @@ -32325,7 +32325,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI lang: cURL @@ -32365,7 +32365,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listExportBuckets --help @@ -32451,7 +32451,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI lang: cURL @@ -32501,7 +32501,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI lang: cURL source: atlas api deleteExportBucket --help @@ -32570,7 +32570,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getExportBucket --help @@ -32608,7 +32608,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataProtectionSettings --help @@ -32662,7 +32662,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI lang: cURL @@ -32699,7 +32699,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderAccessRoles --help @@ -32745,7 +32745,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI lang: cURL @@ -32799,7 +32799,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: Atlas CLI lang: cURL source: atlas api deauthorizeCloudProviderAccessRole --help @@ -32844,7 +32844,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCloudProviderAccessRole --help @@ -32903,7 +32903,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI lang: cURL @@ -32950,7 +32950,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClusters --help @@ -33003,7 +33003,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI lang: cURL @@ -33059,7 +33059,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: Atlas CLI lang: cURL source: atlas api deleteCluster --help @@ -33108,7 +33108,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCluster --help @@ -33168,7 +33168,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI lang: cURL @@ -33269,7 +33269,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help @@ -33326,7 +33326,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespacesForCluster --help @@ -33374,7 +33374,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupExportJobs --help @@ -33431,7 +33431,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI lang: cURL @@ -33482,7 +33482,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupExportJob --help @@ -33530,7 +33530,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupRestoreJobs --help @@ -33591,7 +33591,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -33648,7 +33648,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: Atlas CLI lang: cURL source: atlas api cancelBackupRestoreJob --help @@ -33701,7 +33701,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupRestoreJob --help @@ -33748,7 +33748,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: Atlas CLI lang: cURL source: atlas api deleteAllBackupSchedules --help @@ -33794,7 +33794,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupSchedule --help @@ -33853,7 +33853,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI lang: cURL @@ -33905,7 +33905,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listReplicaSetBackups --help @@ -33962,7 +33962,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI lang: cURL @@ -34019,7 +34019,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteReplicaSetBackup --help @@ -34074,7 +34074,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getReplicaSetBackup --help @@ -34137,7 +34137,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -34192,7 +34192,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteShardedClusterBackup --help @@ -34247,7 +34247,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getShardedClusterBackup --help @@ -34294,7 +34294,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listShardedClusterBackups --help @@ -34355,7 +34355,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI lang: cURL @@ -34415,7 +34415,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI lang: cURL @@ -34463,7 +34463,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackupRestoreJobs --help @@ -34519,7 +34519,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackupRestoreJob --help @@ -34566,7 +34566,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackups --help @@ -34622,7 +34622,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackup --help @@ -34671,7 +34671,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupCheckpoints --help @@ -34730,7 +34730,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupCheckpoint --help @@ -34778,7 +34778,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPinnedNamespaces --help @@ -34840,7 +34840,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI lang: cURL @@ -34903,7 +34903,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI lang: cURL @@ -34960,7 +34960,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" -d { } - label: Atlas CLI lang: cURL @@ -35022,7 +35022,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI lang: cURL @@ -35087,7 +35087,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexesDeprecated --help @@ -35148,7 +35148,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndexDeprecated --help @@ -35206,7 +35206,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndexDeprecated --help @@ -35276,7 +35276,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI lang: cURL @@ -35327,7 +35327,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedNamespace --help @@ -35377,7 +35377,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: Atlas CLI lang: cURL source: atlas api deleteAllCustomZoneMappings --help @@ -35436,7 +35436,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI lang: cURL @@ -35499,7 +35499,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI lang: cURL source: atlas api deleteManagedNamespace --help @@ -35560,7 +35560,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI lang: cURL @@ -35683,7 +35683,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI lang: cURL @@ -35735,7 +35735,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOnlineArchives --help @@ -35796,7 +35796,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI lang: cURL @@ -35856,7 +35856,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: Atlas CLI lang: cURL source: atlas api deleteOnlineArchive --help @@ -35916,7 +35916,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOnlineArchive --help @@ -35986,7 +35986,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI lang: cURL @@ -36062,7 +36062,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadOnlineArchiveQueryLogs --help @@ -36114,7 +36114,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: Atlas CLI lang: cURL source: atlas api endOutageSimulation --help @@ -36165,7 +36165,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOutageSimulation --help @@ -36222,7 +36222,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI lang: cURL @@ -36274,7 +36274,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterAdvancedConfiguration --help @@ -36336,7 +36336,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI lang: cURL @@ -36382,7 +36382,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI lang: cURL @@ -36445,7 +36445,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupRestoreJobs --help @@ -36500,7 +36500,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -36561,7 +36561,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupRestoreJob --help @@ -36610,7 +36610,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchDeployment --help @@ -36656,7 +36656,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchDeployment --help @@ -36712,7 +36712,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -36769,7 +36769,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -36828,7 +36828,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexesCluster --help @@ -36887,7 +36887,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" -d { } - label: Atlas CLI lang: cURL @@ -36958,7 +36958,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexes --help @@ -37026,7 +37026,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndexByName --help @@ -37093,7 +37093,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndexByName --help @@ -37170,7 +37170,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" -d { } - label: Atlas CLI lang: cURL @@ -37230,7 +37230,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndex --help @@ -37294,7 +37294,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndex --help @@ -37362,7 +37362,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" -d { } - label: Atlas CLI lang: cURL @@ -37412,7 +37412,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshotSchedule --help @@ -37468,7 +37468,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI lang: cURL @@ -37528,7 +37528,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacySnapshots --help @@ -37585,7 +37585,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteLegacySnapshot --help @@ -37639,7 +37639,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshot --help @@ -37701,7 +37701,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -37747,7 +37747,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterStatus --help @@ -37806,7 +37806,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" -d { } - label: Atlas CLI lang: cURL @@ -37861,7 +37861,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" -d { } - label: Atlas CLI lang: cURL @@ -37942,7 +37942,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostLogs --help @@ -37993,7 +37993,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderRegions --help @@ -38045,7 +38045,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI lang: cURL @@ -38098,7 +38098,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI lang: cURL @@ -38138,7 +38138,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceMetrics --help @@ -38190,7 +38190,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainerByCloudProvider --help @@ -38241,7 +38241,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI lang: cURL @@ -38294,7 +38294,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/containers/{containerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringContainer --help @@ -38339,7 +38339,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringContainer --help @@ -38400,7 +38400,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI lang: cURL @@ -38440,7 +38440,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainers --help @@ -38478,7 +38478,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCustomDatabaseRoles --help @@ -38529,7 +38529,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI lang: cURL @@ -38576,7 +38576,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: Atlas CLI lang: cURL source: atlas api deleteCustomDatabaseRole --help @@ -38619,7 +38619,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCustomDatabaseRole --help @@ -38676,7 +38676,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI lang: cURL @@ -38724,7 +38724,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listFederatedDatabases --help @@ -38773,7 +38773,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI lang: cURL @@ -38816,7 +38816,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteFederatedDatabase --help @@ -38860,7 +38860,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederatedDatabase --help @@ -38917,7 +38917,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -38964,7 +38964,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimits --help @@ -39024,7 +39024,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteOneDataFederationInstanceQueryLimit --help @@ -39084,7 +39084,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimit --help @@ -39155,7 +39155,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -39222,7 +39222,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadFederatedDatabaseQueryLogs --help @@ -39261,7 +39261,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUsers --help @@ -39403,7 +39403,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI lang: cURL @@ -39470,7 +39470,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: Atlas CLI lang: cURL source: atlas api deleteDatabaseUser --help @@ -39533,7 +39533,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseUser --help @@ -39610,7 +39610,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI lang: cURL @@ -39658,7 +39658,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUserCertificates --help @@ -39724,7 +39724,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI lang: cURL @@ -39807,7 +39807,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByClusterName --help @@ -39886,7 +39886,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByHostname --help @@ -39925,7 +39925,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRest --help @@ -39986,7 +39986,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI lang: cURL @@ -40031,7 +40031,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help @@ -40082,7 +40082,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI lang: cURL @@ -40143,7 +40143,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help @@ -40195,7 +40195,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpoint --help @@ -40288,7 +40288,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectEvents --help @@ -40344,7 +40344,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectEvent --help @@ -40382,7 +40382,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listMetricTypes --help @@ -40450,7 +40450,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIndexMetrics --help @@ -40517,7 +40517,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIndexMetrics --help @@ -40583,7 +40583,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMeasurements --help @@ -40626,7 +40626,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listThirdPartyIntegrations --help @@ -40684,7 +40684,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: Atlas CLI lang: cURL source: atlas api deleteThirdPartyIntegration --help @@ -40741,7 +40741,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getThirdPartyIntegration --help @@ -40811,7 +40811,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -40880,7 +40880,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -40926,7 +40926,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectInvitations --help @@ -40975,7 +40975,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -41021,7 +41021,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -41068,7 +41068,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectInvitation --help @@ -41116,7 +41116,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectInvitation --help @@ -41173,7 +41173,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -41213,7 +41213,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllIPAddresses --help @@ -41257,7 +41257,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectLimits --help @@ -41333,7 +41333,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectLimit --help @@ -41410,7 +41410,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLimit --help @@ -41498,7 +41498,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -41557,7 +41557,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI lang: cURL @@ -41599,7 +41599,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushMigration --help @@ -41641,7 +41641,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI lang: cURL @@ -41693,7 +41693,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI lang: cURL @@ -41745,7 +41745,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getValidationStatus --help @@ -41780,7 +41780,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/maintenanceWindow" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: Atlas CLI lang: cURL source: atlas api resetMaintenanceWindow --help @@ -41815,7 +41815,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMaintenanceWindow --help @@ -41859,7 +41859,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI lang: cURL @@ -41896,7 +41896,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI lang: cURL @@ -41933,7 +41933,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI lang: cURL @@ -41970,7 +41970,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedSlowMs --help @@ -42006,7 +42006,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: Atlas CLI lang: cURL source: atlas api disableSlowOperationThresholding --help @@ -42043,7 +42043,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI lang: cURL @@ -42121,7 +42121,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLTSVersions --help @@ -42172,7 +42172,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringConnections --help @@ -42224,7 +42224,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI lang: cURL @@ -42272,7 +42272,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/peers/{peerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringConnection --help @@ -42318,7 +42318,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringConnection --help @@ -42376,7 +42376,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI lang: cURL @@ -42416,7 +42416,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelines --help @@ -42462,7 +42462,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI lang: cURL @@ -42509,7 +42509,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: Atlas CLI lang: cURL source: atlas api deletePipeline --help @@ -42555,7 +42555,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipeline --help @@ -42612,7 +42612,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI lang: cURL @@ -42662,7 +42662,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSchedules --help @@ -42719,7 +42719,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSnapshots --help @@ -42767,7 +42767,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI lang: cURL @@ -42816,7 +42816,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI lang: cURL @@ -42874,7 +42874,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineRuns --help @@ -42931,7 +42931,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: Atlas CLI lang: cURL source: atlas api deletePipelineRunDataset --help @@ -42987,7 +42987,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipelineRun --help @@ -43042,7 +43042,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI lang: cURL @@ -43092,7 +43092,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPrivateEndpointServices --help @@ -43148,7 +43148,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpointService --help @@ -43205,7 +43205,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpointService --help @@ -43275,7 +43275,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -43339,7 +43339,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpoint --help @@ -43403,7 +43403,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpoint --help @@ -43450,7 +43450,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI lang: cURL @@ -43489,7 +43489,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRegionalizedPrivateEndpointSetting --help @@ -43534,7 +43534,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI lang: cURL @@ -43582,7 +43582,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessPrivateEndpoints --help @@ -43640,7 +43640,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -43695,7 +43695,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessPrivateEndpoint --help @@ -43748,7 +43748,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessPrivateEndpoint --help @@ -43809,7 +43809,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI lang: cURL @@ -43850,7 +43850,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help @@ -43899,7 +43899,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI lang: cURL @@ -43943,7 +43943,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDataFederationPrivateEndpoints --help @@ -44007,7 +44007,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI lang: cURL @@ -44055,7 +44055,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteDataFederationPrivateEndpoint --help @@ -44103,7 +44103,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataFederationPrivateEndpoint --help @@ -44142,7 +44142,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasProcesses --help @@ -44186,7 +44186,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasProcess --help @@ -44265,7 +44265,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help @@ -44304,7 +44304,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespacesForHost --help @@ -44351,7 +44351,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabases --help @@ -44401,7 +44401,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabase --help @@ -44477,7 +44477,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseMeasurements --help @@ -44524,7 +44524,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskPartitions --help @@ -44573,7 +44573,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskMeasurements --help @@ -44665,7 +44665,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDiskMeasurements --help @@ -44868,7 +44868,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostMeasurements --help @@ -44932,7 +44932,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueryNamespaces --help @@ -45013,7 +45013,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueries --help @@ -45101,7 +45101,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSuggestedIndexes --help @@ -45141,7 +45141,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: Atlas CLI lang: cURL source: atlas api deletePushBasedLogConfiguration --help @@ -45180,7 +45180,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushBasedLogConfiguration --help @@ -45228,7 +45228,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -45277,7 +45277,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -45327,7 +45327,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI lang: cURL @@ -45372,7 +45372,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSampleDatasetLoadStatus --help @@ -45411,7 +45411,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessInstances --help @@ -45458,7 +45458,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI lang: cURL @@ -45509,7 +45509,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackupRestoreJobs --help @@ -45567,7 +45567,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -45624,7 +45624,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackupRestoreJob --help @@ -45674,7 +45674,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackups --help @@ -45730,7 +45730,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackup --help @@ -45775,7 +45775,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessAutoIndexing --help @@ -45825,7 +45825,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI lang: cURL @@ -45875,7 +45875,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serverless/{name}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessInstance --help @@ -45923,7 +45923,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessInstance --help @@ -45977,7 +45977,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI lang: cURL @@ -46018,7 +46018,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectServiceAccounts --help @@ -46064,7 +46064,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" -d { } - label: Atlas CLI lang: cURL @@ -46110,7 +46110,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectServiceAccount --help @@ -46153,7 +46153,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectServiceAccount --help @@ -46206,7 +46206,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -46262,7 +46262,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -46303,7 +46303,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectSettings --help @@ -46350,7 +46350,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -46389,7 +46389,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamInstances --help @@ -46434,7 +46434,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI lang: cURL @@ -46481,7 +46481,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamInstance --help @@ -46530,7 +46530,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamInstance --help @@ -46585,7 +46585,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -46653,7 +46653,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadStreamTenantAuditLogs --help @@ -46699,7 +46699,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamConnections --help @@ -46752,7 +46752,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI lang: cURL @@ -46805,7 +46805,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamConnection --help @@ -46853,7 +46853,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamConnection --help @@ -46914,7 +46914,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI lang: cURL @@ -46969,7 +46969,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" -d { } - label: Atlas CLI lang: cURL @@ -47020,7 +47020,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamProcessor --help @@ -47071,7 +47071,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamProcessor --help @@ -47124,7 +47124,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" -d { } - label: Atlas CLI lang: cURL @@ -47178,7 +47178,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" -d { } - label: Atlas CLI lang: cURL @@ -47228,7 +47228,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamProcessors --help @@ -47273,7 +47273,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectTeams --help @@ -47327,7 +47327,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -47379,7 +47379,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectTeam --help @@ -47440,7 +47440,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -47477,7 +47477,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfiguration --help @@ -47525,7 +47525,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI lang: cURL @@ -47564,7 +47564,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: Atlas CLI lang: cURL source: atlas api disableCustomerManagedX509 --help @@ -47600,7 +47600,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: Atlas CLI lang: cURL source: atlas api deleteLDAPConfiguration --help @@ -47646,7 +47646,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI lang: cURL @@ -47692,7 +47692,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfigurationStatus --help @@ -47743,7 +47743,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectUsers --help @@ -47790,7 +47790,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectUser --help @@ -47847,7 +47847,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -47891,7 +47891,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" -d { } - label: Atlas CLI lang: cURL @@ -47941,7 +47941,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/groups/byName/{groupName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectByName --help @@ -47990,7 +47990,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizations --help @@ -48040,7 +48040,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" -d { } - label: Atlas CLI lang: cURL @@ -48089,7 +48089,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganization --help @@ -48130,7 +48130,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganization --help @@ -48179,7 +48179,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -48222,7 +48222,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeys --help @@ -48268,7 +48268,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -48317,7 +48317,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKey --help @@ -48364,7 +48364,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKey --help @@ -48421,7 +48421,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -48473,7 +48473,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeyAccessListsEntries --help @@ -48534,7 +48534,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -48595,7 +48595,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKeyAccessListEntry --help @@ -48652,7 +48652,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKeyAccessList --help @@ -48697,7 +48697,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI lang: cURL @@ -48752,7 +48752,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api createCostExplorerQueryProcess_1 --help @@ -48823,7 +48823,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationEvents --help @@ -48879,7 +48879,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationEvent --help @@ -48919,7 +48919,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederationSettings --help @@ -48975,7 +48975,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationProjects --help @@ -49023,7 +49023,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationInvitations --help @@ -49070,7 +49070,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -49118,7 +49118,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -49165,7 +49165,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganizationInvitation --help @@ -49212,7 +49212,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationInvitation --help @@ -49268,7 +49268,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -49369,7 +49369,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listInvoices --help @@ -49422,7 +49422,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getInvoice --help @@ -49476,7 +49476,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadInvoiceCSV --help @@ -49514,7 +49514,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPendingInvoices --help @@ -49554,7 +49554,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSourceProjects --help @@ -49591,7 +49591,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: Atlas CLI lang: cURL source: atlas api deleteLinkToken --help @@ -49636,7 +49636,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI lang: cURL @@ -49677,7 +49677,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServiceAccounts --help @@ -49722,7 +49722,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" -d { } - label: Atlas CLI lang: cURL @@ -49765,7 +49765,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: Atlas CLI lang: cURL source: atlas api deleteServiceAccount --help @@ -49808,7 +49808,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServiceAccount --help @@ -49861,7 +49861,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -49908,7 +49908,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServiceAccountProjects --help @@ -49960,7 +49960,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" -d { } - label: Atlas CLI lang: cURL @@ -50009,7 +50009,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: Atlas CLI lang: cURL source: atlas api deleteServiceAccountSecret --help @@ -50049,7 +50049,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationSettings --help @@ -50096,7 +50096,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -50143,7 +50143,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationTeams --help @@ -50195,7 +50195,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -50248,7 +50248,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api deleteTeam --help @@ -50299,7 +50299,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamById --help @@ -50360,7 +50360,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -50417,7 +50417,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listTeamUsers --help @@ -50480,7 +50480,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI lang: cURL @@ -50540,7 +50540,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeTeamUser --help @@ -50589,7 +50589,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamByName --help @@ -50632,7 +50632,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationUsers --help @@ -50682,7 +50682,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeOrganizationUser --help @@ -50739,7 +50739,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -50770,7 +50770,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllControlPlaneIPAddresses --help @@ -50820,7 +50820,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" -d { } - label: Atlas CLI lang: cURL @@ -50867,7 +50867,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/users/{userId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUser --help @@ -50911,7 +50911,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ - -X GET "/api/atlas/v2/users/byName/{userName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUserByUsername --help 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 04c1806404..25c382684f 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 @@ -251,7 +251,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 GET \"/api/atlas/v2?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", @@ -308,7 +308,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 GET \"/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" }, { "lang": "cURL", @@ -371,7 +371,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 GET \"/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { "lang": "cURL", @@ -434,7 +434,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 GET \"/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { "lang": "cURL", @@ -488,7 +488,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", @@ -554,7 +554,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" }, { "lang": "cURL", @@ -627,7 +627,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { "lang": "cURL", @@ -698,7 +698,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" }, { "lang": "cURL", @@ -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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -843,7 +843,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -988,7 +988,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" }, { "lang": "cURL", @@ -1062,7 +1062,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1245,7 +1245,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" }, { "lang": "cURL", @@ -1384,7 +1384,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" }, { "lang": "cURL", @@ -1455,7 +1455,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1601,7 +1601,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks\"" }, { "lang": "cURL", @@ -1661,7 +1661,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" }, { "lang": "cURL", @@ -1727,7 +1727,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 GET \"/api/atlas/v2/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -1887,7 +1887,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 GET \"/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" }, { "lang": "cURL", @@ -1947,7 +1947,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 DELETE \"/api/atlas/v2/groups/{groupId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", @@ -2005,7 +2005,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 GET \"/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2226,7 +2226,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 GET \"/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2389,7 +2389,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 DELETE \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { "lang": "cURL", @@ -2465,7 +2465,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" }, { "lang": "cURL", @@ -2542,7 +2542,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" }, { "lang": "cURL", @@ -2608,7 +2608,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2747,7 +2747,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 DELETE \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { "lang": "cURL", @@ -2818,7 +2818,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3067,7 +3067,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -3149,7 +3149,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 GET \"/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -3221,7 +3221,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3386,7 +3386,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" }, { "lang": "cURL", @@ -3456,7 +3456,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 GET \"/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3598,7 +3598,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 DELETE \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3826,7 +3826,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 GET \"/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -3952,7 +3952,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 GET \"/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -4084,7 +4084,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4284,7 +4284,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 DELETE \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" }, { "lang": "cURL", @@ -4386,7 +4386,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" }, { "lang": "cURL", @@ -4446,7 +4446,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 GET \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4585,7 +4585,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4736,7 +4736,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 DELETE \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" }, { "lang": "cURL", @@ -4805,7 +4805,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -4968,7 +4968,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 GET \"/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -5138,7 +5138,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5381,7 +5381,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { "lang": "cURL", @@ -5454,7 +5454,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5620,7 +5620,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5779,7 +5779,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" }, { "lang": "cURL", @@ -5857,7 +5857,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -6028,7 +6028,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" }, { "lang": "cURL", @@ -6107,7 +6107,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -6176,7 +6176,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" }, { "lang": "cURL", @@ -6243,7 +6243,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6405,7 +6405,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6567,7 +6567,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" }, { "lang": "cURL", @@ -6649,7 +6649,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -6721,7 +6721,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" }, { "lang": "cURL", @@ -6805,7 +6805,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -6887,7 +6887,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7233,7 +7233,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" }, { "lang": "cURL", @@ -7317,7 +7317,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" }, { "lang": "cURL", @@ -7389,7 +7389,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -7473,7 +7473,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -7552,7 +7552,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" }, { "lang": "cURL", @@ -7640,7 +7640,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" }, { "lang": "cURL", @@ -7712,7 +7712,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -8166,7 +8166,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" }, { "lang": "cURL", @@ -8256,7 +8256,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" }, { "lang": "cURL", @@ -8341,7 +8341,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -8517,7 +8517,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" }, { "lang": "cURL", @@ -8590,7 +8590,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8768,7 +8768,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -9114,7 +9114,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -9314,7 +9314,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -9402,7 +9402,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" }, { "lang": "cURL", @@ -9491,7 +9491,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9673,7 +9673,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" }, { "lang": "cURL", @@ -9750,7 +9750,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9911,7 +9911,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -10159,7 +10159,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -10326,7 +10326,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" }, { "lang": "cURL", @@ -10401,7 +10401,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" }, { "lang": "cURL", @@ -10471,7 +10471,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10728,7 +10728,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\"\n -d { }" }, { "lang": "cURL", @@ -10923,7 +10923,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true\"" }, { "lang": "cURL", @@ -11026,7 +11026,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"" }, { "lang": "cURL", @@ -11127,7 +11127,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"\n -d { }" }, { "lang": "cURL", @@ -11330,7 +11330,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"" }, { "lang": "cURL", @@ -11426,7 +11426,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -11596,7 +11596,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -11768,7 +11768,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" }, { "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.2024-08-05+json\" \\\n -X DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -11933,7 +11933,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -12093,7 +12093,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" }, { "lang": "cURL", @@ -12182,7 +12182,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -12324,7 +12324,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\"\n -d { }" }, { "lang": "cURL", @@ -12611,7 +12611,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" }, { "lang": "cURL", @@ -12671,7 +12671,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 GET \"/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true\"" }, { "lang": "cURL", @@ -12755,7 +12755,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 GET \"/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -12899,7 +12899,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 GET \"/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" }, { "lang": "cURL", @@ -12978,7 +12978,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 DELETE \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { "lang": "cURL", @@ -13046,7 +13046,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 GET \"/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -13197,7 +13197,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -13347,7 +13347,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 DELETE \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" }, { "lang": "cURL", @@ -13414,7 +13414,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -13574,7 +13574,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -13715,7 +13715,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { "lang": "cURL", @@ -13782,7 +13782,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -13941,7 +13941,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" }, { "lang": "cURL", @@ -14019,7 +14019,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" }, { "lang": "cURL", @@ -14098,7 +14098,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -14287,7 +14287,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -14353,7 +14353,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -14665,7 +14665,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 DELETE \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" }, { "lang": "cURL", @@ -14742,7 +14742,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -14917,7 +14917,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -15132,7 +15132,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" }, { "lang": "cURL", @@ -15252,7 +15252,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" }, { "lang": "cURL", @@ -15309,7 +15309,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -15453,7 +15453,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -15623,7 +15623,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 DELETE \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" }, { "lang": "cURL", @@ -15702,7 +15702,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -15835,7 +15835,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 GET \"/api/atlas/v2/groups/{groupId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true\"" }, { "lang": "cURL", @@ -15916,7 +15916,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 GET \"/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -15976,7 +15976,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" }, { "lang": "cURL", @@ -16082,7 +16082,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -16191,7 +16191,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -16292,7 +16292,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" }, { "lang": "cURL", @@ -16364,7 +16364,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 GET \"/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" }, { "lang": "cURL", @@ -16449,7 +16449,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 DELETE \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { "lang": "cURL", @@ -16532,7 +16532,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 GET \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -16811,7 +16811,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 GET \"/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -17021,7 +17021,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 DELETE \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -17093,7 +17093,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 GET \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -17237,7 +17237,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 GET \"/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" }, { "lang": "cURL", @@ -17306,7 +17306,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 GET \"/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" }, { "lang": "cURL", @@ -17393,7 +17393,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 DELETE \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { "lang": "cURL", @@ -17481,7 +17481,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 GET \"/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -17812,7 +17812,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" }, { "lang": "cURL", @@ -17878,7 +17878,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -17998,7 +17998,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 DELETE \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { "lang": "cURL", @@ -18053,7 +18053,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 GET \"/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -18284,7 +18284,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 GET \"/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" }, { "lang": "cURL", @@ -18341,7 +18341,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 DELETE \"/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -18516,7 +18516,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 GET \"/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" }, { "lang": "cURL", @@ -18599,7 +18599,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 GET \"/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -18750,7 +18750,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 DELETE \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { "lang": "cURL", @@ -18820,7 +18820,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 GET \"/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -18967,7 +18967,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -19105,7 +19105,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { "lang": "cURL", @@ -19175,7 +19175,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -19334,7 +19334,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" }, { "lang": "cURL", @@ -19425,7 +19425,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -19660,7 +19660,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" }, { "lang": "cURL", @@ -19745,7 +19745,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" }, { "lang": "cURL", @@ -19828,7 +19828,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -20043,7 +20043,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -20183,7 +20183,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -20344,7 +20344,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -20422,7 +20422,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -20586,7 +20586,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" }, { "lang": "cURL", @@ -20670,7 +20670,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" }, { "lang": "cURL", @@ -20755,7 +20755,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -20953,7 +20953,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -21048,7 +21048,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" }, { "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.2024-08-05+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -21256,7 +21256,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -21397,7 +21397,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" }, { "lang": "cURL", @@ -21470,7 +21470,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -21536,7 +21536,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 GET \"/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" }, { "lang": "cURL", @@ -21604,7 +21604,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" }, { "lang": "cURL", @@ -21670,7 +21670,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -21747,7 +21747,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" }, { "lang": "cURL", @@ -21824,7 +21824,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" }, { "lang": "cURL", @@ -21940,7 +21940,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22017,7 +22017,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" }, { "lang": "cURL", @@ -22091,7 +22091,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" }, { "lang": "cURL", @@ -22216,7 +22216,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22448,7 +22448,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22534,7 +22534,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -22644,7 +22644,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" }, { "lang": "cURL", @@ -22770,7 +22770,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" }, { "lang": "cURL", @@ -22887,7 +22887,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22950,7 +22950,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 DELETE \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { "lang": "cURL", @@ -23011,7 +23011,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 GET \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -23295,7 +23295,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 GET \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" }, { "lang": "cURL", @@ -23361,7 +23361,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 GET \"/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -23514,7 +23514,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -23685,7 +23685,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -23766,7 +23766,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -23848,7 +23848,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -23917,7 +23917,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -24065,7 +24065,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 DELETE \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { "lang": "cURL", @@ -24138,7 +24138,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -24285,7 +24285,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 GET \"/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -24425,7 +24425,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 DELETE \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" }, { "lang": "cURL", @@ -24492,7 +24492,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 GET \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -24719,7 +24719,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 GET \"/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -24854,7 +24854,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 GET \"/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -24995,7 +24995,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { "lang": "cURL", @@ -25070,7 +25070,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -25253,7 +25253,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" }, { "lang": "cURL", @@ -25328,7 +25328,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -25490,7 +25490,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" }, { "lang": "cURL", @@ -25563,7 +25563,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\"\n -d { }" }, { "lang": "cURL", @@ -25817,7 +25817,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}\"" }, { "lang": "cURL", @@ -25896,7 +25896,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\"\n -d { }" }, { "lang": "cURL", @@ -26139,7 +26139,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true\"" }, { "lang": "cURL", @@ -26214,7 +26214,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 GET \"/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -26372,7 +26372,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 DELETE \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -26520,7 +26520,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -26643,7 +26643,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { "lang": "cURL", @@ -26700,7 +26700,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -26840,7 +26840,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" }, { "lang": "cURL", @@ -26924,7 +26924,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 GET \"/api/atlas/v2/groups/{groupId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true\"" }, { "lang": "cURL", @@ -26996,7 +26996,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 DELETE \"/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\"\n -d { }" }, { "lang": "cURL", @@ -27227,7 +27227,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 GET \"/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -27368,7 +27368,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 DELETE \"/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", @@ -27432,7 +27432,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 GET \"/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -27577,7 +27577,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -27720,7 +27720,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { "lang": "cURL", @@ -27791,7 +27791,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -27958,7 +27958,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -28144,7 +28144,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" }, { "lang": "cURL", @@ -28229,7 +28229,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -28378,7 +28378,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 GET \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" }, { "lang": "cURL", @@ -28483,7 +28483,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 GET \"/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" }, { "lang": "cURL", @@ -28564,7 +28564,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 GET \"/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -28627,7 +28627,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 GET \"/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" }, { "lang": "cURL", @@ -28707,7 +28707,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 GET \"/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" }, { "lang": "cURL", @@ -28782,7 +28782,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 GET \"/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -28998,7 +28998,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 DELETE \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -29068,7 +29068,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 GET \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -29300,7 +29300,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" }, { "lang": "cURL", @@ -29360,7 +29360,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" }, { "lang": "cURL", @@ -29438,7 +29438,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" }, { "lang": "cURL", @@ -29509,7 +29509,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" }, { "lang": "cURL", @@ -29572,7 +29572,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 GET \"/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" }, { "lang": "cURL", @@ -29629,7 +29629,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 DELETE \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\n -d { }" }, { "lang": "cURL", @@ -29764,7 +29764,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -29899,7 +29899,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 DELETE \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" }, { "lang": "cURL", @@ -29966,7 +29966,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -30122,7 +30122,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" }, { "lang": "cURL", @@ -30277,7 +30277,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 DELETE \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" }, { "lang": "cURL", @@ -30340,7 +30340,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 GET \"/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -30488,7 +30488,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 GET \"/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -30643,7 +30643,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" }, { "lang": "cURL", @@ -30722,7 +30722,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { "lang": "cURL", @@ -30799,7 +30799,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -30978,7 +30978,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -31160,7 +31160,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" }, { "lang": "cURL", @@ -31232,7 +31232,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 GET \"/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" }, { "lang": "cURL", @@ -31307,7 +31307,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 DELETE \"/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -31436,7 +31436,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 GET \"/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", @@ -31571,7 +31571,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 GET \"/api/atlas/v2/users/byName/{userName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true\"" }, { "lang": "cURL", @@ -31640,7 +31640,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 GET \"/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { "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 16dca8d65a..ad54462451 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 @@ -30150,7 +30150,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSystemStatus --help @@ -30187,7 +30187,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationMatchersFieldNames --help @@ -30225,7 +30225,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClustersForAllProjects --help @@ -30263,7 +30263,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/eventTypes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listEventTypes --help @@ -30299,7 +30299,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: Atlas CLI lang: cURL source: atlas api deleteFederationApp --help @@ -30340,7 +30340,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listConnectedOrgConfigs --help @@ -30389,7 +30389,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api removeConnectedOrgConfig --help @@ -30437,7 +30437,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getConnectedOrgConfig --help @@ -30493,7 +30493,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -30534,7 +30534,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listRoleMappings --help @@ -30581,7 +30581,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI lang: cURL @@ -30630,7 +30630,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: Atlas CLI lang: cURL source: atlas api deleteRoleMapping --help @@ -30679,7 +30679,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRoleMapping --help @@ -30736,7 +30736,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI lang: cURL @@ -30800,7 +30800,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIdentityProviders --help @@ -30851,7 +30851,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" -d { } - label: Atlas CLI lang: cURL @@ -30896,7 +30896,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: Atlas CLI lang: cURL source: atlas api deleteIdentityProvider --help @@ -30943,7 +30943,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProvider --help @@ -30999,7 +30999,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI lang: cURL @@ -31044,7 +31044,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: Atlas CLI lang: cURL source: atlas api revokeJwksFromIdentityProvider --help @@ -31083,7 +31083,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProviderMetadata --help @@ -31123,7 +31123,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjects --help @@ -31181,7 +31181,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" -d { } - label: Atlas CLI lang: cURL @@ -31220,7 +31220,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: Atlas CLI lang: cURL source: atlas api deleteProject --help @@ -31257,7 +31257,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProject --help @@ -31306,7 +31306,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI lang: cURL @@ -31356,7 +31356,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI lang: cURL @@ -31399,7 +31399,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectIpAccessLists --help @@ -31454,7 +31454,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -31509,7 +31509,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectIpAccessList --help @@ -31559,7 +31559,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpList --help @@ -31609,7 +31609,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpAccessListStatus --help @@ -31651,7 +31651,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurations --help @@ -31699,7 +31699,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI lang: cURL @@ -31749,7 +31749,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: Atlas CLI lang: cURL source: atlas api deleteAlertConfiguration --help @@ -31799,7 +31799,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlertConfiguration --help @@ -31859,7 +31859,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -31922,7 +31922,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -31977,7 +31977,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertsByAlertConfigurationId --help @@ -32030,7 +32030,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlerts --help @@ -32080,7 +32080,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlert --help @@ -32139,7 +32139,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI lang: cURL @@ -32193,7 +32193,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationsByAlertId --help @@ -32235,7 +32235,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectApiKeys --help @@ -32278,7 +32278,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -32329,7 +32329,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectApiKey --help @@ -32386,7 +32386,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -32441,7 +32441,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -32478,7 +32478,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAuditingConfiguration --help @@ -32523,7 +32523,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI lang: cURL @@ -32560,7 +32560,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAWSCustomDNS --help @@ -32603,7 +32603,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI lang: cURL @@ -32643,7 +32643,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listExportBuckets --help @@ -32729,7 +32729,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI lang: cURL @@ -32779,7 +32779,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI lang: cURL source: atlas api deleteExportBucket --help @@ -32848,7 +32848,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getExportBucket --help @@ -32886,7 +32886,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataProtectionSettings --help @@ -32940,7 +32940,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI lang: cURL @@ -32977,7 +32977,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderAccessRoles --help @@ -33023,7 +33023,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI lang: cURL @@ -33077,7 +33077,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: Atlas CLI lang: cURL source: atlas api deauthorizeCloudProviderAccessRole --help @@ -33122,7 +33122,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCloudProviderAccessRole --help @@ -33181,7 +33181,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI lang: cURL @@ -33227,7 +33227,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClusters --help @@ -33406,7 +33406,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI lang: cURL @@ -33461,7 +33461,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: Atlas CLI lang: cURL source: atlas api deleteCluster --help @@ -33509,7 +33509,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCluster --help @@ -33568,7 +33568,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI lang: cURL @@ -33668,7 +33668,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help @@ -33725,7 +33725,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespacesForCluster --help @@ -33773,7 +33773,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupExportJobs --help @@ -33830,7 +33830,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI lang: cURL @@ -33881,7 +33881,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupExportJob --help @@ -33929,7 +33929,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupRestoreJobs --help @@ -33990,7 +33990,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -34047,7 +34047,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: Atlas CLI lang: cURL source: atlas api cancelBackupRestoreJob --help @@ -34100,7 +34100,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupRestoreJob --help @@ -34146,7 +34146,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: Atlas CLI lang: cURL source: atlas api deleteAllBackupSchedules --help @@ -34190,7 +34190,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupSchedule --help @@ -34247,7 +34247,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI lang: cURL @@ -34298,7 +34298,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listReplicaSetBackups --help @@ -34355,7 +34355,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI lang: cURL @@ -34412,7 +34412,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteReplicaSetBackup --help @@ -34467,7 +34467,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getReplicaSetBackup --help @@ -34530,7 +34530,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -34585,7 +34585,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteShardedClusterBackup --help @@ -34640,7 +34640,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getShardedClusterBackup --help @@ -34687,7 +34687,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listShardedClusterBackups --help @@ -34748,7 +34748,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI lang: cURL @@ -34808,7 +34808,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI lang: cURL @@ -34856,7 +34856,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackupRestoreJobs --help @@ -34912,7 +34912,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackupRestoreJob --help @@ -34959,7 +34959,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackups --help @@ -35015,7 +35015,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackup --help @@ -35064,7 +35064,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupCheckpoints --help @@ -35123,7 +35123,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupCheckpoint --help @@ -35171,7 +35171,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPinnedNamespaces --help @@ -35233,7 +35233,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI lang: cURL @@ -35296,7 +35296,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI lang: cURL @@ -35353,7 +35353,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" -d { } - label: Atlas CLI lang: cURL @@ -35415,7 +35415,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI lang: cURL @@ -35480,7 +35480,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexesDeprecated --help @@ -35541,7 +35541,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndexDeprecated --help @@ -35599,7 +35599,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndexDeprecated --help @@ -35669,7 +35669,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI lang: cURL @@ -35719,7 +35719,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedNamespace --help @@ -35767,7 +35767,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: Atlas CLI lang: cURL source: atlas api deleteAllCustomZoneMappings --help @@ -35825,7 +35825,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI lang: cURL @@ -35886,7 +35886,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI lang: cURL source: atlas api deleteManagedNamespace --help @@ -35946,7 +35946,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI lang: cURL @@ -36068,7 +36068,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI lang: cURL @@ -36120,7 +36120,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOnlineArchives --help @@ -36181,7 +36181,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI lang: cURL @@ -36241,7 +36241,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: Atlas CLI lang: cURL source: atlas api deleteOnlineArchive --help @@ -36301,7 +36301,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOnlineArchive --help @@ -36371,7 +36371,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI lang: cURL @@ -36447,7 +36447,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadOnlineArchiveQueryLogs --help @@ -36499,7 +36499,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: Atlas CLI lang: cURL source: atlas api endOutageSimulation --help @@ -36550,7 +36550,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOutageSimulation --help @@ -36607,7 +36607,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI lang: cURL @@ -36658,7 +36658,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterAdvancedConfiguration --help @@ -36718,7 +36718,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI lang: cURL @@ -36763,7 +36763,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI lang: cURL @@ -36826,7 +36826,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupRestoreJobs --help @@ -36881,7 +36881,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -36942,7 +36942,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupRestoreJob --help @@ -36991,7 +36991,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchDeployment --help @@ -37037,7 +37037,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchDeployment --help @@ -37093,7 +37093,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -37150,7 +37150,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -37209,7 +37209,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexesCluster --help @@ -37268,7 +37268,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" -d { } - label: Atlas CLI lang: cURL @@ -37339,7 +37339,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexes --help @@ -37407,7 +37407,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndexByName --help @@ -37474,7 +37474,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndexByName --help @@ -37551,7 +37551,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" -d { } - label: Atlas CLI lang: cURL @@ -37611,7 +37611,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndex --help @@ -37675,7 +37675,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndex --help @@ -37743,7 +37743,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" -d { } - label: Atlas CLI lang: cURL @@ -37793,7 +37793,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshotSchedule --help @@ -37849,7 +37849,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI lang: cURL @@ -37909,7 +37909,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacySnapshots --help @@ -37966,7 +37966,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteLegacySnapshot --help @@ -38020,7 +38020,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshot --help @@ -38082,7 +38082,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -38128,7 +38128,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterStatus --help @@ -38187,7 +38187,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" -d { } - label: Atlas CLI lang: cURL @@ -38242,7 +38242,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" -d { } - label: Atlas CLI lang: cURL @@ -38323,7 +38323,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostLogs --help @@ -38374,7 +38374,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderRegions --help @@ -38426,7 +38426,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI lang: cURL @@ -38479,7 +38479,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI lang: cURL @@ -38519,7 +38519,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceMetrics --help @@ -38571,7 +38571,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainerByCloudProvider --help @@ -38622,7 +38622,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI lang: cURL @@ -38675,7 +38675,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/containers/{containerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringContainer --help @@ -38720,7 +38720,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringContainer --help @@ -38781,7 +38781,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI lang: cURL @@ -38821,7 +38821,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainers --help @@ -38859,7 +38859,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCustomDatabaseRoles --help @@ -38910,7 +38910,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI lang: cURL @@ -38957,7 +38957,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: Atlas CLI lang: cURL source: atlas api deleteCustomDatabaseRole --help @@ -39000,7 +39000,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCustomDatabaseRole --help @@ -39057,7 +39057,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI lang: cURL @@ -39105,7 +39105,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listFederatedDatabases --help @@ -39154,7 +39154,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI lang: cURL @@ -39197,7 +39197,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteFederatedDatabase --help @@ -39241,7 +39241,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederatedDatabase --help @@ -39298,7 +39298,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -39345,7 +39345,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimits --help @@ -39405,7 +39405,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteOneDataFederationInstanceQueryLimit --help @@ -39465,7 +39465,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimit --help @@ -39536,7 +39536,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -39603,7 +39603,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadFederatedDatabaseQueryLogs --help @@ -39642,7 +39642,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUsers --help @@ -39784,7 +39784,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI lang: cURL @@ -39851,7 +39851,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: Atlas CLI lang: cURL source: atlas api deleteDatabaseUser --help @@ -39914,7 +39914,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseUser --help @@ -39991,7 +39991,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI lang: cURL @@ -40039,7 +40039,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUserCertificates --help @@ -40105,7 +40105,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI lang: cURL @@ -40188,7 +40188,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByClusterName --help @@ -40267,7 +40267,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByHostname --help @@ -40306,7 +40306,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRest --help @@ -40367,7 +40367,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI lang: cURL @@ -40412,7 +40412,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help @@ -40463,7 +40463,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI lang: cURL @@ -40524,7 +40524,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help @@ -40576,7 +40576,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpoint --help @@ -40669,7 +40669,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectEvents --help @@ -40725,7 +40725,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectEvent --help @@ -40763,7 +40763,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listMetricTypes --help @@ -40831,7 +40831,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIndexMetrics --help @@ -40898,7 +40898,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIndexMetrics --help @@ -40964,7 +40964,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMeasurements --help @@ -41007,7 +41007,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listThirdPartyIntegrations --help @@ -41065,7 +41065,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: Atlas CLI lang: cURL source: atlas api deleteThirdPartyIntegration --help @@ -41122,7 +41122,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getThirdPartyIntegration --help @@ -41192,7 +41192,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -41261,7 +41261,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -41307,7 +41307,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectInvitations --help @@ -41356,7 +41356,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -41402,7 +41402,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -41449,7 +41449,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectInvitation --help @@ -41497,7 +41497,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectInvitation --help @@ -41554,7 +41554,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -41594,7 +41594,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllIPAddresses --help @@ -41638,7 +41638,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectLimits --help @@ -41714,7 +41714,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectLimit --help @@ -41791,7 +41791,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLimit --help @@ -41879,7 +41879,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -41938,7 +41938,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI lang: cURL @@ -41980,7 +41980,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushMigration --help @@ -42022,7 +42022,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI lang: cURL @@ -42074,7 +42074,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI lang: cURL @@ -42126,7 +42126,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getValidationStatus --help @@ -42161,7 +42161,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/maintenanceWindow" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: Atlas CLI lang: cURL source: atlas api resetMaintenanceWindow --help @@ -42196,7 +42196,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMaintenanceWindow --help @@ -42240,7 +42240,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI lang: cURL @@ -42277,7 +42277,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI lang: cURL @@ -42314,7 +42314,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI lang: cURL @@ -42351,7 +42351,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedSlowMs --help @@ -42387,7 +42387,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: Atlas CLI lang: cURL source: atlas api disableSlowOperationThresholding --help @@ -42424,7 +42424,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI lang: cURL @@ -42502,7 +42502,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLTSVersions --help @@ -42553,7 +42553,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringConnections --help @@ -42605,7 +42605,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI lang: cURL @@ -42653,7 +42653,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/peers/{peerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringConnection --help @@ -42699,7 +42699,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringConnection --help @@ -42757,7 +42757,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI lang: cURL @@ -42797,7 +42797,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelines --help @@ -42843,7 +42843,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI lang: cURL @@ -42890,7 +42890,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: Atlas CLI lang: cURL source: atlas api deletePipeline --help @@ -42936,7 +42936,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipeline --help @@ -42993,7 +42993,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI lang: cURL @@ -43043,7 +43043,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSchedules --help @@ -43100,7 +43100,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSnapshots --help @@ -43148,7 +43148,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI lang: cURL @@ -43197,7 +43197,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI lang: cURL @@ -43255,7 +43255,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineRuns --help @@ -43312,7 +43312,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: Atlas CLI lang: cURL source: atlas api deletePipelineRunDataset --help @@ -43368,7 +43368,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipelineRun --help @@ -43423,7 +43423,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI lang: cURL @@ -43473,7 +43473,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPrivateEndpointServices --help @@ -43529,7 +43529,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpointService --help @@ -43586,7 +43586,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpointService --help @@ -43656,7 +43656,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -43720,7 +43720,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpoint --help @@ -43784,7 +43784,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpoint --help @@ -43831,7 +43831,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI lang: cURL @@ -43870,7 +43870,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRegionalizedPrivateEndpointSetting --help @@ -43915,7 +43915,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI lang: cURL @@ -43963,7 +43963,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessPrivateEndpoints --help @@ -44021,7 +44021,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -44076,7 +44076,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessPrivateEndpoint --help @@ -44129,7 +44129,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessPrivateEndpoint --help @@ -44190,7 +44190,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI lang: cURL @@ -44231,7 +44231,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help @@ -44280,7 +44280,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI lang: cURL @@ -44324,7 +44324,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDataFederationPrivateEndpoints --help @@ -44388,7 +44388,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI lang: cURL @@ -44436,7 +44436,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteDataFederationPrivateEndpoint --help @@ -44484,7 +44484,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataFederationPrivateEndpoint --help @@ -44523,7 +44523,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasProcesses --help @@ -44567,7 +44567,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasProcess --help @@ -44646,7 +44646,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help @@ -44685,7 +44685,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespacesForHost --help @@ -44732,7 +44732,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabases --help @@ -44782,7 +44782,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabase --help @@ -44858,7 +44858,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseMeasurements --help @@ -44905,7 +44905,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskPartitions --help @@ -44954,7 +44954,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskMeasurements --help @@ -45046,7 +45046,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDiskMeasurements --help @@ -45249,7 +45249,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostMeasurements --help @@ -45313,7 +45313,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueryNamespaces --help @@ -45394,7 +45394,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueries --help @@ -45482,7 +45482,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSuggestedIndexes --help @@ -45522,7 +45522,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: Atlas CLI lang: cURL source: atlas api deletePushBasedLogConfiguration --help @@ -45561,7 +45561,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushBasedLogConfiguration --help @@ -45609,7 +45609,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -45658,7 +45658,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -45708,7 +45708,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI lang: cURL @@ -45753,7 +45753,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSampleDatasetLoadStatus --help @@ -45792,7 +45792,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessInstances --help @@ -45839,7 +45839,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI lang: cURL @@ -45890,7 +45890,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackupRestoreJobs --help @@ -45948,7 +45948,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -46005,7 +46005,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackupRestoreJob --help @@ -46055,7 +46055,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackups --help @@ -46111,7 +46111,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackup --help @@ -46156,7 +46156,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessAutoIndexing --help @@ -46206,7 +46206,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI lang: cURL @@ -46256,7 +46256,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serverless/{name}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessInstance --help @@ -46304,7 +46304,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessInstance --help @@ -46358,7 +46358,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI lang: cURL @@ -46399,7 +46399,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectServiceAccounts --help @@ -46445,7 +46445,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" -d { } - label: Atlas CLI lang: cURL @@ -46491,7 +46491,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectServiceAccount --help @@ -46534,7 +46534,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectServiceAccount --help @@ -46587,7 +46587,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -46643,7 +46643,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -46684,7 +46684,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectSettings --help @@ -46731,7 +46731,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -46770,7 +46770,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamInstances --help @@ -46815,7 +46815,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI lang: cURL @@ -46862,7 +46862,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamInstance --help @@ -46911,7 +46911,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamInstance --help @@ -46966,7 +46966,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -47034,7 +47034,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadStreamTenantAuditLogs --help @@ -47080,7 +47080,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamConnections --help @@ -47133,7 +47133,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI lang: cURL @@ -47186,7 +47186,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamConnection --help @@ -47234,7 +47234,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamConnection --help @@ -47295,7 +47295,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI lang: cURL @@ -47350,7 +47350,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" -d { } - label: Atlas CLI lang: cURL @@ -47401,7 +47401,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamProcessor --help @@ -47452,7 +47452,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamProcessor --help @@ -47505,7 +47505,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" -d { } - label: Atlas CLI lang: cURL @@ -47559,7 +47559,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" -d { } - label: Atlas CLI lang: cURL @@ -47609,7 +47609,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamProcessors --help @@ -47654,7 +47654,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectTeams --help @@ -47708,7 +47708,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -47760,7 +47760,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectTeam --help @@ -47821,7 +47821,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -47858,7 +47858,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfiguration --help @@ -47906,7 +47906,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI lang: cURL @@ -47945,7 +47945,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: Atlas CLI lang: cURL source: atlas api disableCustomerManagedX509 --help @@ -47981,7 +47981,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: Atlas CLI lang: cURL source: atlas api deleteLDAPConfiguration --help @@ -48027,7 +48027,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI lang: cURL @@ -48073,7 +48073,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfigurationStatus --help @@ -48124,7 +48124,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectUsers --help @@ -48171,7 +48171,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectUser --help @@ -48228,7 +48228,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -48272,7 +48272,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" -d { } - label: Atlas CLI lang: cURL @@ -48322,7 +48322,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/groups/byName/{groupName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectByName --help @@ -48371,7 +48371,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizations --help @@ -48421,7 +48421,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" -d { } - label: Atlas CLI lang: cURL @@ -48470,7 +48470,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganization --help @@ -48511,7 +48511,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganization --help @@ -48560,7 +48560,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -48603,7 +48603,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeys --help @@ -48649,7 +48649,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -48698,7 +48698,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKey --help @@ -48745,7 +48745,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKey --help @@ -48802,7 +48802,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -48854,7 +48854,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeyAccessListsEntries --help @@ -48915,7 +48915,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -48976,7 +48976,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKeyAccessListEntry --help @@ -49033,7 +49033,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKeyAccessList --help @@ -49078,7 +49078,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI lang: cURL @@ -49133,7 +49133,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api createCostExplorerQueryProcess_1 --help @@ -49204,7 +49204,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationEvents --help @@ -49260,7 +49260,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationEvent --help @@ -49300,7 +49300,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederationSettings --help @@ -49356,7 +49356,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationProjects --help @@ -49404,7 +49404,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationInvitations --help @@ -49451,7 +49451,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -49499,7 +49499,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -49546,7 +49546,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganizationInvitation --help @@ -49593,7 +49593,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationInvitation --help @@ -49649,7 +49649,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -49750,7 +49750,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listInvoices --help @@ -49803,7 +49803,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getInvoice --help @@ -49857,7 +49857,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadInvoiceCSV --help @@ -49895,7 +49895,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPendingInvoices --help @@ -49935,7 +49935,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSourceProjects --help @@ -49972,7 +49972,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: Atlas CLI lang: cURL source: atlas api deleteLinkToken --help @@ -50017,7 +50017,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI lang: cURL @@ -50058,7 +50058,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServiceAccounts --help @@ -50103,7 +50103,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" -d { } - label: Atlas CLI lang: cURL @@ -50146,7 +50146,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: Atlas CLI lang: cURL source: atlas api deleteServiceAccount --help @@ -50189,7 +50189,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServiceAccount --help @@ -50242,7 +50242,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -50289,7 +50289,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServiceAccountProjects --help @@ -50341,7 +50341,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" -d { } - label: Atlas CLI lang: cURL @@ -50390,7 +50390,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: Atlas CLI lang: cURL source: atlas api deleteServiceAccountSecret --help @@ -50430,7 +50430,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationSettings --help @@ -50477,7 +50477,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -50524,7 +50524,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationTeams --help @@ -50576,7 +50576,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -50629,7 +50629,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api deleteTeam --help @@ -50680,7 +50680,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamById --help @@ -50741,7 +50741,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -50798,7 +50798,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listTeamUsers --help @@ -50861,7 +50861,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI lang: cURL @@ -50921,7 +50921,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeTeamUser --help @@ -50970,7 +50970,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamByName --help @@ -51013,7 +51013,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationUsers --help @@ -51063,7 +51063,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeOrganizationUser --help @@ -51120,7 +51120,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -51151,7 +51151,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllControlPlaneIPAddresses --help @@ -51201,7 +51201,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" -d { } - label: Atlas CLI lang: cURL @@ -51248,7 +51248,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/users/{userId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUser --help @@ -51292,7 +51292,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ - -X GET "/api/atlas/v2/users/byName/{userName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUserByUsername --help 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 2758629645..232e951dce 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 @@ -251,7 +251,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 GET \"/api/atlas/v2?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" }, { "lang": "cURL", @@ -308,7 +308,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 GET \"/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true\"" }, { "lang": "cURL", @@ -371,7 +371,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 GET \"/api/atlas/v2/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" }, { "lang": "cURL", @@ -434,7 +434,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 GET \"/api/atlas/v2/eventTypes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" }, { "lang": "cURL", @@ -488,7 +488,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" }, { "lang": "cURL", @@ -554,7 +554,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" }, { "lang": "cURL", @@ -627,7 +627,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" }, { "lang": "cURL", @@ -698,7 +698,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" }, { "lang": "cURL", @@ -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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -843,7 +843,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\"\n -d { }" }, { "lang": "cURL", @@ -988,7 +988,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" }, { "lang": "cURL", @@ -1062,7 +1062,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"\n -d { }" }, { "lang": "cURL", @@ -1245,7 +1245,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders\"\n -d { }" }, { "lang": "cURL", @@ -1384,7 +1384,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" }, { "lang": "cURL", @@ -1455,7 +1455,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"\n -d { }" }, { "lang": "cURL", @@ -1601,7 +1601,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 DELETE \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks\"" }, { "lang": "cURL", @@ -1661,7 +1661,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 GET \"/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" }, { "lang": "cURL", @@ -1727,7 +1727,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 GET \"/api/atlas/v2/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups\"\n -d { }" }, { "lang": "cURL", @@ -1887,7 +1887,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 GET \"/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true\"" }, { "lang": "cURL", @@ -1947,7 +1947,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 DELETE \"/api/atlas/v2/groups/{groupId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" }, { "lang": "cURL", @@ -2005,7 +2005,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 GET \"/api/atlas/v2/groups/{groupId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\"\n -d { }" }, { "lang": "cURL", @@ -2226,7 +2226,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 GET \"/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -2389,7 +2389,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 DELETE \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" }, { "lang": "cURL", @@ -2465,7 +2465,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true\"" }, { "lang": "cURL", @@ -2542,7 +2542,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 GET \"/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true\"" }, { "lang": "cURL", @@ -2608,7 +2608,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\"\n -d { }" }, { "lang": "cURL", @@ -2747,7 +2747,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 DELETE \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" }, { "lang": "cURL", @@ -2818,7 +2818,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"\n -d { }" }, { "lang": "cURL", @@ -3067,7 +3067,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 GET \"/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -3149,7 +3149,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 GET \"/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true\"" }, { "lang": "cURL", @@ -3221,7 +3221,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}\"\n -d { }" }, { "lang": "cURL", @@ -3386,7 +3386,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 GET \"/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true\"" }, { "lang": "cURL", @@ -3456,7 +3456,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 GET \"/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -3598,7 +3598,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 DELETE \"/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -3826,7 +3826,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 GET \"/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog\"\n -d { }" }, { "lang": "cURL", @@ -3952,7 +3952,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 GET \"/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS\"\n -d { }" }, { "lang": "cURL", @@ -4084,7 +4084,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\"\n -d { }" }, { "lang": "cURL", @@ -4284,7 +4284,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 DELETE \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" }, { "lang": "cURL", @@ -4386,7 +4386,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 GET \"/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true\"" }, { "lang": "cURL", @@ -4446,7 +4446,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 GET \"/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\"\n -d { }" }, { "lang": "cURL", @@ -4585,7 +4585,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\"\n -d { }" }, { "lang": "cURL", @@ -4736,7 +4736,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 DELETE \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" }, { "lang": "cURL", @@ -4805,7 +4805,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 GET \"/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}\"\n -d { }" }, { "lang": "cURL", @@ -4968,7 +4968,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 GET \"/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\"\n -d { }" }, { "lang": "cURL", @@ -5138,7 +5138,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\"\n -d { }" }, { "lang": "cURL", @@ -5381,7 +5381,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" }, { "lang": "cURL", @@ -5454,7 +5454,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"\n -d { }" }, { "lang": "cURL", @@ -5620,7 +5620,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\"\n -d { }" }, { "lang": "cURL", @@ -5779,7 +5779,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" }, { "lang": "cURL", @@ -5857,7 +5857,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -6028,7 +6028,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" }, { "lang": "cURL", @@ -6107,7 +6107,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -6176,7 +6176,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" }, { "lang": "cURL", @@ -6243,7 +6243,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"\n -d { }" }, { "lang": "cURL", @@ -6405,7 +6405,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\"\n -d { }" }, { "lang": "cURL", @@ -6567,7 +6567,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" }, { "lang": "cURL", @@ -6649,7 +6649,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -6721,7 +6721,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" }, { "lang": "cURL", @@ -6805,7 +6805,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -6887,7 +6887,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\"\n -d { }" }, { "lang": "cURL", @@ -7233,7 +7233,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" }, { "lang": "cURL", @@ -7317,7 +7317,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" }, { "lang": "cURL", @@ -7389,7 +7389,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -7473,7 +7473,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -7552,7 +7552,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" }, { "lang": "cURL", @@ -7640,7 +7640,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" }, { "lang": "cURL", @@ -7712,7 +7712,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\"\n -d { }" }, { "lang": "cURL", @@ -8166,7 +8166,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" }, { "lang": "cURL", @@ -8256,7 +8256,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" }, { "lang": "cURL", @@ -8341,7 +8341,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -8517,7 +8517,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true\"" }, { "lang": "cURL", @@ -8590,7 +8590,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"\n -d { }" }, { "lang": "cURL", @@ -8768,7 +8768,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\"\n -d { }" }, { "lang": "cURL", @@ -9114,7 +9114,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\"\n -d { }" }, { "lang": "cURL", @@ -9314,7 +9314,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -9402,7 +9402,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" }, { "lang": "cURL", @@ -9491,7 +9491,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"\n -d { }" }, { "lang": "cURL", @@ -9673,7 +9673,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" }, { "lang": "cURL", @@ -9750,7 +9750,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"\n -d { }" }, { "lang": "cURL", @@ -9911,7 +9911,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\"\n -d { }" }, { "lang": "cURL", @@ -10159,7 +10159,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -10326,7 +10326,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" }, { "lang": "cURL", @@ -10401,7 +10401,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" }, { "lang": "cURL", @@ -10471,7 +10471,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"\n -d { }" }, { "lang": "cURL", @@ -10728,7 +10728,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes\"\n -d { }" }, { "lang": "cURL", @@ -10923,7 +10923,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true\"" }, { "lang": "cURL", @@ -11026,7 +11026,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"" }, { "lang": "cURL", @@ -11127,7 +11127,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}\"\n -d { }" }, { "lang": "cURL", @@ -11330,7 +11330,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 DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"" }, { "lang": "cURL", @@ -11426,7 +11426,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}\"\n -d { }" }, { "lang": "cURL", @@ -11596,7 +11596,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule\"\n -d { }" }, { "lang": "cURL", @@ -11768,7 +11768,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true\"" }, { "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.2025-01-01+json\" \\\n -X DELETE \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" }, { "lang": "cURL", @@ -11933,7 +11933,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"\n -d { }" }, { "lang": "cURL", @@ -12093,7 +12093,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true\"" }, { "lang": "cURL", @@ -12182,7 +12182,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -12324,7 +12324,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion\"\n -d { }" }, { "lang": "cURL", @@ -12611,7 +12611,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 GET \"/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true\"" }, { "lang": "cURL", @@ -12671,7 +12671,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 GET \"/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true\"" }, { "lang": "cURL", @@ -12755,7 +12755,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 GET \"/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\"\n -d { }" }, { "lang": "cURL", @@ -12899,7 +12899,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 GET \"/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true\"" }, { "lang": "cURL", @@ -12978,7 +12978,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 DELETE \"/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" }, { "lang": "cURL", @@ -13046,7 +13046,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 GET \"/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"\n -d { }" }, { "lang": "cURL", @@ -13197,7 +13197,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\"\n -d { }" }, { "lang": "cURL", @@ -13347,7 +13347,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 DELETE \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" }, { "lang": "cURL", @@ -13414,7 +13414,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 GET \"/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"\n -d { }" }, { "lang": "cURL", @@ -13574,7 +13574,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\"\n -d { }" }, { "lang": "cURL", @@ -13715,7 +13715,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" }, { "lang": "cURL", @@ -13782,7 +13782,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -13941,7 +13941,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true\"" }, { "lang": "cURL", @@ -14019,7 +14019,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 DELETE \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" }, { "lang": "cURL", @@ -14098,7 +14098,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"\n -d { }" }, { "lang": "cURL", @@ -14287,7 +14287,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 GET \"/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true\"" }, { "lang": "cURL", @@ -14353,7 +14353,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\"\n -d { }" }, { "lang": "cURL", @@ -14665,7 +14665,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 DELETE \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" }, { "lang": "cURL", @@ -14742,7 +14742,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"\n -d { }" }, { "lang": "cURL", @@ -14917,7 +14917,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 GET \"/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\"\n -d { }" }, { "lang": "cURL", @@ -15132,7 +15132,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" }, { "lang": "cURL", @@ -15252,7 +15252,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 GET \"/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true\"" }, { "lang": "cURL", @@ -15309,7 +15309,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest\"\n -d { }" }, { "lang": "cURL", @@ -15453,7 +15453,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\"\n -d { }" }, { "lang": "cURL", @@ -15623,7 +15623,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 DELETE \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" }, { "lang": "cURL", @@ -15702,7 +15702,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 GET \"/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -15835,7 +15835,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 GET \"/api/atlas/v2/groups/{groupId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true\"" }, { "lang": "cURL", @@ -15916,7 +15916,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 GET \"/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -15976,7 +15976,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true\"" }, { "lang": "cURL", @@ -16082,7 +16082,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -16191,7 +16191,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -16292,7 +16292,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 GET \"/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" }, { "lang": "cURL", @@ -16364,7 +16364,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 GET \"/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true\"" }, { "lang": "cURL", @@ -16449,7 +16449,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 DELETE \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" }, { "lang": "cURL", @@ -16532,7 +16532,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 GET \"/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"\n -d { }" }, { "lang": "cURL", @@ -16811,7 +16811,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 GET \"/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -17021,7 +17021,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 DELETE \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -17093,7 +17093,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 GET \"/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -17237,7 +17237,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 GET \"/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true\"" }, { "lang": "cURL", @@ -17306,7 +17306,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 GET \"/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true\"" }, { "lang": "cURL", @@ -17393,7 +17393,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 DELETE \"/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" }, { "lang": "cURL", @@ -17481,7 +17481,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 GET \"/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\"\n -d { }" }, { "lang": "cURL", @@ -17812,7 +17812,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true\"" }, { "lang": "cURL", @@ -17878,7 +17878,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 GET \"/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\"\n -d { }" }, { "lang": "cURL", @@ -17998,7 +17998,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 DELETE \"/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" }, { "lang": "cURL", @@ -18053,7 +18053,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 GET \"/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\"\n -d { }" }, { "lang": "cURL", @@ -18284,7 +18284,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 GET \"/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true\"" }, { "lang": "cURL", @@ -18341,7 +18341,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 DELETE \"/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\"\n -d { }" }, { "lang": "cURL", @@ -18516,7 +18516,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 GET \"/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true\"" }, { "lang": "cURL", @@ -18599,7 +18599,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 GET \"/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\"\n -d { }" }, { "lang": "cURL", @@ -18750,7 +18750,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 DELETE \"/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" }, { "lang": "cURL", @@ -18820,7 +18820,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 GET \"/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"\n -d { }" }, { "lang": "cURL", @@ -18967,7 +18967,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\"\n -d { }" }, { "lang": "cURL", @@ -19105,7 +19105,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" }, { "lang": "cURL", @@ -19175,7 +19175,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"\n -d { }" }, { "lang": "cURL", @@ -19334,7 +19334,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" }, { "lang": "cURL", @@ -19425,7 +19425,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\"\n -d { }" }, { "lang": "cURL", @@ -19660,7 +19660,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true\"" }, { "lang": "cURL", @@ -19745,7 +19745,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 DELETE \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" }, { "lang": "cURL", @@ -19828,7 +19828,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 GET \"/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\"\n -d { }" }, { "lang": "cURL", @@ -20043,7 +20043,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode\"\n -d { }" }, { "lang": "cURL", @@ -20183,7 +20183,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -20344,7 +20344,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -20422,7 +20422,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"\n -d { }" }, { "lang": "cURL", @@ -20586,7 +20586,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" }, { "lang": "cURL", @@ -20670,7 +20670,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" }, { "lang": "cURL", @@ -20755,7 +20755,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\"\n -d { }" }, { "lang": "cURL", @@ -20953,7 +20953,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" }, { "lang": "cURL", @@ -21048,7 +21048,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 GET \"/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" }, { "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.2025-01-01+json\" \\\n -X GET \"/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode\"\n -d { }" }, { "lang": "cURL", @@ -21256,7 +21256,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\"\n -d { }" }, { "lang": "cURL", @@ -21397,7 +21397,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 DELETE \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" }, { "lang": "cURL", @@ -21470,7 +21470,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 GET \"/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" }, { "lang": "cURL", @@ -21536,7 +21536,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 GET \"/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true\"" }, { "lang": "cURL", @@ -21604,7 +21604,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true\"" }, { "lang": "cURL", @@ -21670,7 +21670,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -21747,7 +21747,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true\"" }, { "lang": "cURL", @@ -21824,7 +21824,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true\"" }, { "lang": "cURL", @@ -21940,7 +21940,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22017,7 +22017,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true\"" }, { "lang": "cURL", @@ -22091,7 +22091,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true\"" }, { "lang": "cURL", @@ -22216,7 +22216,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22448,7 +22448,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22534,7 +22534,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" }, { "lang": "cURL", @@ -22644,7 +22644,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" }, { "lang": "cURL", @@ -22770,7 +22770,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" }, { "lang": "cURL", @@ -22887,7 +22887,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 GET \"/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" }, { "lang": "cURL", @@ -22950,7 +22950,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 DELETE \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" }, { "lang": "cURL", @@ -23011,7 +23011,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 GET \"/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\"\n -d { }" }, { "lang": "cURL", @@ -23295,7 +23295,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 GET \"/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" }, { "lang": "cURL", @@ -23361,7 +23361,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 GET \"/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\"\n -d { }" }, { "lang": "cURL", @@ -23514,7 +23514,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\"\n -d { }" }, { "lang": "cURL", @@ -23685,7 +23685,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" }, { "lang": "cURL", @@ -23766,7 +23766,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true\"" }, { "lang": "cURL", @@ -23848,7 +23848,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" }, { "lang": "cURL", @@ -23917,7 +23917,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\"\n -d { }" }, { "lang": "cURL", @@ -24065,7 +24065,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 DELETE \"/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" }, { "lang": "cURL", @@ -24138,7 +24138,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 GET \"/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"\n -d { }" }, { "lang": "cURL", @@ -24285,7 +24285,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 GET \"/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -24425,7 +24425,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 DELETE \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" }, { "lang": "cURL", @@ -24492,7 +24492,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 GET \"/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -24719,7 +24719,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 GET \"/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -24854,7 +24854,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 GET \"/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\"\n -d { }" }, { "lang": "cURL", @@ -24995,7 +24995,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" }, { "lang": "cURL", @@ -25070,7 +25070,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"\n -d { }" }, { "lang": "cURL", @@ -25253,7 +25253,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true\"" }, { "lang": "cURL", @@ -25328,7 +25328,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\"\n -d { }" }, { "lang": "cURL", @@ -25490,7 +25490,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" }, { "lang": "cURL", @@ -25563,7 +25563,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor\"\n -d { }" }, { "lang": "cURL", @@ -25817,7 +25817,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 DELETE \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}\"" }, { "lang": "cURL", @@ -25896,7 +25896,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true\"" }, { "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 --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 { }" + "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 \"https://cloud.mongodb.com/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 --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 { }" + "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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop\"\n -d { }" }, { "lang": "cURL", @@ -26139,7 +26139,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 GET \"/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true\"" }, { "lang": "cURL", @@ -26214,7 +26214,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 GET \"/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -26372,7 +26372,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 DELETE \"/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -26520,7 +26520,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity\"\n -d { }" }, { "lang": "cURL", @@ -26643,7 +26643,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" }, { "lang": "cURL", @@ -26700,7 +26700,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 DELETE \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\"\n -d { }" }, { "lang": "cURL", @@ -26840,7 +26840,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 GET \"/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true\"" }, { "lang": "cURL", @@ -26924,7 +26924,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 GET \"/api/atlas/v2/groups/{groupId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true\"" }, { "lang": "cURL", @@ -26996,7 +26996,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 DELETE \"/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -27148,7 +27148,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 GET \"/api/atlas/v2/groups/{groupId}/uss?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss\"\n -d { }" }, { "lang": "cURL", @@ -27295,7 +27295,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 DELETE \"/api/atlas/v2/groups/{groupId}/uss/{name}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}\"" }, { "lang": "cURL", @@ -27371,7 +27371,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 GET \"/api/atlas/v2/groups/{groupId}/uss/{name}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate\"\n -d { }" }, { "lang": "cURL", @@ -27597,7 +27597,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 GET \"/api/atlas/v2/orgs?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs\"\n -d { }" }, { "lang": "cURL", @@ -27738,7 +27738,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 DELETE \"/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" }, { "lang": "cURL", @@ -27802,7 +27802,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 GET \"/api/atlas/v2/orgs/{orgId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"\n -d { }" }, { "lang": "cURL", @@ -27947,7 +27947,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\"\n -d { }" }, { "lang": "cURL", @@ -28090,7 +28090,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" }, { "lang": "cURL", @@ -28161,7 +28161,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"\n -d { }" }, { "lang": "cURL", @@ -28328,7 +28328,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\"\n -d { }" }, { "lang": "cURL", @@ -28514,7 +28514,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 DELETE \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" }, { "lang": "cURL", @@ -28599,7 +28599,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 GET \"/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\"\n -d { }" }, { "lang": "cURL", @@ -28748,7 +28748,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 GET \"/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" }, { "lang": "cURL", @@ -28853,7 +28853,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 GET \"/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true\"" }, { "lang": "cURL", @@ -28934,7 +28934,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 GET \"/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true\"" }, { "lang": "cURL", @@ -28997,7 +28997,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 GET \"/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true\"" }, { "lang": "cURL", @@ -29077,7 +29077,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 GET \"/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true\"" }, { "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.2025-01-01+json\" \\\n -X GET \"/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\"\n -d { }" }, { "lang": "cURL", @@ -29368,7 +29368,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 DELETE \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" }, { "lang": "cURL", @@ -29438,7 +29438,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 GET \"/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"\n -d { }" }, { "lang": "cURL", @@ -29670,7 +29670,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true\"" }, { "lang": "cURL", @@ -29730,7 +29730,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true\"" }, { "lang": "cURL", @@ -29808,7 +29808,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" }, { "lang": "cURL", @@ -29879,7 +29879,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" }, { "lang": "cURL", @@ -29965,7 +29965,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 GET \"/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search?pretty=true\"" }, { "lang": "cURL", @@ -30028,7 +30028,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 GET \"/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" }, { "lang": "cURL", @@ -30085,7 +30085,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 DELETE \"/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"\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.2025-01-01+json\" \\\n -X GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts\"\n -d { }" }, { "lang": "cURL", @@ -30355,7 +30355,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 DELETE \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" }, { "lang": "cURL", @@ -30422,7 +30422,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"\n -d { }" }, { "lang": "cURL", @@ -30578,7 +30578,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 GET \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets\"\n -d { }" }, { "lang": "cURL", @@ -30733,7 +30733,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 DELETE \"/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" }, { "lang": "cURL", @@ -30796,7 +30796,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 GET \"/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings\"\n -d { }" }, { "lang": "cURL", @@ -30944,7 +30944,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 GET \"/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\"\n -d { }" }, { "lang": "cURL", @@ -31099,7 +31099,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" }, { "lang": "cURL", @@ -31178,7 +31178,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" }, { "lang": "cURL", @@ -31255,7 +31255,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"\n -d { }" }, { "lang": "cURL", @@ -31434,7 +31434,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 GET \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\"\n -d { }" }, { "lang": "cURL", @@ -31616,7 +31616,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 DELETE \"/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" }, { "lang": "cURL", @@ -31688,7 +31688,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 GET \"/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true\"" }, { "lang": "cURL", @@ -31763,7 +31763,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 DELETE \"/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\"\n -d { }" }, { "lang": "cURL", @@ -31892,7 +31892,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 GET \"/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" }, { "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 --header \"Content-Type: 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 \"https://cloud.mongodb.com/api/atlas/v2/users\"\n -d { }" }, { "lang": "cURL", @@ -32027,7 +32027,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 GET \"/api/atlas/v2/users/byName/{userName}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true\"" }, { "lang": "cURL", @@ -32096,7 +32096,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 GET \"/api/atlas/v2/users/{userId}?pretty=true\"" + "source": "curl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true\"" }, { "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 133294c253..f92e28798d 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 @@ -30562,7 +30562,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSystemStatus --help @@ -30599,7 +30599,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationMatchersFieldNames --help @@ -30637,7 +30637,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClustersForAllProjects --help @@ -30675,7 +30675,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/eventTypes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listEventTypes --help @@ -30711,7 +30711,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" - label: Atlas CLI lang: cURL source: atlas api deleteFederationApp --help @@ -30752,7 +30752,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listConnectedOrgConfigs --help @@ -30801,7 +30801,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api removeConnectedOrgConfig --help @@ -30849,7 +30849,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getConnectedOrgConfig --help @@ -30905,7 +30905,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -30946,7 +30946,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listRoleMappings --help @@ -30993,7 +30993,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings" -d { } - label: Atlas CLI lang: cURL @@ -31042,7 +31042,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" - label: Atlas CLI lang: cURL source: atlas api deleteRoleMapping --help @@ -31091,7 +31091,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRoleMapping --help @@ -31148,7 +31148,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" -d { } - label: Atlas CLI lang: cURL @@ -31212,7 +31212,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIdentityProviders --help @@ -31263,7 +31263,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders" -d { } - label: Atlas CLI lang: cURL @@ -31308,7 +31308,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" - label: Atlas CLI lang: cURL source: atlas api deleteIdentityProvider --help @@ -31355,7 +31355,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProvider --help @@ -31411,7 +31411,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" -d { } - label: Atlas CLI lang: cURL @@ -31456,7 +31456,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" - label: Atlas CLI lang: cURL source: atlas api revokeJwksFromIdentityProvider --help @@ -31495,7 +31495,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIdentityProviderMetadata --help @@ -31535,7 +31535,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjects --help @@ -31593,7 +31593,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" -d { } - label: Atlas CLI lang: cURL @@ -31632,7 +31632,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" - label: Atlas CLI lang: cURL source: atlas api deleteProject --help @@ -31669,7 +31669,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProject --help @@ -31718,7 +31718,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" -d { } - label: Atlas CLI lang: cURL @@ -31768,7 +31768,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access" -d { } - label: Atlas CLI lang: cURL @@ -31811,7 +31811,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectIpAccessLists --help @@ -31866,7 +31866,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -31921,7 +31921,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectIpAccessList --help @@ -31971,7 +31971,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpList --help @@ -32021,7 +32021,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectIpAccessListStatus --help @@ -32063,7 +32063,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurations --help @@ -32111,7 +32111,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs" -d { } - label: Atlas CLI lang: cURL @@ -32161,7 +32161,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" - label: Atlas CLI lang: cURL source: atlas api deleteAlertConfiguration --help @@ -32211,7 +32211,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlertConfiguration --help @@ -32271,7 +32271,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -32334,7 +32334,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" -d { } - label: Atlas CLI lang: cURL @@ -32389,7 +32389,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertsByAlertConfigurationId --help @@ -32442,7 +32442,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlerts --help @@ -32492,7 +32492,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAlert --help @@ -32551,7 +32551,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}" -d { } - label: Atlas CLI lang: cURL @@ -32605,7 +32605,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAlertConfigurationsByAlertId --help @@ -32647,7 +32647,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectApiKeys --help @@ -32690,7 +32690,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -32741,7 +32741,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectApiKey --help @@ -32798,7 +32798,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -32853,7 +32853,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -32890,7 +32890,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAuditingConfiguration --help @@ -32935,7 +32935,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog" -d { } - label: Atlas CLI lang: cURL @@ -32972,7 +32972,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAWSCustomDNS --help @@ -33015,7 +33015,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS" -d { } - label: Atlas CLI lang: cURL @@ -33055,7 +33055,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listExportBuckets --help @@ -33141,7 +33141,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets" -d { } - label: Atlas CLI lang: cURL @@ -33191,7 +33191,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" - label: Atlas CLI lang: cURL source: atlas api deleteExportBucket --help @@ -33260,7 +33260,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getExportBucket --help @@ -33298,7 +33298,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataProtectionSettings --help @@ -33352,7 +33352,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy" -d { } - label: Atlas CLI lang: cURL @@ -33389,7 +33389,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderAccessRoles --help @@ -33435,7 +33435,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess" -d { } - label: Atlas CLI lang: cURL @@ -33489,7 +33489,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" - label: Atlas CLI lang: cURL source: atlas api deauthorizeCloudProviderAccessRole --help @@ -33534,7 +33534,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCloudProviderAccessRole --help @@ -33593,7 +33593,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}" -d { } - label: Atlas CLI lang: cURL @@ -33639,7 +33639,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listClusters --help @@ -33818,7 +33818,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters" -d { } - label: Atlas CLI lang: cURL @@ -33873,7 +33873,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" - label: Atlas CLI lang: cURL source: atlas api deleteCluster --help @@ -33921,7 +33921,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCluster --help @@ -33980,7 +33980,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" -d { } - label: Atlas CLI lang: cURL @@ -34080,7 +34080,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help @@ -34137,7 +34137,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespacesForCluster --help @@ -34185,7 +34185,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupExportJobs --help @@ -34242,7 +34242,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports" -d { } - label: Atlas CLI lang: cURL @@ -34293,7 +34293,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupExportJob --help @@ -34341,7 +34341,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listBackupRestoreJobs --help @@ -34402,7 +34402,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -34459,7 +34459,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}" - label: Atlas CLI lang: cURL source: atlas api cancelBackupRestoreJob --help @@ -34512,7 +34512,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupRestoreJob --help @@ -34558,7 +34558,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" - label: Atlas CLI lang: cURL source: atlas api deleteAllBackupSchedules --help @@ -34602,7 +34602,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getBackupSchedule --help @@ -34659,7 +34659,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" -d { } - label: Atlas CLI lang: cURL @@ -34710,7 +34710,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listReplicaSetBackups --help @@ -34767,7 +34767,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots" -d { } - label: Atlas CLI lang: cURL @@ -34824,7 +34824,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteReplicaSetBackup --help @@ -34879,7 +34879,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getReplicaSetBackup --help @@ -34942,7 +34942,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -34997,7 +34997,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteShardedClusterBackup --help @@ -35052,7 +35052,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getShardedClusterBackup --help @@ -35099,7 +35099,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listShardedClusterBackups --help @@ -35160,7 +35160,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download" -d { } - label: Atlas CLI lang: cURL @@ -35220,7 +35220,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore" -d { } - label: Atlas CLI lang: cURL @@ -35268,7 +35268,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackupRestoreJobs --help @@ -35324,7 +35324,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackupRestoreJob --help @@ -35371,7 +35371,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSharedClusterBackups --help @@ -35427,7 +35427,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSharedClusterBackup --help @@ -35476,7 +35476,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupCheckpoints --help @@ -35535,7 +35535,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupCheckpoint --help @@ -35583,7 +35583,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPinnedNamespaces --help @@ -35645,7 +35645,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI lang: cURL @@ -35708,7 +35708,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned" -d { } - label: Atlas CLI lang: cURL @@ -35765,7 +35765,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin" -d { } - label: Atlas CLI lang: cURL @@ -35827,7 +35827,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes" -d { } - label: Atlas CLI lang: cURL @@ -35892,7 +35892,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexesDeprecated --help @@ -35953,7 +35953,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndexDeprecated --help @@ -36011,7 +36011,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndexDeprecated --help @@ -36081,7 +36081,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}" -d { } - label: Atlas CLI lang: cURL @@ -36131,7 +36131,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedNamespace --help @@ -36179,7 +36179,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" - label: Atlas CLI lang: cURL source: atlas api deleteAllCustomZoneMappings --help @@ -36237,7 +36237,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" -d { } - label: Atlas CLI lang: cURL @@ -36298,7 +36298,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" - label: Atlas CLI lang: cURL source: atlas api deleteManagedNamespace --help @@ -36358,7 +36358,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" -d { } - label: Atlas CLI lang: cURL @@ -36480,7 +36480,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index" -d { } - label: Atlas CLI lang: cURL @@ -36532,7 +36532,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOnlineArchives --help @@ -36593,7 +36593,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives" -d { } - label: Atlas CLI lang: cURL @@ -36653,7 +36653,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" - label: Atlas CLI lang: cURL source: atlas api deleteOnlineArchive --help @@ -36713,7 +36713,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOnlineArchive --help @@ -36783,7 +36783,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" -d { } - label: Atlas CLI lang: cURL @@ -36859,7 +36859,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadOnlineArchiveQueryLogs --help @@ -36911,7 +36911,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" - label: Atlas CLI lang: cURL source: atlas api endOutageSimulation --help @@ -36962,7 +36962,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOutageSimulation --help @@ -37019,7 +37019,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" -d { } - label: Atlas CLI lang: cURL @@ -37070,7 +37070,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterAdvancedConfiguration --help @@ -37130,7 +37130,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs" -d { } - label: Atlas CLI lang: cURL @@ -37175,7 +37175,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries" -d { } - label: Atlas CLI lang: cURL @@ -37238,7 +37238,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacyBackupRestoreJobs --help @@ -37293,7 +37293,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -37354,7 +37354,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacyBackupRestoreJob --help @@ -37403,7 +37403,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchDeployment --help @@ -37449,7 +37449,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchDeployment --help @@ -37505,7 +37505,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -37562,7 +37562,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" -d { } - label: Atlas CLI lang: cURL @@ -37621,7 +37621,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexesCluster --help @@ -37680,7 +37680,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes" -d { } - label: Atlas CLI lang: cURL @@ -37751,7 +37751,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasSearchIndexes --help @@ -37819,7 +37819,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndexByName --help @@ -37886,7 +37886,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndexByName --help @@ -37963,7 +37963,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}" -d { } - label: Atlas CLI lang: cURL @@ -38023,7 +38023,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" - label: Atlas CLI lang: cURL source: atlas api deleteAtlasSearchIndex --help @@ -38087,7 +38087,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasSearchIndex --help @@ -38155,7 +38155,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}" -d { } - label: Atlas CLI lang: cURL @@ -38205,7 +38205,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshotSchedule --help @@ -38261,7 +38261,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule" -d { } - label: Atlas CLI lang: cURL @@ -38321,7 +38321,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listLegacySnapshots --help @@ -38378,7 +38378,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" - label: Atlas CLI lang: cURL source: atlas api deleteLegacySnapshot --help @@ -38432,7 +38432,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLegacySnapshot --help @@ -38494,7 +38494,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" -d { } - label: Atlas CLI lang: cURL @@ -38540,7 +38540,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getClusterStatus --help @@ -38599,7 +38599,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion" -d { } - label: Atlas CLI lang: cURL @@ -38654,7 +38654,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion" -d { } - label: Atlas CLI lang: cURL @@ -38735,7 +38735,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostLogs --help @@ -38786,7 +38786,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/provider/regions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCloudProviderRegions --help @@ -38838,7 +38838,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade" -d { } - label: Atlas CLI lang: cURL @@ -38891,7 +38891,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless" -d { } - label: Atlas CLI lang: cURL @@ -38931,7 +38931,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceMetrics --help @@ -38983,7 +38983,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainerByCloudProvider --help @@ -39034,7 +39034,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers" -d { } - label: Atlas CLI lang: cURL @@ -39087,7 +39087,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/containers/{containerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringContainer --help @@ -39132,7 +39132,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringContainer --help @@ -39193,7 +39193,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" -d { } - label: Atlas CLI lang: cURL @@ -39233,7 +39233,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringContainers --help @@ -39271,7 +39271,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listCustomDatabaseRoles --help @@ -39322,7 +39322,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles" -d { } - label: Atlas CLI lang: cURL @@ -39369,7 +39369,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" - label: Atlas CLI lang: cURL source: atlas api deleteCustomDatabaseRole --help @@ -39412,7 +39412,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCustomDatabaseRole --help @@ -39469,7 +39469,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" -d { } - label: Atlas CLI lang: cURL @@ -39517,7 +39517,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listFederatedDatabases --help @@ -39566,7 +39566,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation" -d { } - label: Atlas CLI lang: cURL @@ -39609,7 +39609,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteFederatedDatabase --help @@ -39653,7 +39653,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederatedDatabase --help @@ -39710,7 +39710,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -39757,7 +39757,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimits --help @@ -39817,7 +39817,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteOneDataFederationInstanceQueryLimit --help @@ -39877,7 +39877,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnFederatedDatabaseQueryLimit --help @@ -39948,7 +39948,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -40015,7 +40015,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadFederatedDatabaseQueryLogs --help @@ -40054,7 +40054,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUsers --help @@ -40196,7 +40196,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers" -d { } - label: Atlas CLI lang: cURL @@ -40263,7 +40263,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" - label: Atlas CLI lang: cURL source: atlas api deleteDatabaseUser --help @@ -40326,7 +40326,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseUser --help @@ -40403,7 +40403,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" -d { } - label: Atlas CLI lang: cURL @@ -40451,7 +40451,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabaseUserCertificates --help @@ -40517,7 +40517,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs" -d { } - label: Atlas CLI lang: cURL @@ -40600,7 +40600,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByClusterName --help @@ -40679,7 +40679,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAccessLogsByHostname --help @@ -40718,7 +40718,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRest --help @@ -40779,7 +40779,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest" -d { } - label: Atlas CLI lang: cURL @@ -40824,7 +40824,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help @@ -40875,7 +40875,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints" -d { } - label: Atlas CLI lang: cURL @@ -40936,7 +40936,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help @@ -40988,7 +40988,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getEncryptionAtRestPrivateEndpoint --help @@ -41081,7 +41081,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectEvents --help @@ -41137,7 +41137,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectEvent --help @@ -41175,7 +41175,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listMetricTypes --help @@ -41243,7 +41243,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getIndexMetrics --help @@ -41310,7 +41310,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listIndexMetrics --help @@ -41376,7 +41376,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMeasurements --help @@ -41419,7 +41419,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listThirdPartyIntegrations --help @@ -41477,7 +41477,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" - label: Atlas CLI lang: cURL source: atlas api deleteThirdPartyIntegration --help @@ -41534,7 +41534,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getThirdPartyIntegration --help @@ -41604,7 +41604,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -41673,7 +41673,7 @@ paths: --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}" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" -d { } - label: Atlas CLI lang: cURL @@ -41719,7 +41719,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectInvitations --help @@ -41768,7 +41768,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -41814,7 +41814,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -41861,7 +41861,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectInvitation --help @@ -41909,7 +41909,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectInvitation --help @@ -41966,7 +41966,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -42006,7 +42006,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllIPAddresses --help @@ -42050,7 +42050,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectLimits --help @@ -42126,7 +42126,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/limits/{limitName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectLimit --help @@ -42203,7 +42203,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLimit --help @@ -42291,7 +42291,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" -d { } - label: Atlas CLI lang: cURL @@ -42350,7 +42350,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations" -d { } - label: Atlas CLI lang: cURL @@ -42392,7 +42392,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushMigration --help @@ -42434,7 +42434,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover" -d { } - label: Atlas CLI lang: cURL @@ -42486,7 +42486,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate" -d { } - label: Atlas CLI lang: cURL @@ -42538,7 +42538,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getValidationStatus --help @@ -42573,7 +42573,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/maintenanceWindow" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" - label: Atlas CLI lang: cURL source: atlas api resetMaintenanceWindow --help @@ -42608,7 +42608,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getMaintenanceWindow --help @@ -42652,7 +42652,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" -d { } - label: Atlas CLI lang: cURL @@ -42689,7 +42689,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer" -d { } - label: Atlas CLI lang: cURL @@ -42726,7 +42726,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer" -d { } - label: Atlas CLI lang: cURL @@ -42763,7 +42763,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getManagedSlowMs --help @@ -42799,7 +42799,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" - label: Atlas CLI lang: cURL source: atlas api disableSlowOperationThresholding --help @@ -42836,7 +42836,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable" -d { } - label: Atlas CLI lang: cURL @@ -42914,7 +42914,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectLTSVersions --help @@ -42965,7 +42965,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPeeringConnections --help @@ -43017,7 +43017,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers" -d { } - label: Atlas CLI lang: cURL @@ -43065,7 +43065,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/peers/{peerId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" - label: Atlas CLI lang: cURL source: atlas api deletePeeringConnection --help @@ -43111,7 +43111,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPeeringConnection --help @@ -43169,7 +43169,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" -d { } - label: Atlas CLI lang: cURL @@ -43209,7 +43209,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelines --help @@ -43255,7 +43255,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines" -d { } - label: Atlas CLI lang: cURL @@ -43302,7 +43302,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" - label: Atlas CLI lang: cURL source: atlas api deletePipeline --help @@ -43348,7 +43348,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipeline --help @@ -43405,7 +43405,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" -d { } - label: Atlas CLI lang: cURL @@ -43455,7 +43455,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSchedules?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSchedules --help @@ -43512,7 +43512,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineSnapshots --help @@ -43560,7 +43560,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause" -d { } - label: Atlas CLI lang: cURL @@ -43609,7 +43609,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume" -d { } - label: Atlas CLI lang: cURL @@ -43667,7 +43667,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPipelineRuns --help @@ -43724,7 +43724,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" - label: Atlas CLI lang: cURL source: atlas api deletePipelineRunDataset --help @@ -43780,7 +43780,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPipelineRun --help @@ -43835,7 +43835,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger" -d { } - label: Atlas CLI lang: cURL @@ -43885,7 +43885,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPrivateEndpointServices --help @@ -43941,7 +43941,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpointService --help @@ -43998,7 +43998,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpointService --help @@ -44068,7 +44068,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -44132,7 +44132,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deletePrivateEndpoint --help @@ -44196,7 +44196,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPrivateEndpoint --help @@ -44243,7 +44243,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService" -d { } - label: Atlas CLI lang: cURL @@ -44282,7 +44282,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getRegionalizedPrivateEndpointSetting --help @@ -44327,7 +44327,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode" -d { } - label: Atlas CLI lang: cURL @@ -44375,7 +44375,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessPrivateEndpoints --help @@ -44433,7 +44433,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint" -d { } - label: Atlas CLI lang: cURL @@ -44488,7 +44488,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessPrivateEndpoint --help @@ -44541,7 +44541,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessPrivateEndpoint --help @@ -44602,7 +44602,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}" -d { } - label: Atlas CLI lang: cURL @@ -44643,7 +44643,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" - label: Atlas CLI lang: cURL source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help @@ -44692,7 +44692,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode" -d { } - label: Atlas CLI lang: cURL @@ -44736,7 +44736,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDataFederationPrivateEndpoints --help @@ -44800,7 +44800,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds" -d { } - label: Atlas CLI lang: cURL @@ -44848,7 +44848,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" - label: Atlas CLI lang: cURL source: atlas api deleteDataFederationPrivateEndpoint --help @@ -44896,7 +44896,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDataFederationPrivateEndpoint --help @@ -44935,7 +44935,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listAtlasProcesses --help @@ -44979,7 +44979,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getAtlasProcess --help @@ -45058,7 +45058,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help @@ -45097,7 +45097,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getCollStatsLatencyNamespacesForHost --help @@ -45144,7 +45144,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDatabases --help @@ -45194,7 +45194,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabase --help @@ -45270,7 +45270,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDatabaseMeasurements --help @@ -45317,7 +45317,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskPartitions --help @@ -45366,7 +45366,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listDiskMeasurements --help @@ -45458,7 +45458,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getDiskMeasurements --help @@ -45661,7 +45661,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getHostMeasurements --help @@ -45725,7 +45725,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueryNamespaces --help @@ -45806,7 +45806,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSlowQueries --help @@ -45894,7 +45894,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSuggestedIndexes --help @@ -45934,7 +45934,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/pushBasedLogExport" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" - label: Atlas CLI lang: cURL source: atlas api deletePushBasedLogConfiguration --help @@ -45973,7 +45973,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getPushBasedLogConfiguration --help @@ -46021,7 +46021,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -46070,7 +46070,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" -d { } - label: Atlas CLI lang: cURL @@ -46120,7 +46120,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}" -d { } - label: Atlas CLI lang: cURL @@ -46165,7 +46165,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getSampleDatasetLoadStatus --help @@ -46204,7 +46204,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessInstances --help @@ -46251,7 +46251,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless" -d { } - label: Atlas CLI lang: cURL @@ -46302,7 +46302,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackupRestoreJobs --help @@ -46360,7 +46360,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs" -d { } - label: Atlas CLI lang: cURL @@ -46417,7 +46417,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackupRestoreJob --help @@ -46467,7 +46467,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServerlessBackups --help @@ -46523,7 +46523,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessBackup --help @@ -46568,7 +46568,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessAutoIndexing --help @@ -46618,7 +46618,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing" -d { } - label: Atlas CLI lang: cURL @@ -46668,7 +46668,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serverless/{name}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" - label: Atlas CLI lang: cURL source: atlas api deleteServerlessInstance --help @@ -46716,7 +46716,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServerlessInstance --help @@ -46770,7 +46770,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" -d { } - label: Atlas CLI lang: cURL @@ -46811,7 +46811,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectServiceAccounts --help @@ -46857,7 +46857,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts" -d { } - label: Atlas CLI lang: cURL @@ -46903,7 +46903,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" - label: Atlas CLI lang: cURL source: atlas api deleteProjectServiceAccount --help @@ -46946,7 +46946,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectServiceAccount --help @@ -46999,7 +46999,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -47055,7 +47055,7 @@ paths: --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}" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -47096,7 +47096,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectSettings --help @@ -47143,7 +47143,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -47182,7 +47182,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamInstances --help @@ -47227,7 +47227,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams" -d { } - label: Atlas CLI lang: cURL @@ -47274,7 +47274,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamInstance --help @@ -47323,7 +47323,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamInstance --help @@ -47378,7 +47378,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" -d { } - label: Atlas CLI lang: cURL @@ -47446,7 +47446,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadStreamTenantAuditLogs --help @@ -47492,7 +47492,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamConnections --help @@ -47545,7 +47545,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections" -d { } - label: Atlas CLI lang: cURL @@ -47598,7 +47598,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamConnection --help @@ -47646,7 +47646,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamConnection --help @@ -47707,7 +47707,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" -d { } - label: Atlas CLI lang: cURL @@ -47762,7 +47762,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor" -d { } - label: Atlas CLI lang: cURL @@ -47813,7 +47813,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" - label: Atlas CLI lang: cURL source: atlas api deleteStreamProcessor --help @@ -47864,7 +47864,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getStreamProcessor --help @@ -47917,7 +47917,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start" -d { } - label: Atlas CLI lang: cURL @@ -47971,7 +47971,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop" -d { } - label: Atlas CLI lang: cURL @@ -48021,7 +48021,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listStreamProcessors --help @@ -48066,7 +48066,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectTeams --help @@ -48120,7 +48120,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -48172,7 +48172,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectTeam --help @@ -48233,7 +48233,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -48270,7 +48270,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfiguration --help @@ -48318,7 +48318,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity" -d { } - label: Atlas CLI lang: cURL @@ -48357,7 +48357,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" - label: Atlas CLI lang: cURL source: atlas api disableCustomerManagedX509 --help @@ -48393,7 +48393,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" - label: Atlas CLI lang: cURL source: atlas api deleteLDAPConfiguration --help @@ -48439,7 +48439,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify" -d { } - label: Atlas CLI lang: cURL @@ -48485,7 +48485,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getLDAPConfigurationStatus --help @@ -48536,7 +48536,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listProjectUsers --help @@ -48583,7 +48583,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeProjectUser --help @@ -48640,7 +48640,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -48680,7 +48680,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/uss?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listUSSInstances --help @@ -48727,7 +48727,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss" -d { } - label: Atlas CLI lang: cURL @@ -48777,7 +48777,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/groups/{groupId}/uss/{name}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" - label: Atlas CLI lang: cURL source: atlas api deleteUSSInstance --help @@ -48827,7 +48827,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/{groupId}/uss/{name}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUSSInstance --help @@ -48881,7 +48881,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" -d { } - label: Atlas CLI lang: cURL @@ -48925,7 +48925,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}:migrate" -d { } - label: Atlas CLI lang: cURL @@ -48975,7 +48975,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/groups/byName/{groupName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getProjectByName --help @@ -49024,7 +49024,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizations --help @@ -49074,7 +49074,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" -d { } - label: Atlas CLI lang: cURL @@ -49123,7 +49123,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganization --help @@ -49164,7 +49164,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganization --help @@ -49213,7 +49213,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" -d { } - label: Atlas CLI lang: cURL @@ -49256,7 +49256,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeys --help @@ -49302,7 +49302,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys" -d { } - label: Atlas CLI lang: cURL @@ -49351,7 +49351,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKey --help @@ -49398,7 +49398,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKey --help @@ -49455,7 +49455,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" -d { } - label: Atlas CLI lang: cURL @@ -49507,7 +49507,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listApiKeyAccessListsEntries --help @@ -49568,7 +49568,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList" -d { } - label: Atlas CLI lang: cURL @@ -49629,7 +49629,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" - label: Atlas CLI lang: cURL source: atlas api deleteApiKeyAccessListEntry --help @@ -49686,7 +49686,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getApiKeyAccessList --help @@ -49731,7 +49731,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage" -d { } - label: Atlas CLI lang: cURL @@ -49786,7 +49786,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api createCostExplorerQueryProcess_1 --help @@ -49857,7 +49857,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationEvents --help @@ -49913,7 +49913,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationEvent --help @@ -49953,7 +49953,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getFederationSettings --help @@ -50009,7 +50009,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationProjects --help @@ -50057,7 +50057,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationInvitations --help @@ -50104,7 +50104,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -50152,7 +50152,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites" -d { } - label: Atlas CLI lang: cURL @@ -50199,7 +50199,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" - label: Atlas CLI lang: cURL source: atlas api deleteOrganizationInvitation --help @@ -50246,7 +50246,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationInvitation --help @@ -50302,7 +50302,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" -d { } - label: Atlas CLI lang: cURL @@ -50403,7 +50403,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listInvoices --help @@ -50456,7 +50456,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getInvoice --help @@ -50510,7 +50510,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" - label: Atlas CLI lang: cURL source: atlas api downloadInvoiceCSV --help @@ -50565,7 +50565,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search?pretty=true" - label: Atlas CLI lang: cURL source: atlas api queryLineItemsFromSingleInvoice --help @@ -50603,7 +50603,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listPendingInvoices --help @@ -50643,7 +50643,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listSourceProjects --help @@ -50680,7 +50680,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" - label: Atlas CLI lang: cURL source: atlas api deleteLinkToken --help @@ -50725,7 +50725,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" -d { } - label: Atlas CLI lang: cURL @@ -50766,7 +50766,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServiceAccounts --help @@ -50811,7 +50811,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts" -d { } - label: Atlas CLI lang: cURL @@ -50854,7 +50854,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" - label: Atlas CLI lang: cURL source: atlas api deleteServiceAccount --help @@ -50897,7 +50897,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getServiceAccount --help @@ -50950,7 +50950,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" -d { } - label: Atlas CLI lang: cURL @@ -50997,7 +50997,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listServiceAccountProjects --help @@ -51049,7 +51049,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets" -d { } - label: Atlas CLI lang: cURL @@ -51098,7 +51098,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" - label: Atlas CLI lang: cURL source: atlas api deleteServiceAccountSecret --help @@ -51138,7 +51138,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/settings?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getOrganizationSettings --help @@ -51185,7 +51185,7 @@ paths: --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" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings" -d { } - label: Atlas CLI lang: cURL @@ -51232,7 +51232,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationTeams --help @@ -51284,7 +51284,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams" -d { } - label: Atlas CLI lang: cURL @@ -51337,7 +51337,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" - label: Atlas CLI lang: cURL source: atlas api deleteTeam --help @@ -51388,7 +51388,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamById --help @@ -51449,7 +51449,7 @@ paths: --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}" + -X PATCH "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" -d { } - label: Atlas CLI lang: cURL @@ -51506,7 +51506,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listTeamUsers --help @@ -51569,7 +51569,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users" -d { } - label: Atlas CLI lang: cURL @@ -51629,7 +51629,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeTeamUser --help @@ -51678,7 +51678,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getTeamByName --help @@ -51721,7 +51721,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/orgs/{orgId}/users?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" - label: Atlas CLI lang: cURL source: atlas api listOrganizationUsers --help @@ -51771,7 +51771,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X DELETE "/api/atlas/v2/orgs/{orgId}/users/{userId}" + -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" - label: Atlas CLI lang: cURL source: atlas api removeOrganizationUser --help @@ -51828,7 +51828,7 @@ paths: --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" + -X PUT "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles" -d { } - label: Atlas CLI lang: cURL @@ -51859,7 +51859,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" - label: Atlas CLI lang: cURL source: atlas api returnAllControlPlaneIPAddresses --help @@ -51909,7 +51909,7 @@ paths: --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" + -X POST "https://cloud.mongodb.com/api/atlas/v2/users" -d { } - label: Atlas CLI lang: cURL @@ -51956,7 +51956,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/users/{userId}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUser --help @@ -52000,7 +52000,7 @@ paths: curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ - -X GET "/api/atlas/v2/users/byName/{userName}?pretty=true" + -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" - label: Atlas CLI lang: cURL source: atlas api getUserByUsername --help